0

Python スクリプトから Home Assistant に JSON データを送信しています。HA はデータを受け取りますが、テンプレートでデータを正しく読み取ることができません。欠けているものがわかりません。JSON の温度と湿度のプロパティにアクセスしたいのです。

Python クライアント パブリッシュ スクリプト (Python 2.7.16)

msg_json = {
  "climate": {
    "temperature": str(temperature_f),
    "humidity": str(humidity_f)
  }
}
result = client.publish(topic, payload=json.dumps(msg_json))
status = result[0]
print("Send {0} to topic {1}").format(msg_json, topic)

// OUTPUT -> Send {'climate': {'temperature': '9', 'humidity': '7'}} to topic rpi3/sensors/climate

HA構成.yaml

    - platform: mqtt
      state_topic: 'rpi3/sensors/climate'
      name: 'RPi3 Climate'
      value_template: '{{ value_json.climate }}'

HA 開発テンプレート

Data: {{ states('sensor.rpi3_climate') }} 
    -> OUTPUTS: Data: {'temperature': '9', 'humidity': '7'}

Temperature: {{ state_attr('sensor.rpi3_climate', "temperature") }}
    -> OUTPUTS: Temperature: None

HA 開発テンプレートの代替

{% set temp = states("sensor.rpi3_climate") %}
{% set climate_json = temp|to_json %}
The temperature is: {{ climate_json }}
    -> OUTPUTS: The temperature is: "{'temperature': '9', 'humidity': '7'}"

The temperature is: {{ climate_json.temperature }} 
    -> OUTPUTS: The temperature is: 
4

1 に答える 1