This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
esphome: | |
name: cluster-lights-ble | |
friendly_name: "Christmas Tree" | |
esp32: | |
board: az-delivery-devkit-v4 | |
framework: | |
type: arduino | |
# Enable Bluetooth Low Energy (BLE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
printf '[' > compile_commands.json | |
find ./build -type f -name 'compile_commands.json' -exec sh -c "cat {} | tail -n+2 | head -n-1 && printf ','" >> compile_commands.json \; | |
sed -i '$s/.$//' compile_commands.json | |
printf '\n]\n' >> compile_commands.json |