thank you very much for the quick response!
Of course i understand that this is not a professional-grade extension and that, most probably, you a re implementing it in your free time which, as most of us, you don’t have that much. So i dont expect everything to work out of the box, and i am happy to help at least with testing to fix al/some of those issues.
To clarify, my hardware is:
- Came Key Wifi Gate (FW: 1.1.26)
- Gate Automation: ZN7 (FW: 2.6.4)
After downloading version 1.1.0 of the integration i see the progress in a good direction, but still not everything is working.
- I do see the actions right now
- most of the sensors are still in “unknown” status, except for:
2.1 Gate Hub Last Seen
2.2 Gate Hub Online
When i press on the “open” button the gate actuaklly starts to open but the close button is always disabled (as visible on the screen). I guess it is due to the fact that the integration doesnt know if the status of the gate, and the Default gate position is always “0%” so it assumes that it is always fully closed.
I had a look at the cameconnect UI to look at what endpoints are reporting on the gate status in my case and it looks like it is this one:
https://app.cameconnect.net/api/devicestatus?devices=[DEVICE_ID]
Looks like the Data->States->Data property reports on what is happening with the gate. Looks like the first item in that array is the code for the movement and the second one is the position of the gate
- 17 - closed
- 32 - openning
- 19 - partially open
- 16 - fully opened
- 33 - closing
I guess you know what already, but maybe it is different for my hardware than yours - that would explain why the sensors are not working.
"Success": true,
"Data": [
{
"Id": DEVICE_ID,
"Configured": 0,
"ConfiguredLastUpdate": "2025-09-11T19:34:58.000Z",
"Online": true,
"Limbo": false,
"Autodiscover": 0,
"States": [
{
"Data": [
17,
0
],
edit: just had a look at the source code and I do see that you mapped the same values as constants.