summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2021-12-17 13:46:31 +0200
committerYuval Adam <_@yuv.al>2021-12-17 13:46:31 +0200
commit74b082c851303ff0a87b492c5f3c40759d1fd40c (patch)
tree9b7b1ccb39271601c09b9801b11ab3d89bb8d267 /Makefile
parent02ec8cc85eee4b12bf71a7aa1c1a39943e764749 (diff)
Green text center screen with Makefile for convenience
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..75e746f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+compile:
+ arduino-cli compile --fqbn Seeeduino:samd:seeed_wio_terminal HelloWorld
+
+upload:
+ arduino-cli upload -p /dev/ttyACM0 --fqbn Seeeduino:samd:seeed_wio_terminal HelloWorld
+
+build: compile upload