This week our HVAC system was replaced with an American Standard system with a AZON1050 controller. I’d very much like to thank @bdraco and all the maintainers of this integration as it was fantastic to be able to update my Home Assistant configuration to the new system (from Nest previously) without any issue.
I haven’t had any issues so far. Both the integration (and frankly the Nexia/American Standard system) are very capable. I would echo @RobertF14 request to support the RoomIQ sensors and RoomIQ features if possible (specifically, setting ‘primary’ sensor, sensor-weighting, or sensor-average mode). These sensors are shown in diagnostics:
{
"name": "room_iq_sensors",
"sensors": [
{
"id": 17250603,
"name": "Miller",
"icon": {
"name": "room_iq_onboard",
"modifiers": []
},
"type": "thermostat",
"serial_number": "NativeIDTUniqueID",
"weight": 0.5,
"temperature": 72,
"temperature_valid": true,
"humidity": 43,
"humidity_valid": true,
"has_online": false,
"has_battery": false
},
{
"id": 17250678,
"name": "Family Room",
"icon": {
"name": "room_iq_wireless",
"modifiers": []
},
"type": "930",
"serial_number": "2224R5BXNX",
"weight": 0.5,
"temperature": 71,
"temperature_valid": true,
"humidity": 43,
"humidity_valid": true,
"has_online": true,
"connected": true,
"has_battery": true,
"battery_level": 100,
"battery_low": false,
"battery_valid": true
},
{...}
It appears that the relevant APIs are request_current_sensor_state
and update_active_sensors
:
"actions": {
"request_current_state": {
"href": "https://www.mynexia.com/mobile/xxl_zones/xxxxxxxxx/request_current_sensor_state"
},
"update_active_sensors": {
"method": "POST",
"href": "https://www.mynexia.com/mobile/xxl_zones/xxxxxxxxx/update_active_sensors"
}
}
While it is true I can set Nexia-side automations (that HA can trigger) to change the primary sensor, this feels like a hack and still has limitations, as you can’t change primary sensor based on sensor temperature, and you can’t (as far as I have found so far) change the sensor weighting property for sensor averaging-mode. Plus it would be nice to have the sensor values in Home Assistant so I don’t need to put another multi sensor in those rooms, and so I could integrate them into my standard low-battery notification routines in HA.
If there is a maintainer interested in working on this, but doesn’t have any RoomIQ features/sensors on their system, I’d be happy to be a testbed.
Regardless, I am a super happy user of the integration, thank you for all work on this.