UI framework

This commit is contained in:
Mikkeli Matlock
2026-01-24 12:24:26 +09:00
parent 2f5894cda8
commit 0d9c5eb359
8 changed files with 291 additions and 0 deletions

10
arduino/hello.ino Normal file
View File

@@ -0,0 +1,10 @@
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(10);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}