Skip to content

Commit 77eb4b7

Browse files
committed
feat: add Makefile
1 parent a084e0f commit 77eb4b7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.PHONY: help
2+
help:
3+
@echo "Usage: make [build|upload|monitor]"
4+
5+
.PHONY: build
6+
build:
7+
pio run
8+
9+
.PHONY: upload
10+
upload:
11+
pio run --target upload
12+
13+
.PHONY: monitor
14+
monitor:
15+
pio device monitor
16+

0 commit comments

Comments
 (0)