Cours:InfoEmbarquee : Différence entre versions
Ligne 24 : | Ligne 24 : | ||
\"state_topic\": \"homeassistant/sensor/$1/state\", \ | \"state_topic\": \"homeassistant/sensor/$1/state\", \ | ||
\"device_class\":\"$2\", \ | \"device_class\":\"$2\", \ | ||
− | \"unit_of_measurement\":\"$ | + | \"unit_of_measurement\":\"$3\" \ |
}" | }" | ||
Version du 4 septembre 2023 à 20:40
Attiny10
script shell
mqtt
/usr/local/bin/createHaSensor :
#!/bin/bash
echo "name : $1"
echo "device class : $2"
echo "unit : $3"
topic="homeassistant/sensor/$1/config"
payload="{\"name\": \"$1\", \
\"unique_id\": \"$1\", \
\"state_topic\": \"homeassistant/sensor/$1/state\", \
\"device_class\":\"$2\", \
\"unit_of_measurement\":\"$3\" \
}"
mosquitto_pub -t "$topic" -m "$payload" -h 192.168.0.7
/usr/local/bin/deleteHaSensor :
#!/bin/bash
echo "name : $1"
echo "device class : $2"
echo "unit : $3"
topic="homeassistant/sensor/$1/config"
mosquitto_pub -t "$topic" -m "" -h 192.168.0.7
/usr/local/bin/publishHaSensor :
#!/bin/bash
echo "name : $1"
echo "valeur : $2"
topic="homeassistant/sensor/$1/state"
payload="{\"name\": \"$1\", \
\"unique_id\": \"$1\", \
\"state_topic\": \"homeassistant/sensor/$1/state\", \
\"device_class\":\"$2\", \
\"unit_of_measurement\":\"$4\" \
}"
mosquitto_pub -t "$topic" -m "$2" -h 192.168.0.7