wallart

8x8 pixel display firmware
git clone https://git.woozle.org/neale/wallart.git

commit
ff69a45
parent
9ced99c
author
Neale Pickett
date
2023-12-31 10:26:07 -0700 MST
Add makefile
1 files changed,  +8, -0
A Makefile
+8, -0
1@@ -0,0 +1,8 @@
2+BOARD = --board adafruit:samd:adafruit_trinket_m0
3+
4+verify: main.ino
5+	arduino --verify $(BOARD) $<
6+	
7+install: main.ino
8+	arduino --upload $(BOARD) $<
9+