Skip to content

Commit

Permalink
Merge branch 'main' into data-format-proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
k12ish authored Jun 4, 2024
2 parents 992e0ec + b46b53d commit 737b45a
Show file tree
Hide file tree
Showing 22 changed files with 11,998 additions and 599 deletions.
Binary file added documentation/with grounded input.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documentation/without grounded input.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions firmware/firmware.ino
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,19 @@ void enable_io(String mode){
else if (mode == "RALL"){ // Turn on routing for right arm - left leg lead positions
digitalWrite(2, LOW);
digitalWrite(3, LOW);
digitalWrite(4, HIGH);
digitalWrite(4, LOW);
idle = false;
// delay(1000);
}
else if (mode == "LARA"){ // Turn on routing for left arm - right arm lead positions
digitalWrite(2, HIGH);
digitalWrite(3, HIGH);
digitalWrite(4, HIGH);
digitalWrite(4, LOW);
idle = false;
// delay(1000);
}
else if (mode == "IDLE"){ // Go to idle mode
digitalWrite(4, LOW);
digitalWrite(4, HIGH);
idle = true;
// delay(1000);
}
Expand Down
Loading

0 comments on commit 737b45a

Please sign in to comment.