Correctifs de bugs

This commit is contained in:
=
2021-01-27 14:19:36 +01:00
parent 561a727a0a
commit 058362a533
6 changed files with 105 additions and 63 deletions

View File

@@ -2,12 +2,12 @@ const int SHARED_BUTTONS = A1;
void setup() {
Serial.begin(9600);
pinMode(SHARED_BUTTONS, INPUT_PULLUP);
pinMode(SHARED_BUTTONS, INPUT);
}
void loop() {
Serial.println(analogRead(SHARED_BUTTONS));
delay(50);
delay(250);
}