Skip to content

Commit

Permalink
Review the thresholds after the last session and positions of the
Browse files Browse the repository at this point in the history
sensors.
  • Loading branch information
alexgcastro committed Apr 30, 2015
1 parent d9c6b3e commit 2aebd57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exandounamano.ino
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ int sensorPin = 0;
int servoPin = 9;

int inputReading;
int sensorHighThreshold = 300;
int sensorLowThreshold = 30;
int sensorHighThreshold = 30;
int sensorLowThreshold = 5;

Servo handServo;
// Servo position in degrees.
Expand All @@ -45,7 +45,7 @@ void moveServo(int pos)
handServo.write(pos);

// Wait for the servo to move.
delay(1100);
delay(300);
}

void loop()
Expand Down

0 comments on commit 2aebd57

Please sign in to comment.