maxscheinast 7 месяцев назад
Родитель
Сommit
fc75880e40
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      samplecsv_taker.py

+ 2 - 2
samplecsv_taker.py

@@ -12,11 +12,11 @@ class SerialDataLogger:
         self.root.title("Serial Data Logger")
 
         self.serial_port = "COM1"  # Change this to your serial port
-        self.baud_rate = 9600  # Change this to match your device's baud rate
+        self.baud_rate = 115200  # Change this to match your device's baud rate
 
         self.is_logging = False
         self.sample_count = 0
-        self.max_samples = 10000
+        self.max_samples = 1000000
         self.sample_rate = 200
 
         self.data = []