Arduino/Makefile

16 lines
166 B
Makefile
Raw Permalink Normal View History

2023-12-09 13:58:53 +00:00
DEVICE = /dev/ttyUSB0
all: build upload monitor
clean:
pio run -t clean
upload:
pio run -t upload
build:
pio run -v
monitor:
pio device monitor -p $(DEVICE)