Give each mystrom a separate file

This allows to set friendly_name (required for default
entity) and make an area suggestion, while also simplifying
reflash.sh script.
This commit is contained in:
2024-01-25 19:36:32 +01:00
parent 6d6a2a269e
commit 0acd5c7d72
10 changed files with 75 additions and 33 deletions
+21 -28
View File
@@ -18,16 +18,27 @@ else
command="run --no-logs"
fi
flash=(
"${command?} bathroomheater.yaml"
"${command?} blinds.yaml"
"${command?} heating.yaml"
"${command?} loud-siren.yaml"
"${command?} ruuvi.yaml"
"${command?} watermeter.yaml"
"${command?} heating-eg.yaml"
"${command?} heating-og.yaml"
)
declare -a flash
for config in \
bathroomheater.yaml \
blinds.yaml \
heating.yaml \
loud-siren.yaml \
ruuvi.yaml \
watermeter.yaml \
heating-eg.yaml \
heating-og.yaml \
car-charger.yaml \
freezer.yaml \
living-room-entertainment.yaml \
outdoor-equipment.yaml \
recirculation-pump.yaml \
storage-heater.yaml \
basement-rack.yaml \
tools-power.yaml; do
flash+=("${command?} ${config?}")
done
for btproxy_replica in \
c25bac
@@ -35,24 +46,6 @@ do
flash+=("${command?} btproxy.yaml --device btproxy-${btproxy_replica?}")
done
for mystrom_appliance in \
car-charger \
freezer \
living-room-entertainment \
outdoor-deer \
pool-pump \
recirculation-pump \
storage-heater \
tools-power
do
custom_file="${mystrom_appliance?}.yaml"
if [ -f "${custom_file?}" ]; then
flash+=("${command?} ${custom_file?}")
else
flash+=("-s name ${mystrom_appliance?} ${command?} templates/mystrom.yaml")
fi
done
declare -A flash_result
print_results_table() {