mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
10 lines
346 B
Bash
Executable File
10 lines
346 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# creates an CSV file called "dump_telegrams.cvs" with all devices and their telegrams
|
|
# run from top folder like `sh ./scripts/dump_telegrams.sh`
|
|
rm -f dump_telegrams.csv
|
|
# make clean
|
|
# make
|
|
make ARGS=-DEMSESP_STANDALONE
|
|
echo "test telegram_dump" | ./emsesp | python3 ./scripts/strip_csv.py > dump_telegrams.csv
|
|
cat dump_telegrams.csv |