Control your ActronAir Neo system with Apple HomeKit using Homebridge.
This is an 'almost' feature complete implementation of the Neo platform in HomeKit.
npm install -g homebridge-actronair-neo
Configure account details in the homebridge config.json
file as below.
The plugin implements the Homebridge config UI service. Simply install the plugin and you will be guided through the setup.
If you are not using the Homebridge config UI, you can add the following to your homebridge configuration:
"platforms": [
{
"platform": "ActronNeo",
"name": "ActronNeo",
"username": "<your_username>",
"password": "<your_password>",
"clientName": "homebridgeNeo",
"zonesFollowMaster": true,
"zonesPushMaster": true,
"refreshInterval": 60,
"deviceSerial": "",
"maxCoolingTemp": 32,
"minCoolingTemp": 20,
"maxHeatingTemp": 26,
"minHeatingTemp": 10,
}
]
When modifying the zone temperature settings, the Neo system only allows you to set a temperature that is within -2 degrees (Heating) or +2 degrees (Cooling) of the Master Control temperature. With version 1.1.0, the default behaviour has been modified to automatically adjust the master temp if required when modifying a zone temp.
Setting zonesPushMaster
to false will revert to the prior behaviour of constraining zones to the allowable max/min based on the current master setting. If you set a zone temperature that is outside of the +/- 2 degree range from the master, the plugin will translate the set temp to the allowable range.
[Your existing error handling information here]
Here are some common issues and their solutions:
HTTP Error 400: Check your username and password in the configuration. If you recently revoked client access through the Neo online portal, try restarting Homebridge.
HTTP Error 401: The plugin will automatically request a new bearer token. If the issue persists after multiple retries, try restarting Homebridge.
HTTP Error 5xx: These are server-side errors from the Neo API. The plugin will retry a few times. If the issue persists, it's likely a temporary problem with the Neo service.
Network Outages: The plugin will attempt to gracefully recover from network outages. Ensure your network connection is stable.
Master Controller Offline: Check your Master Controller's internet/WiFi connection if you see a message about it being offline.
Schema Validation Errors: These occur when the API returns incomplete data. The plugin will attempt to continue operation using cached data.
For more detailed information on error handling, please refer to the Error Handling section.
Contributions to this plugin are welcome! Please follow these steps:
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
If you encounter any issues or have feature requests, please open an issue on GitHub.