Skip to content

Commit b84b696

Browse files
committed
Updated start-up menu.
1 parent 6b5053d commit b84b696

3 files changed

Lines changed: 141 additions & 66 deletions

File tree

examples/two_pumps/two_pumps.ino

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ Force force(ver); //start FORCE object
2424
void setup() {
2525
force.begin(); //setup FORCE
2626
force.trial_available = false;
27-
force.LeftActive = true;
28-
force.RightActive = true;
2927
Serial.begin(9600);
3028
}
3129

@@ -39,9 +37,9 @@ void loop() {
3937
force.trial_length = millis() - force.trial_start;
4038
force.Tare();
4139
while (force.trial_length < force.trial_window) {
42-
force.lodgdata();
40+
force.logdata();
4341
force.trial_length = millis() - force.trial_start;
44-
Serial.println(force.trial_length);
42+
//Serial.println(force.trial_length);
4543
force.run();
4644
force.SenseLeft();
4745
if (force.pressLengthLeft > force.hold_timeLeft) {

0 commit comments

Comments
 (0)