Hi all,
First of all thanks for all the great work in the past years!
I have recently migrated from Connbee 2 to Connbee 3 and upgraded from 2.23 to 2.28. My problems have started here: I had to re-connect every single sensor/switch - ok.
Unfortunately however, some of the Xiaomi wall switches (rocker: lumi.ctrl_ln1.aq1, lumi.ctrl_ln2.aq1) which worked perfectly fine with Connbee 2/2.23 don’t show up anymore neither as Lights nor as Plugs. When pairing them most of them show up as sensors with a button state which precludes me from adding them to Light Groups to start with.
Since many of the switches were formerly cross-linked to control the same light, I wrote a bash script essentially retrieving the status of every switch every second and syncronizing the others through a curl PUT to the state of the /light - i.e. if the same light was turned on with switch 4 then when switch 2 was turned ON, it turned the light off (these are all rocker switches).
Since the light doesn’t exist anymore I lost control over my house’s lights.
I guess it’d be an option to go back to 2.23 and Connbee 2 in the worst case but I hope there’s another solution.
I can only add these Xiaomi 1-way wall switches now as “Add Switch” - when I try “Add Lights” or “Add Plugs” they don’t get recognized.
It now shows up as /sensor/416
"416": {
"config": {
"on": true,
"reachable": true,
"temperature": 2500
},
"ep": 5,
"etag": "306df8b4c13b4c59d105d0804eb51360",
"lastannounced": "2025-03-26T08:51:35Z",
"lastseen": "2025-03-26T08:51Z",
"manufacturername": "LUMI",
"mode": 1,
"modelid": "lumi.ctrl_ln1.aq1",
"name": "GFKitchenLiv",
"state": {
"buttonevent": 1002,
"lastupdated": "2025-03-26T08:51:36.882"
},
"type": "ZHASwitch",
"uniqueid": "00:15:8d:00:04:26:52:f4-05-0012"
},
instead of the same way as some others of the same type (from previous config, also re-added but they somehow stayed on)
as /lights/37/
"37": {
"capabilities": {
"alerts": [
"none",
"select",
"lselect"
]
},
"config": {
"groups": [
"5",
"0",
"0",
"15",
"21"
]
},
"etag": "afa9e46b14e1f24070e8bdfd359923a1",
"hascolor": false,
"lastannounced": "2023-06-05T19:53:06Z",
"lastseen": "2024-09-01T21:11Z",
"manufacturername": "LUMI",
"modelid": "lumi.ctrl_ln1.aq1",
"name": "LivingLEDFront",
"state": {
"alert": "none",
"on": true,
"reachable": true
},
"swversion": "06-25-2018",
"type": "Smart plug",
"uniqueid": "00:15:8d:00:04:0e:47:2d-01"
},
If I curl PUT/POST a buttonevent to the sensor, nothing happens - I’d like to be able to 1) Assign it as a light; 2) Control it via curl or any other means
Thanks in advance!