From 8fa32bb0414c3164d8c3467c5db4c1a912627fc4 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 1 Feb 2026 20:59:22 +0530 Subject: Remove platformio stuff and switch to avr-gcc --- src/main.cpp | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/main.cpp (limited to 'src/main.cpp') 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 - -// 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 -} -- cgit v1.3.1