Dio Chacon Wifi API
DIO Chacon are devices mainly distributed in the European market. Chacon provide various device to control switches, shutters, camera, lights, etc. The website contains it all : https://chacon.com/
The cool thing about their device is that they have RF (433Mhz, used by remote control in house) and Wifi protocols (used by the mobile App).
The wifi protocol is cloud based with their server and quite reactive through permanent connections (via websockets).
This project is a simple implementation, based on the Wifi protocol, of a python client to give the possibility to connect and acts on the devices. It currently supports switches (plugs or wall box for lights) and shutters. It can lists all registered devices (via the mobile app), get their status (on/off ; open level) and act on them (switch on/off ; move up/down/stop cover or move a given percentage of openess).
It is used in a HomeAssistant integration but is also usable in other automation platforms (jeedom, etc).
Using this library
To implement a client that interact with Chacon devices, simply have look at test_integrations_switch.py or test_integrations_shutter.py that provide effective implementations.
The library is published in pypi.org and so can be very easily used in any python project (with python > 3.10).
pip install dio-chacon-wifi-api
Note that after the first API call, the connection to the chacon's cloud server is a open in a form of a websocket. To close it, you have to call disconnect method.
Note also that this client has auto reconnection implemented in case of a network temporary failure for example.
Contributing to this project
If you find bugs or want to improve the library, simply open an issue and propose PR to merge. Chacon have lots of devices that could be managed via this library.
Design principles
The wifi protocol is described in Protocol.md. You can test this protocol manually through postman with establishing a connection via correct authentification (email + password of your chacon mobile app account) ; then upgrade the connection to Websocket and then interact with json messages in the Websocket stream.
The same protocol is also described in two machine-readable specifications under the docs/ folder :
- docs/asyncapi.yaml is an AsyncAPI 3.0 description of the WebSocket protocol (requests, replies and server-pushed device state events). Open it in the AsyncAPI Studio to browse the operations and message schemas, or generate static HTML documentation locally with the
@asyncapi/cli:asyncapi generate fromTemplate docs/asyncapi.yaml @asyncapi/html-template -o ./asyncapi-html. AsyncAPI Studio is a hosted service, so prefer the local CLI command if you modify the spec to include real device identifiers or session tokens. - docs/opencollection.yml is an OpenCollection 1.0 executable collection bundling the REST login call and the WebSocket operations. Import it in an OpenCollection-aware client — Bruno is the primary tested target — and fill in the
email/passwordcollection variables with your Chacon mobile app account to replay the requests against the cloud server. The credentials travel in the URL query string, so treat any exported version of the collection as sensitive.
For the implementation of the library, it is based on the great aiohttp library that we use as a http client for REST requests and websocket exchange. All the library is asynchronous and based on asyncio.
The websocket permanent connection is established lazily when it is necessary (for example for devices discovery) by an asyncio task. This tasks keeps the connection permanent via automatic ping/pong messages. The protocol is based two types of interaction :
- Requests / Responses : this is handled via json message sent in the websocket with an id (the library automatically manages this id) and a response received from the server that has the same id has the request.
- Server side sent messages : these push messages (for example a switch manually switched on/off with the button or other event) are sent back to the registerer callback method when you initialize the client.