0.1.9
This commit is contained in:
parent
9f70ab59e7
commit
14bb1b135b
|
@ -104,7 +104,7 @@ Under the `sensor` block, enter as many blocks as users configured in your envir
|
||||||
- platform: mqtt
|
- platform: mqtt
|
||||||
name: "Example Name Weight"
|
name: "Example Name Weight"
|
||||||
state_topic: "miscale/USER_NAME/weight"
|
state_topic: "miscale/USER_NAME/weight"
|
||||||
value_template: "{{ value_json['Weight'] }}"
|
value_template: "{{ value_json['weight'] }}"
|
||||||
unit_of_measurement: "kg"
|
unit_of_measurement: "kg"
|
||||||
json_attributes_topic: "miscale/USER_NAME/weight"
|
json_attributes_topic: "miscale/USER_NAME/weight"
|
||||||
icon: mdi:scale-bathroom
|
icon: mdi:scale-bathroom
|
||||||
|
@ -112,7 +112,7 @@ Under the `sensor` block, enter as many blocks as users configured in your envir
|
||||||
- platform: mqtt
|
- platform: mqtt
|
||||||
name: "Example Name BMI"
|
name: "Example Name BMI"
|
||||||
state_topic: "miscale/USER_NAME/weight"
|
state_topic: "miscale/USER_NAME/weight"
|
||||||
value_template: "{{ value_json['BMI'] }}"
|
value_template: "{{ value_json['bmi'] }}"
|
||||||
icon: mdi:human-pregnant
|
icon: mdi:human-pregnant
|
||||||
unit_of_measurement: "kg/m2"
|
unit_of_measurement: "kg/m2"
|
||||||
|
|
||||||
|
|
|
@ -189,7 +189,7 @@ OLD_MEASURE = ''
|
||||||
def discovery():
|
def discovery():
|
||||||
for MQTTUser in (USER1_NAME,USER2_NAME,USER3_NAME):
|
for MQTTUser in (USER1_NAME,USER2_NAME,USER3_NAME):
|
||||||
message = '{"name": "' + MQTTUser + ' Weight",'
|
message = '{"name": "' + MQTTUser + ' Weight",'
|
||||||
message+= '"state_topic": "miscale/' + MQTTUser + '/weight","value_template": "{{ value_json.Weight }}","unit_of_measurement": "kg",'
|
message+= '"state_topic": "miscale/' + MQTTUser + '/weight","value_template": "{{ value_json.weight }}","unit_of_measurement": "kg",'
|
||||||
message+= '"json_attributes_topic": "miscale/' + MQTTUser + '/weight","icon": "mdi:scale-bathroom"}'
|
message+= '"json_attributes_topic": "miscale/' + MQTTUser + '/weight","icon": "mdi:scale-bathroom"}'
|
||||||
publish.single(
|
publish.single(
|
||||||
MQTT_DISCOVERY_PREFIX + '/sensor/' + MQTT_PREFIX + '/' + MQTTUser + '/config',
|
MQTT_DISCOVERY_PREFIX + '/sensor/' + MQTT_PREFIX + '/' + MQTTUser + '/config',
|
||||||
|
|
Loading…
Reference in a new issue