aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2026-04-11 19:27:43 +0530
committerAkshay Nair <phenax5@gmail.com>2026-04-11 19:27:43 +0530
commit829d9e438f4eedf9dfb15aec59510ecc14be583c (patch)
treefce8a6e3101a56a5786db2f2adeb6d01bbed051b /src/main.c
downloadtemperature-sensor-attiny84a-829d9e438f4eedf9dfb15aec59510ecc14be583c.tar.gz
temperature-sensor-attiny84a-829d9e438f4eedf9dfb15aec59510ecc14be583c.zip
Init commit with boilerplate shit
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..cd3f0be
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,9 @@
+#include <util/delay.h>
+
+int main(void) {
+ while (1) {
+ _delay_ms(1000);
+ }
+
+ return 0;
+}