Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Python Code/SoS_Acquisition.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
import matplotlib.pyplot as plt
import numpy as np
import time

import os
# Create directories if they don't exist
os.makedirs("data/X/", exist_ok=True)
os.makedirs("data/Y/", exist_ok=True)

'''
COM Port, The first argument of function below needs to changed according
Expand Down Expand Up @@ -113,7 +116,7 @@ def capture():


# plt.show()
plt.pause(0.1)
plt.pause(.001)


print('Enter the number of plots you need')
Expand Down