Initial commit

This commit is contained in:
mia 2025-09-18 21:29:58 +02:00
commit 413821ffe9
17 changed files with 490 additions and 0 deletions

View file

@ -0,0 +1,17 @@
// const int sensorPin = 2;
// bool sensorState = false;
//
// void setup() {
// pinMode(sensorPin, INPUT);
// Serial.begin(115200);
// }
//
// void loop() {
// sensorState = digitalRead(sensorPin);
// if (sensorState) {
// Serial.println("Open");
// } else {
// Serial.println("Closed");
// }
// delay(500);
// }