14 lines
127 B
Makefile
14 lines
127 B
Makefile
.PHONY: clean
|
|
|
|
clean:
|
|
pio run --target clean
|
|
|
|
build:
|
|
pio run
|
|
|
|
upload:
|
|
pio run --target upload
|
|
|
|
monitor:
|
|
pio device monitor
|