Mijn vraag
Hoe kan ik weer co2 en fan speed tonen van mijn itho-cve module
Relevante software en hardware die ik gebruik
Installatiemethode Home Assistant OS
Core 2025.9.3
Supervisor 2025.09.0
Operating System 16.2
Frontend 20250903.5
laatste mqtt broker (versie onbekend)
Wat ik al gevonden of geprobeerd heb
ChatGPT helemaal leeggetrokken:
Dit is mijn itho.yaml
configuration.yaml ziet er zo uit:
Het probleem is dat het eerder wel werkte maar ik wilde de boel opschonen. In de loop er tijd is er net iets teveel geprobeerd en vervuild.
Er waren meerdere .yaml files die rommelig waren en omdat ik meer van yaml begreep (dacht ik) leek een opschoonactie nodig te zijn.
Home Assistant krijgt nu wel de data binnen op de mqtt bus:
maar kan geen sensor aanmaken. Er blijven slechts 3 entiteiten bekend en dat zijn:
Help!
Hoe kan ik weer co2 en fan speed tonen van mijn itho-cve module
Relevante software en hardware die ik gebruik
Installatiemethode Home Assistant OS
Core 2025.9.3
Supervisor 2025.09.0
Operating System 16.2
Frontend 20250903.5
laatste mqtt broker (versie onbekend)
Wat ik al gevonden of geprobeerd heb
ChatGPT helemaal leeggetrokken:
Dit is mijn itho.yaml
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| # Central CO₂ from itho/ithostatus - platform: mqtt name: "Itho Central CO2" state_topic: "itho/ithostatus" value_template: "{{ value_json['co2level_ppm'] }}" unique_id: "itho_central_co2" unit_of_measurement: "ppm" device_class: carbon_dioxide state_class: measurement # Fan speed from itho/ithostatus - platform: mqtt name: "Itho Fan Speed" state_topic: "itho/ithostatus" value_template: "{{ value_json['fan-speed_rpm'] }}" unique_id: "itho_fan_speed" unit_of_measurement: "rpm" state_class: measurement # Remote CO₂ from itho/remotesinfo - platform: mqtt name: "Itho Remote Woonkamer CO2" state_topic: "itho/remotesinfo" value_template: "{{ value_json['Woonkamer']['co2'] }}" unique_id: "itho_remote_woonkamer_co2" unit_of_measurement: "ppm" device_class: carbon_dioxide state_class: measurement # Remote PIR from itho/remotesinfo - platform: mqtt name: "Itho Remote Woonkamer PIR" state_topic: "itho/remomqtttesinfo" value_template: "{{ value_json['Woonkamer']['pir'] }}" unique_id: "itho_remote_woonkamer_pir" device_class: motion |
configuration.yaml ziet er zo uit:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| # Loads default set of integrations. Do not remove. default_config: # Load frontend themes from the themes folder frontend: themes: !include_dir_merge_named themes automation: !include automations.yaml script: !include scripts.yaml scene: !include scenes.yaml binary_sensor: !include_dir_merge_list binsensors/ sensor: !include_dir_merge_list sensors/ light: !include_dir_merge_list lights/ switch: !include_dir_merge_list switches/ |
Het probleem is dat het eerder wel werkte maar ik wilde de boel opschonen. In de loop er tijd is er net iets teveel geprobeerd en vervuild.
Er waren meerdere .yaml files die rommelig waren en omdat ik meer van yaml begreep (dacht ik) leek een opschoonactie nodig te zijn.
Home Assistant krijgt nu wel de data binnen op de mqtt bus:
code:
1
2
3
4
5
6
7
8
9
10
| Bericht 2 ontvangen op itho/remotesinfo om 08:38: {"Woonkamer":{"timestamp":0,"lastcmd":0,"lastcmdmsg":"IthoUnknown","co2":520,"pir":1}} QoS: 0 - Retain: true Bericht 1 ontvangen op itho/ithostatus om 08:38: {"temp":25.9,"hum":53.9,"ppmw":11442,"speed-status":4,"internal-fault":0,"frost-cycle":0,"filter-dirty":0,"airquality_perc":200,"airq-based-on":64,"co2level_ppm":520,"indoor-humidity_perc":53,"outdoor-humidity_perc":"not available","exhausttemp_c":"not available","supply-temp_c":"not available","indoor-temp_c":"not available","outdoor-temp_c":"not available","speed-cap":63496,"bypass-pos_perc":"not available","fan-info":"auto","exh-fan-speed_perc":4,"in-fan-speed_perc":0,"remaining-time_min":0,"post-heat_perc":"not available","pre-heat_perc":"not available","in-flow-l_sec":"not available","exh-flow-l_sec":"not available","ventilation-setpoint_perc":2,"fan-setpoint_rpm":483,"fan-speed_rpm":511,"error":0,"selection":7,"startup-counter":89,"total-operation_hours":44393,"absence_min":0,"highest-co2-concentration_ppm":"not available","highest-rh-concentration_perc":53,"relativehumidity":53.94,"temperature":25.91} QoS: 0 - Retain: true |
maar kan geen sensor aanmaken. Er blijven slechts 3 entiteiten bekend en dat zijn:
- fan
- humidity
- temperature
Help!