mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-13 17:22:54 -05:00
11 lines
246 B
Makefile
11 lines
246 B
Makefile
weather:
|
|
mkdir -p bin/
|
|
arduino-cli compile -b arduino:avr:uno Weather.ino -o bin/Weather
|
|
|
|
install:
|
|
sudo service weather stop
|
|
arduino-cli upload -b arduino:avr:uno -p /dev/ttyACM0 -i bin/Weather
|
|
sudo service weather start
|
|
|
|
clean:
|
|
rm -rf bin/
|