Make blinker simpler
This commit is contained in:
parent
9400caa634
commit
ccf0497c35
|
@ -11,18 +11,16 @@ static void blinker(void) {
|
||||||
led_inv(RIGHT);
|
led_inv(RIGHT);
|
||||||
led_inv(LEFT);
|
led_inv(LEFT);
|
||||||
|
|
||||||
uint8_t i;
|
wait_ms(500);
|
||||||
for(i = 0; i < 50; ++i) {
|
|
||||||
if(button_clicked(RIGHT)) {
|
|
||||||
motor_on();
|
|
||||||
}
|
|
||||||
|
|
||||||
if(button_clicked(LEFT)) {
|
if(button_clicked(RIGHT)) {
|
||||||
motor_off();
|
motor_on();
|
||||||
}
|
|
||||||
|
|
||||||
wait_ms(10);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(button_clicked(LEFT)) {
|
||||||
|
motor_off();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
REGISTER(blinker, init, NULL);
|
REGISTER(blinker, init, NULL);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user