aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2026-02-01 20:59:22 +0530
committerAkshay Nair <phenax5@gmail.com>2026-02-01 20:59:24 +0530
commit8fa32bb0414c3164d8c3467c5db4c1a912627fc4 (patch)
tree0d1c3b5f1aa27f77b4678b6f65f38b8b09dfce37 /src/main.cpp
parent7224fce49e4fa8c0b966dcc8d4f9b1d12b02f66a (diff)
downloaddaft-watch-8fa32bb0414c3164d8c3467c5db4c1a912627fc4.tar.gz
daft-watch-8fa32bb0414c3164d8c3467c5db4c1a912627fc4.zip
Remove platformio stuff and switch to avr-gcc
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/main.cpp b/src/main.cpp
deleted file mode 100644
index 6226244..0000000
--- a/src/main.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <Arduino.h>
-
-// Physical Pin 2 on the ATtiny84a is Arduino Digital Pin 0
-#define LED_PIN 0
-
-void setup() {
- // Initialize the digital pin as an output.
- pinMode(LED_PIN, OUTPUT);
-}
-
-void loop() {
- digitalWrite(LED_PIN, HIGH); // Turn the LED on
- delay(1000); // Wait for a second
- digitalWrite(LED_PIN, LOW); // Turn the LED off
- delay(1000); // Wait for a second
-}