You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: implementations/AVR/SimpleLogger_Scaling_AVR/SimpleLogger_Scaling_AVR_USB/SimpleLogger_Scaling_AVR_USB.ino
+2-2
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,11 @@ int8_t hrpin = 0; //Whatever analog pin the sensor is hooked up to
27
27
int8_t scale_data = 1; /*Uses dynamic scaling of data when set to 1, not if set to 0 \
28
28
sampling speed over 1500Hz not recommended when scaling data
29
29
on 8-bit AVR (e.g. Arduino)*/
30
-
int8_t mode = 0; /*Speed mode. \
30
+
int8_t mode = 1; /*Speed mode. \
31
31
0 means the "sample_rate" speed will be used \
32
32
1 means custom. Custom sampling rate is set through Serial after connect.\
33
33
See documentation for details. */
34
-
int16_t sample_rate = 100; /*should be 4Hz or more, over 2KHz on AVR not recommended.
34
+
int16_t sample_rate = 1000; /*should be 4Hz or more, over 2KHz on AVR not recommended.
35
35
When using adaptive scaling: over 1.5KHz not recommended on AVR.
36
36
Higher speeds attainable on 32-bit chipsets.
37
37
Please see documentation for suggested limits and theoretical limits*/
0 commit comments