We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b5053d commit b84b696Copy full SHA for b84b696
3 files changed
examples/two_pumps/two_pumps.ino
@@ -24,8 +24,6 @@ Force force(ver); //start FORCE object
24
void setup() {
25
force.begin(); //setup FORCE
26
force.trial_available = false;
27
- force.LeftActive = true;
28
- force.RightActive = true;
29
Serial.begin(9600);
30
}
31
@@ -39,9 +37,9 @@ void loop() {
39
37
force.trial_length = millis() - force.trial_start;
40
38
force.Tare();
41
while (force.trial_length < force.trial_window) {
42
- force.lodgdata();
+ force.logdata();
43
44
- Serial.println(force.trial_length);
+ //Serial.println(force.trial_length);
45
force.run();
46
force.SenseLeft();
47
if (force.pressLengthLeft > force.hold_timeLeft) {
0 commit comments