]> git.basschouten.com Git - openhab-addons.git/commitdiff
GH-9936 Fixed datatype for brightness of the ambient light (#10065)
authorMichael Rumpf <michael@rumpfonline.de>
Mon, 8 Feb 2021 22:40:02 +0000 (23:40 +0100)
committerGitHub <noreply@github.com>
Mon, 8 Feb 2021 22:40:02 +0000 (23:40 +0100)
The ceiling10 Yeelight lamp has 2 dimmer for brightness:
"bright" for the main light and bg_bright for the ambient light.
Both are of type dimmer and accept percentage values between 1 and 100.
This fix changes the datatype of the bg_bright property from Number
to Dimmer in the device mapping database file ceiling4, which is also
the one that is used for the ceiling10 lamp.

Accepted without sign-off under minor change exemption.

bundles/org.openhab.binding.miio/src/main/resources/database/yeelink.light.ceiling4.json

index a589bc11aa336f33de9819c44142b5c9dc0e3dc3..488353fddf61f34563a96632e618d14e55155e41 100644 (file)
                                "property": "bg_bright",
                                "friendlyName": "Ambient Brightness",
                                "channel": "ambientBrightness",
-                               "channelType": "ambientBrightness",
-                               "type": "Number",
+                               "type": "Dimmer",
                                "refresh": true,
                                "ChannelGroup": "actions",
                                "actions": [
                                        {
                                                "command": "bg_set_bright",
-                                               "parameterType": "NUMBER"
+                                               "parameterType": "NUMBER",
+                                               "condition": {
+                                                       "name": "BrightnessExisting"
+                                               }
+                                       },
+                                       {
+                                               "command": "set_power",
+                                               "parameterType": "ONOFF",
+                                               "condition": {
+                                                       "name": "BrightnessOnOff"
+                                               }
                                        }
                                ]
                        },