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