View single post by slychiu
 Posted: Sunday Apr 6th, 2025 07:42 am
 PM  Quote  Reply  Full Topic 
slychiu



Joined: Saturday Apr 29th, 2006
Location: Singapore
Posts: 5865
Status: 
Offline

  back to top

The Multisensor Module MSM01 has internal sensors for Temperature & Humidity as well as connections to water leakage detection cable for Water Leakage. It also has 4 external inputs for Dry contacts which can trigger alarms or Responses in Comfort.



see http://www.comfortforums.com/forum139/4919.html for more info.

The temperature and Humidity can be mapped to Comfort Sensors eg






 The Comfort 2 mqtt addon in Home Assistant can be configured to display the temperature and Humidity sensors on the dashboard, eg Entry in configuration.yaml

   - name: Temperature
     unique_id: "comfort2_sensor1"
     state_topic: "comfort2mqtt/sensor1"
     value_template: "{{ value_json.Value }}"
     availability_topic: "comfort2mqtt/alarm/online"
     json_attributes_template: "{{ value_json | tojson }}"
     json_attributes_topic: "comfort2mqtt/sensor1"
     device_class: temperature
     state_class: measurement
     unit_of_measurement: °C
     payload_available: "1"
     payload_not_available: "0"

   - name: Humidity
     unique_id: "comfort2_sensor2"
     state_topic: "comfort2mqtt/sensor2"
     value_template: "{{ value_json.Value }}"
     availability_topic: "comfort2mqtt/alarm/online"
     json_attributes_template: "{{ value_json | tojson }}"
     json_attributes_topic: "comfort2mqtt/sensor2"
     device_class: humidity
     state_class: measurement
     unit_of_measurement: "%"
     payload_available: "1"
     payload_not_available: "0"
the dashboard should show 











Last edited on Thursday Apr 24th, 2025 05:37 am by slychiu

 Close Window