it blinks!!!

This commit is contained in:
2025-11-16 19:18:46 -08:00
commit d54a1ea970
1405 changed files with 151048 additions and 0 deletions

14
blink/Makefile Normal file
View File

@ -0,0 +1,14 @@
IDF_PATH := $(HOME)/esp/esp-idf
PROJECT := blink
all:
. $(IDF_PATH)/export.sh && idf.py build
flash:
. $(IDF_PATH)/export.sh && idf.py -p /dev/ttyUSB0 flash
monitor:
. $(IDF_PATH)/export.sh && idf.py -p /dev/ttyUSB0 monitor
clean:
. $(IDF_PATH)/export.sh && idf.py clean