gpio-webhook-arduino/Makefile

13 lines
227 B
Makefile
Raw Permalink Normal View History

BOARD_NAME ?= esp8266:esp8266:huzzah
UPLOAD_PORT ?= /dev/ttyUSB0
.PHONY: all build upload
all: build
2020-05-06 21:05:51 +00:00
build:
arduino-cli compile -b ${BOARD_NAME} ${PWD}
upload:
arduino-cli upload -b ${BOARD_NAME} -p ${UPLOAD_PORT} ${PWD}