homebridge-daikin-local-platform
v1.4.3
Published
Homebridge platform plugin providing HomeKit support for Daikin air conditioners with local control
Maintainers
Readme
Homebridge Daikin Local Platform
homebridge-daikin-local-platform is a dynamic platform plugin for Homebridge that provides HomeKit support for Daikin climate devices to be controlled.
How it works
The plugin communicates with your AC units through the local api from devices. This means your units must be set up there and connect to lan before you can use this plugin.
Supported devices
The plugin auto-detects, per IP address, which of the two local protocols the unit speaks — no configuration needed:
- Newer adapters (firmware 2.8.0+) using the JSON
/dsiot/multireqAPI (e.g. BRP069C4x and recent built-in WiFi modules). - Legacy adapters using the query-string API (
/common/basic_info,/aircon/get_control_info, ...) — the same devices supported by the Home Assistant Daikin integration via BRP069-style adapters (BRP069A/Bxx and older built-in WiFi units, e.g. US FTXM-W "ATMOSPHERA" series). Set semantics follow pydaikin. - AirBase (BRP15B61) adapters, common on Australian ducted systems — same query-string API under a
skyfi/path prefix, with the AirBase mode and 3-speed fan numbering. Zone control is not exposed yet. - Secure BRP072C-style adapters (the ones paired with the Daikin Comfort Control app, e.g. US FTXM-W "ATMOSPHERA" built-in WiFi) — same query-string API, but served only over HTTPS after registering the 13-digit key printed on the adapter/unit sticker. Add the key via
climateKeys(see below); everything else is auto-detected.
You can verify which protocol your unit speaks: http://<ip>/common/basic_info answers ret=OK,... on a legacy unit, http://<ip>/skyfi/common/basic_info on an AirBase unit; newer units answer on /dsiot/multireq. A unit that answers /common/basic_info but returns page not found for /aircon/get_control_info is a secure BRP072C-style adapter and needs its key configured. SkyFi (password-based) adapters are not supported yet.
Homebridge setup
Configure the plugin through the settings UI or directly in the JSON editor.
In the settings UI, the Device finder section can scan your local network (UDP broadcast) and list the Daikin units it finds — one click adds a unit to Climate IPs, and secure BRP072C units are flagged so you can enter their key right away. Note that the scan cannot cross subnets or leave a Docker bridge network (use host networking, or enter the IP manually).
{
"platforms": [
{
"platform": "Daikin Local Platform",
"name": "Daikin Local Platform",
"climateIPs": ["ipv4-here"],
"climateKeys": [
{"ipv4-here": "13-digit-key-here"}
],
"debugMode": false,
}
]
}Required:
platform(string): Tells Homebridge which platform this config belongs to. Leave as is.name(string): Will be displayed in the Homebridge log.climateIPs(array): The IP addresses of the Daikin climate devices to be controlled.
Optional:
climateKeys(array): Only needed for secure BRP072C-style adapters (see Supported devices). One object per unit mapping its IP address (exactly as written inclimateIPs) to the 13-digit key printed on the adapter/unit sticker. Units without a key entry are auto-detected as before. In the Homebridge UI these are entered under Secure adapter keys (BRP072C) in the plugin settings.debugMode(boolean): Iftrue, the plugin will print debugging information to the Homebridge log.
Troubleshooting
If you have any issues with this plugin, enable the debug mode in the settings (and restart the plugin). This will print additional information to the log. If this doesn't help you resolve the issue, feel free to create a GitHub issue and attach the available debugging information.
If the plugin affects the general responsiveness and reliability of your Homebridge setup, you can run it as an isolated child bridge.
Contributing
You can contribute to this project in the following ways:
Test/use the plugin and report issues and share feedback.
Review source code changes before and after they are published.
Contribute with your own bug fixes, code clean-ups, or additional features (pull requests are accepted).
Acknowledgements
- Thanks to やまでん for protocol detail.
- Thanks to the team behind Homebridge. Your efforts do not go unnoticed.
Disclaimer
All product and company names are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
