And added to this version of thermostat drivertoo, if you need it
┌─────────────┬───────────────────────────────────────┐
│ Name │ Zigbee Temp Sensor with Thermostat Mc │
│ Version │ 2022-04-25T22:06:35.532569 │
└─────────────┴───────────────────────────────────────┘
I have made this version for Ikea CWS bulbs.
At the moment they do not have the custom functions of continuous color change. If it works, I’ll see how I can add it.
┌─────────────┬──────────────────────────────────────┐
│ Name │ Zigbee Light Multifunction XY │
│ Version │ 2022-04-26T12:32:26.635093 │
└─────────────┴──────────────────────────────────────┘
@Mariano_Colmenarejo
Thank you so much
i tried TRADFRI bulb E27 CWS opal 600lm
It works fine but once i try to change the color temperature, it is not responding and i get the error message as attached screenshot
Does anyone use a SmartThings Multipurpose sensor on their garage door and swtched to an Edge driver and been able to get it to work? I switched over to an Edge driver today and I am not able to get it to work properly. I have tried both the @Mariano_Colmenarejo and ST Edge drivers with the same results for both. Once I change the settings to use for garage door. it reflects open the first time I go to open the door and stays in that status even when the door closes. Stuck I am!!
I have samjin sensors but I am not using them as a garage, they are glued and I cannot test them.
The code of my driver and the stock are the same, with the acceleration of the Z axis > 900 it emits closed and if it is < 100 it emits open
You could check what Z axis acceleration is emitting in detaills view when closed and open
if axis_index == 3 and device.preferences.garageSensor == "Yes" then
-- if this is the z-index and we're using as a garage door, send contact events
if math.abs(value.value) > 900 then
device:emit_event(capabilities.contactSensor.contact.closed())
elseif math.abs(value.value) < 100 then
device:emit_event(capabilities.contactSensor.contact.open())
end
end
It seems that you have to turn the sensor 90º.
The sensor Z axis is the one that is now never aligned with the vector (force) of gravity when door is open and closed.
Well, that is the Z axis that has to be aligned with local gravity when door it is closed.
And at 90º with local gravity when the gate is open.