Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
k0xxx committed Apr 20, 2022
1 parent ba26943 commit e3e50f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void setup() {
servoControl.attach(servoPin); // Set Servo pin

//Servo setup
delay(500); // Delay before reset
// delay(500); // Delay before reset
servoControl.write(servoDefaultAngle); // Set servo to default position
delay(500); // Delay after reset (waiting for position)
}
Expand All @@ -29,10 +29,10 @@ void loop() {

if (prValue < prLaunch){
servoControl.write(servoTargetAngle);
delay(servoDelay);
// delay(servoDelay);
} else {
servoControl.write(servoDefaultAngle);
delay(servoDelay);
// delay(servoDelay);
}

delay(500); // Idle
Expand Down

0 comments on commit e3e50f9

Please sign in to comment.