Inital Commit

Working:
- Detection if Master or Slave over Pin
- Master Broadcasts message to Slaves
- Slave connect to Master and get Pinged
This commit is contained in:
2024-12-28 16:31:33 +01:00
commit 3e7c842597
7 changed files with 2424 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
all:
echo "no default rule"
export:
source ~/esp/esp-idf/export.fish && fish
buildIdf:
idf.py build
flash0:
sudo chmod o+rw /dev/ttyUSB0
idf.py flash -p /dev/ttyUSB0
flash1:
sudo chmod o+rw /dev/ttyUSB1
idf.py flash -p /dev/ttyUSB1
monitor0:
sudo chmod o+rw /dev/ttyUSB0
idf.py monitor -p /dev/ttyUSB0
monitor1:
sudo chmod o+rw /dev/ttyUSB0
idf.py monitor -p /dev/ttyUSB1