Closed DarkWarden85 closed 2 years ago
I fixed this by adjusting the .yaml
file:
ca->is_bypass_valve_open = new BinarySensor();
ca->is_bypass_valve_open->set_name("Bypass Valve");
App.register_binary_sensor(ca->is_bypass_valve_open);
ca->is_preheating = new BinarySensor();
ca->is_preheating->set_name("Preheating");
App.register_binary_sensor(ca->is_preheating);
ca->is_supply_fan_active = new BinarySensor();
ca->is_supply_fan_active->set_name("Supply Fan");
App.register_binary_sensor(ca->is_supply_fan_active);
ca->is_filter_full = new BinarySensor();
ca->is_filter_full->set_name("Filter Full");
App.register_binary_sensor(ca->is_filter_full);
ca->is_summer_mode = new BinarySensor();
ca->is_summer_mode->set_name("Summer Mode");
App.register_binary_sensor(ca->is_summer_mode);
This was caused by the following change in esphome: https://github.com/esphome/esphome/pull/3213
Hi @ItsEcholot,
That was it, now everything is working fine again, thank you very much. I'm closing the issue.
Hello,
I have successfully been using your esphome-comfoair implementation in conjunction with my comfoair 550 ventilation system for over half a year. However, upon updating to ESPHome v2022.3.1, compilation fails. Here is the output from the logs. Any way to fix this?