Skip to content

Commit

Permalink
old
Browse files Browse the repository at this point in the history
  • Loading branch information
Remy Martin committed Jun 28, 2020
1 parent 5480a54 commit 11bd7db
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Arduino/arduino_push_keypad_pwm/arduino_push_keypad_pwm.ino
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ TCCR1B = _BV(WGM13) | _BV(CS11);
}

void loop(){

while((A1)<0){
}
while((A1)>1000){
OCR1A = 0;
}

char key = keypad.getKey();// Read the key

Expand Down

0 comments on commit 11bd7db

Please sign in to comment.