Version initiale

This commit is contained in:
=
2021-01-25 15:48:10 +01:00
parent 169e076fe5
commit 4d4247bda9
16 changed files with 2864 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
const int SHARED_BUTTONS = A1;
void setup() {
Serial.begin(9600);
pinMode(SHARED_BUTTONS, INPUT_PULLUP);
}
void loop() {
Serial.println(analogRead(SHARED_BUTTONS));
delay(50);
}