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



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

