Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue on LIDL Livarno Lux light strip #4539

Closed
jokerigno opened this issue Mar 8, 2021 · 45 comments · Fixed by #4541 or #4707
Closed

Issue on LIDL Livarno Lux light strip #4539

jokerigno opened this issue Mar 8, 2021 · 45 comments · Fixed by #4541 or #4707
Labels
Device Improvement Additional tag to attach to a existing issue. Device Request

Comments

@jokerigno
Copy link

Describe the bug

I just buyed a LIDL Livarno Lux (HG06104A) and I tried to switch on colorloop functionality in Home Assistant but nothing happens. I opened an issue #47287 but it seems that in not related to the integration but to HW and Deconz.

Steps to reproduce the behavior

  1. Turn on the light in HA
  2. Click on colorloop
  3. Nothing happens

Expected behavior

Light change color randomly

Screenshots

Environment

  • Host system: Unraid
  • Running method: Marthoc Docker container
  • Firmware version: (264A0700)
  • deCONZ version: (2.10.01)
  • Device: ConBee II
  • Do you use an USB extension cable: (yes / no) -- only relevant for ConBee I/II - Yes
  • Is there any other USB or serial devices connected to the host system? If so: Which? No

deCONZ Logs

I tried to add logs. I can see them in deConz but I'm unable to paste outside VNC.

Additional context

@Mimiix Mimiix added Device Improvement Additional tag to attach to a existing issue. Device Request and removed Bug report labels Mar 8, 2021
@ebaauw
Copy link
Collaborator

ebaauw commented Mar 8, 2021

I don't have the lightstrip to test, but the E27 colour bulb doesn't support colorloop (or even hue/sat). Could you try and activate the color loop from the GUI? If it reports status 0xc3, it doesn't support the command.
Screenshot 2021-03-08 at 19 23.

Doing a PR not to expose the unsupported state attributes.

@Mimiix
Copy link
Collaborator

Mimiix commented Mar 9, 2021

@ebaauw Took a test on my ledstrip

image

Ledstrip seems to not support it either.

@jokerigno
Copy link
Author

I would love to test it too but I don't know how to reach this windows. I logon in deconz app via VNC and then?

@Mimiix
Copy link
Collaborator

Mimiix commented Mar 9, 2021

Go to the Color Cluster (check the wiki on how to read/find clusters).

Then scroll a bit down.

@jokerigno
Copy link
Author

I confirm that

immagine

@jokerigno
Copy link
Author

jokerigno commented Mar 23, 2021

Hi all,

I noticed that my Model HG06104A has now only Color Temp and brightness in Phoscon. No more color control. Why I cannot change color anymore? @Mimiix maybe I changed some value in the color cluster without intention? Have you the same issue?

@Mimiix
Copy link
Collaborator

Mimiix commented Mar 24, 2021

@jokerigno I have no clue. Best to ask on the Phoscon repo.

@jokerigno
Copy link
Author

I will but I think there's more than this.

The led strip model is know unknown (previous was HG06104A as reported in original post).

@Mimiix
Copy link
Collaborator

Mimiix commented Mar 26, 2021

@ebaauw Based on dresden-elektronik/phoscon-app-beta#362 it now broke the ledstrip.

@Mimiix Mimiix reopened this Mar 26, 2021
@jokerigno
Copy link
Author

Another thing that I noticed in HA (don't know if can help, I share it because HA developer told me that integration just copy info from deconz ) is that every time brightness is and then change color brightness is changed automatically to 219.

Moreover in HA UI the color is not reported correctly.

@ebaauw
Copy link
Collaborator

ebaauw commented Mar 26, 2021

Based on dresden-elektronik/phoscon-app-beta#362 it now broke the ledstrip

Are you telling me that HA and even Phoscon are using hue/sat instead of xy to set the colour?

If not, please post screenshot of Basic cluster and list the /lights resources of the now broken device( s).

@b2un0
Copy link
Contributor

b2un0 commented Apr 6, 2021

The Lidl Melinera Christmas Stripe from #3716 are also broken.

The Device is broken since the latest stable release and cant be used anymore.

basic cluster:

image

/lights resources

    "27": {
        "etag": "fed8c4c3652aa731b281608a962ea4da",
        "hascolor": true,
        "lastannounced": null,
        "lastseen": "2021-04-06T18:45Z",
        "manufacturername": "LIDL Livarno Lux",
        "modelid": "HG06467",
        "name": "Color dimmable light 27",
        "state": {
            "bri": 254,
            "colormode": "hs",
            "on": true,
            "reachable": true
        },
        "swversion": null,
        "type": "Color dimmable light",
        "uniqueid": "bc:33:ac:ff:fe:73:3a:4a-01"
    },

@LeoeLeoeL
Copy link

Any good news about this bug?

@Smanar
Copy link
Collaborator

Smanar commented Apr 16, 2021

Ha yes, some field are missing in the JSON

    "state": {
      "bri": 25,
      "colormode": "hs",
      "effect": "none",
      "hue": 53691,
      "on": false,
      "reachable": true,
      "sat": 141
    },

Do you have the last version working ?

BTW, this is the only part than can set hue field ?

                        // fall through
                    case DEV_ID_ZLL_EXTENDED_COLOR_LIGHT:
                    case DEV_ID_HA_COLOR_DIMMABLE_LIGHT:
                    case DEV_ID_Z30_EXTENDED_COLOR_LIGHT: // fall through
                        {
                            addItem(DataTypeUInt16, RStateX);
                            addItem(DataTypeUInt16, RStateY);
                            if (manufacturer() == QLatin1String("LIDL Livarno Lux"))
                            {
                                removeItem(RConfigColorCapabilities);
                            }
                            else
                            {
                                addItem(DataTypeString, RStateEffect)->setValue(RStateEffectValues[R_EFFECT_NONE]);
                                addItem(DataTypeUInt16, RStateHue);
                                addItem(DataTypeUInt8, RStateSat);
                            }
                        }
                        break;

@LeoeLeoeL
Copy link

No, I stay on 2.10.4

@Smanar
Copy link
Collaborator

Smanar commented Apr 16, 2021

So the 2.10.4 is still working or it s the first not working version ?
Not possible for you testing the v2.11.0-beta ?

@LeoeLeoeL
Copy link

2.10.4 doesn't work.
I didn't install 2.11.0 beta yet because i didn't find anything useful for me in the changelog but I can try.

@Smanar
Copy link
Collaborator

Smanar commented Apr 17, 2021

Are you able to compile the code to test ?

I realy don't see the problem from the new version, but I don't understand how the field "hue" and "sat" can be in the Json atm.

In the file de_web_plugin.cpp around line 2815

else if (isXmasLightStrip(lightNode))
{
    lightNode->removeItem(RStateAlert);
    lightNode->removeItem(RStateX);
    lightNode->removeItem(RStateY);
}

can you add

        lightNode->addItem(DataTypeUInt16, RStateHue);
        lightNode->addItem(DataTypeUInt8, RStateSat);
        lightNode->addItem(DataTypeString, RStateEffect)->setValue(RStateEffectValues[R_EFFECT_NONE]);

Edit:

I think i have found the problem
Before the manufacture was "_TZE200_s8gkrkxk", and now "LIDL Livarno Lux", so the test is not done same

Can you try instead replacing this line in product match.cpp ,

{ "_TZE200_s8gkrkxk", "TS0601", "LIDL Livarno Lux", "HG06467" }, // Smart LED String Lights (EU)

by

{ "_TZE200_s8gkrkxk", "TS0601", "_TZE200_s8gkrkxk", "HG06467" }, // Smart LED String Lights (EU)

@ebaauw
Copy link
Collaborator

ebaauw commented Apr 17, 2021

This issue is about the regular lightstrip not supporting colorloop. Please open a new issue for the Xmas lightstrip. If you had done so in the first place, I would have seen it right away.

@LeoeLeoeL
Copy link

Same bug as 2.10.4.
For information, Deconz 2.11.0 beta closed 4 times itself after few seconds. Now it works. I hope it's stable.

@jokerigno
Copy link
Author

@ebaauw why did you close this issue?

@ebaauw
Copy link
Collaborator

ebaauw commented Apr 17, 2021

Because the original problem for this issue has been addressed, see above.

@jokerigno
Copy link
Author

Because the original problem for this issue has been addressed, see above.

But the solution broke the component.

Do you want me to open another ticket?

@ebaauw
Copy link
Collaborator

ebaauw commented Apr 17, 2021

Double-checking my LIDL RGB bulb.

{
  "ctmax": 65279,
  "ctmin": 0,
  "etag": "85cb2941a608af15b4729881171c5ca4",
  "hascolor": true,
  "lastannounced": "2021-01-09T01:25:04Z",
  "lastseen": "2021-04-17T12:18Z",
  "manufacturername": "LIDL Livarno Lux",
  "modelid": "HG06106C",
  "name": "LIDL RGB",
  "state": {
    "alert": "none",
    "bri": 254,
    "colormode": "ct",
    "ct": 153,
    "on": true,
    "reachable": true,
    "xy": [
      0,
      0
    ]
  },
  "swversion": "0x00000050",
  "type": "Extended color light",
  "uniqueid": "58:8e:81:ff:fe:e2:cd:a0-01"
}

That's looking good, except I just set the colour using xy. Looking at the websocket I get a notification that colormode is xy, followed by one that it is ct. WTF? The Color Mode attributes 0x0008 is xy and the light doesn't support Advanced Color Mode 0x4001.

Checking with the sniffer, the light reports Current Hue and Current Saturation, even though it doesn't support setting these. The values are bogus, however; when I set xy to [0, 0] (blue), Current Hue reports 0 (red).

@ebaauw ebaauw reopened this Apr 17, 2021
@ebaauw
Copy link
Collaborator

ebaauw commented Apr 17, 2021

F*ck me.

if (lightNode->item(RStateHue) == nullptr && lightNode->item(RStateCt) != nullptr)
{
// OSRAM/LEDVANCE tunable white lights sometimes report hue and saturation, but only ct makes sense
cm = 2;
}

I'll add a check that the light also doesn't expose xy.

@jokerigno
Copy link
Author

Thank you for working on it. Another thing that I noticed and reported in this post.
#4539 (comment)

By default brightness is 219. Everytime I change brightness color is changed to default value. Everytime i change brightness and then color brightness is changed again automatically to 219.

What am I expecting ? That if I set brigthess to 255 and then change color brightness stays at 255. And when I change color and then adjust brightness color stays the same instead of default one.

@ebaauw
Copy link
Collaborator

ebaauw commented Apr 17, 2021

By "color brightness" do you mean colour temperature (the ct attribute)?
I think that's the same issue: the REST API erroneously reports that the device is in Colour Temperature mode, so HA refreshes the colour from ct instead of from xy. Like most non-Hue lights, the LIDL won't update ct when setting xy, so the color appears to be reverted.

@jokerigno
Copy link
Author

Sorry, a comma was required:
Everytime i change brightness and then color, brightness is changed again automatically to 219.

@jokerigno
Copy link
Author

By "color brightness" do you mean colour temperature (the ct attribute)?
I think that's the same issue: the REST API erroneously reports that the device is in Colour Temperature mode, so HA refreshes the colour from ct instead of from xy. Like most non-Hue lights, the LIDL won't update ct when setting xy, so the color appears to be reverted.

In your opinion this can also cause the fact that entity icon color doesn't change based on entity light color?

@ebaauw
Copy link
Collaborator

ebaauw commented Apr 17, 2021

Everytime i change brightness and then color, brightness is changed again automatically to 219.

I'm not seeing that. Are you sure you don't have an automation running to reset the brightness. Do you mean brightness of the actual light or brightness as reported by the API?

In your opinion this can also cause the fact that entity icon color doesn't change based on entity light color?

Yes, the light changes colour alright, but the API reports the last colour temperature. This behaviour should be fixed by my commit above.

@jokerigno
Copy link
Author

No I had just setup default behaviour with light profile with brightness 255 and a specific color. In this case brightness was always reset to 255. Then I removed it and reboot HA. After that default color was warm white with brightness 219 and the issue was still there with value 219 against 255.

@ebaauw
Copy link
Collaborator

ebaauw commented Apr 18, 2021

Please try these changes when the next beta is released. If it still behaves weirdly, please capture a log of the API commands sent and the websocket notifications received. I’m sorry, I have no clue how to do that in HA.

@LeoeLeoeL
Copy link

It seems to work again in HA. Now entity icons are in RGB according the lamp colour.
But phoscon doesn't show the colour bars.

@jokerigno
Copy link
Author

Light status is correct. But the issue with brightness restored to default every time is still present.
@LeoeLeoeL did you noticed it too?

@LeoeLeoeL
Copy link

Brightness remains the same when switched off ; Even using physical switch.

@LeoeLeoeL
Copy link

After 15 minutes without current, when I switch on, lamps keep their brightness but HA reports full brightness even if the correct value should be less.

@jokerigno
Copy link
Author

Please try these changes when the next beta is released. If it still behaves weirdly, please capture a log of the API commands sent and the websocket notifications received. I’m sorry, I have no clue how to do that in HA.

@ebaauw here is the log.

Basically everytime as reported also by @LeoeLeoeL light is reset to default settings (brightness and color)

2021-04-26 12:53:32 WARNING (MainThread) [homeassistant.loader] You are using a custom integration spotcast which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:39 WARNING (MainThread) [homeassistant.loader] You are using a custom integration variable which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:40 WARNING (MainThread) [homeassistant.loader] You are using a custom integration smartir which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:40 WARNING (MainThread) [homeassistant.loader] You are using a custom integration skodaconnect which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:40 WARNING (MainThread) [homeassistant.config] Package r2d2 contains invalid customize
2021-04-26 12:53:40 WARNING (MainThread) [homeassistant.config] Package videosorveglianza contains invalid customize
2021-04-26 12:53:41 WARNING (MainThread) [homeassistant.loader] You are using a custom integration blitzortung which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:41 WARNING (MainThread) [homeassistant.loader] You are using a custom integration garbage_collection which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:41 WARNING (MainThread) [homeassistant.loader] You are using a custom integration circadian_lighting which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:41 WARNING (MainThread) [homeassistant.loader] No 'version' key in the manifest file for custom integration 'circadian_lighting'. As of Home Assistant 2021.6, this integration will no longer be loaded. Please report this to the maintainer of 'circadian_lighting'
2021-04-26 12:53:41 WARNING (MainThread) [homeassistant.loader] You are using a custom integration frigate which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:41 WARNING (MainThread) [homeassistant.loader] You are using a custom integration anniversaries which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:41 WARNING (MainThread) [homeassistant.loader] You are using a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2021-04-26 12:53:45 DEBUG (MainThread) [pydeconz.gateway] Sending "get" "None" to "192.168.2.202 "
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.gateway] HTTP request response: {'config': {'UTC': '2021-04-26T10:53:46',
            'apiversion': '1.16.0',
            'backup': {'errorcode': 0, 'status': 'idle'},
            'bridgeid': '00212EFFFF04F4C4',
            'datastoreversion': '93',
            'devicename': 'ConBee II',
            'dhcp': True,
            'disablePermitJoinAutoOff': False,
            'factorynew': False,
            'fwversion': '0x264a0700',
            'gateway': '192.168.2.1',
            'internetservices': {'internet': 'connected',
                                 'remoteaccess': 'disconnected',
                                 'swupdate': 'connected',
                                 'time': 'connected'},
            'ipaddress': '192.168.2.202',
            'lightlastseeninterval': 60,
            'linkbutton': False,
            'localtime': '2021-04-26T12:53:46',
            'mac': '02:42:c0:a8:02:ca',
            'modelid': 'deCONZ',
            'name': 'Phoscon-GW',
            'netmask': '255.255.255.0',
            'networkopenduration': 180,
            'panid': 48603,
            'portalconnection': 'disconnected',
            'portalservices': False,
            'portalstate': {'communication': 'disconnected',
                            'incoming': False,
                            'outgoing': False,
                            'signedon': False},
            'proxyaddress': 'none',
            'proxyport': 0,
            'replacesbridgeid': None,
            'rfconnected': True,
            'starterkitid': '',
            'swupdate': {'checkforupdate': False,
                         'devicetypes': {'bridge': False,
                                         'lights': [],
                                         'sensors': []},
                         'notify': False,
                         'text': '',
                         'updatestate': 0,
                         'url': ''},
            'swupdate2': {'autoinstall': {'on': False, 'updatetime': ''},
                          'bridge': {'lastinstall': '2021-04-23T16:26:02',
                                     'state': 'noupdates'},
                          'checkforupdate': False,
                          'lastchange': '',
                          'state': 'noupdates'},
            'swversion': '2.11.1',
            'timeformat': '24h',
            'timezone': 'Europe/Rome',
            'uuid': 'e7565c9a-402e-45ef-87bd-4eb1e5e5eccc',
            'websocketnotifyall': True,
            'websocketport': 443,
            'whitelist': {'02F09B29EA': {'create date': '2021-02-11T09:41:39',
                                         'last use date': '2021-02-11T09:42:57',
                                         'name': 'Phoscon#B1920x947'},
                          '03DAF51B8F': {'create date': '2020-10-08T21:29:56',
                                         'last use date': '2020-10-10T11:52:49',
                                         'name': 'Phoscon#B360x560'},
                          '04DB1C3977': {'create date': '2020-11-16T00:26:17',
                                         'last use date': '2020-11-16T06:59:57',
                                         'name': 'Phoscon#B375x553'},
                          '0573A2486D': {'create date': '2020-08-12T17:56:37',
                                         'last use date': '2020-08-13T16:17:45',
                                         'name': 'Phoscon#B360x560'},
                          '064A94B74D': {'create date': '2020-01-19T09:23:47',
                                         'last use date': '2020-01-19T09:23:52',
                                         'name': 'Phoscon#B360x266'},
                          '06DC5DB1B2': {'create date': '2020-12-29T14:54:32',
                                         'last use date': '2020-12-30T15:14:59',
                                         'name': 'Phoscon#B1920x890'},
                          '09107DA986': {'create date': '2021-03-14T15:58:39',
                                         'last use date': '2021-03-15T19:19:11',
                                         'name': 'Phoscon#B1920x947'},
                          '099A50E29C': {'create date': '2020-12-28T21:33:59',
                                         'last use date': '2020-12-28T21:52:39',
                                         'name': 'Phoscon#B1920x890'},
                          '09CD48D306': {'create date': '2019-12-24T12:01:01',
                                         'last use date': '2020-12-28T21:34:30',
                                         'name': 'Home Assistant'},
                          '0AD58F903F': {'create date': '2020-08-01T09:02:43',
                                         'last use date': '2020-08-02T09:08:24',
                                         'name': 'Phoscon#B360x560'},
                          '0C352E7A63': {'create date': '2020-12-22T21:29:51',
                                         'last use date': '2020-12-22T22:42:32',
                                         'name': 'Phoscon#B375x629'},
                          '0D23099C92': {'create date': '2019-12-30T09:55:27',
                                         'last use date': '2019-12-30T13:28:09',
                                         'name': 'Phoscon#B360x370'},
                          '0E4638AF7F': {'create date': '2021-02-26T16:46:17',
                                         'last use date': '2021-02-26T19:15:50',
                                         'name': 'Phoscon#B1920x976'},
                          '1084FA6D48': {'create date': '2020-05-26T10:28:22',
                                         'last use date': '2020-05-26T10:28:25',
                                         'name': 'Phoscon#B1664x882'},
                          '142FFAD2E8': {'create date': '2020-05-29T20:09:03',
                                         'last use date': '2020-05-30T12:35:31',
                                         'name': 'pydeconz'},
                          '14A874690A': {'create date': '2021-03-14T15:54:18',
                                         'last use date': '2021-03-14T16:12:00',
                                         'name': 'Phoscon#B375x629'},
                          '16C2B9B175': {'create date': '2021-03-08T14:04:52',
                                         'last use date': '2021-03-08T14:13:00',
                                         'name': 'Phoscon#B1920x948'},
                          '16C4BC05B6': {'create date': '2021-03-02T08:04:15',
                                         'last use date': '2021-03-02T16:57:56',
                                         'name': 'Phoscon#B1920x947'},
                          '17D725B614': {'create date': '2021-02-27T21:54:55',
                                         'last use date': '2021-02-27T21:59:26',
                                         'name': 'Phoscon#B1920x947'},
                          '2387282A83': {'create date': '2020-02-03T15:15:44',
                                         'last use date': '2020-02-03T16:11:05',
                                         'name': 'Phoscon#B1877x986'},
                          '2388B7C122': {'create date': '2020-07-24T08:34:45',
                                         'last use date': '2020-07-24T13:03:28',
                                         'name': 'Phoscon#B1920x947'},
                          '243D357C02': {'create date': '2020-12-03T09:59:21',
                                         'last use date': '2020-12-03T14:26:39',
                                         'name': 'Phoscon#B1920x947'},
                          '257F70D743': {'create date': '2020-07-31T12:32:54',
                                         'last use date': '2020-07-31T20:23:13',
                                         'name': 'Phoscon#B1920x898'},
                          '2588FFB916': {'create date': '2020-01-26T00:06:42',
                                         'last use date': '2020-01-26T00:06:50',
                                         'name': 'Phoscon#B1856x873'},
                          '270E7C7D13': {'create date': '2019-12-30T08:23:28',
                                         'last use date': '2019-12-30T19:39:49',
                                         'name': 'Phoscon#B1110x625'},
                          '2758445616': {'create date': '2019-12-28T10:40:10',
                                         'last use date': '2019-12-28T13:26:30',
                                         'name': 'Phoscon#B360x370'},
                          '27F699512C': {'create date': '2020-12-28T21:41:18',
                                         'last use date': '2020-12-29T15:48:19',
                                         'name': 'pydeconz'},
                          '2802B27EC7': {'create date': '2020-05-26T07:30:46',
                                         'last use date': '2020-05-26T07:31:06',
                                         'name': 'Phoscon#B1664x882'},
                          '286FE7412F': {'create date': '2020-10-07T07:44:08',
                                         'last use date': '2020-10-08T17:36:34',
                                         'name': 'Phoscon#B360x560'},
                          '2A08B0B155': {'create date': '2020-12-29T15:51:19',
                                         'last use date': '2021-03-25T23:03:25',
                                         'name': 'pydeconz'},
                          '2AED8E59F7': {'create date': '2021-03-30T17:23:31',
                                         'last use date': '2021-04-01T11:52:38',
                                         'name': 'Phoscon#B375x629'},
                          '2CFB61B914': {'create date': '2021-03-23T22:40:36',
                                         'last use date': '2021-03-23T23:02:11',
                                         'name': 'Phoscon#B1920x979'},
                          '2ED83FA13F': {'create date': '2021-03-03T13:18:07',
                                         'last use date': '2021-03-03T17:51:01',
                                         'name': 'Phoscon#B375x629'},
                          '324D2AA4BA': {'create date': '2020-01-01T22:08:48',
                                         'last use date': '2020-01-01T23:17:26',
                                         'name': 'Phoscon#B1877x1041'},
                          '32E8FF8036': {'create date': '2020-01-01T20:57:54',
                                         'last use date': '2020-01-01T23:34:00',
                                         'name': 'Phoscon#B360x370'},
                          '33340843D7': {'create date': '2020-12-22T18:54:23',
                                         'last use date': '2020-12-22T19:39:14',
                                         'name': 'Phoscon#B375x629'},
                          '33D7225603': {'create date': '2021-02-28T15:34:23',
                                         'last use date': '2021-02-28T15:57:58',
                                         'name': 'Phoscon#B1920x947'},
                          '36DEAE9AE6': {'create date': '2020-07-23T15:00:02',
                                         'last use date': '2020-07-23T21:36:25',
                                         'name': 'Phoscon#B1366x635'},
                          '377FE0BCC1': {'create date': '2021-02-24T21:12:29',
                                         'last use date': '2021-02-24T21:20:55',
                                         'name': 'Phoscon#B375x629'},
                          '3A74931B85': {'create date': '2021-04-24T12:23:39',
                                         'last use date': '2021-04-25T20:38:22',
                                         'name': 'Phoscon#B1366x667'},
                          '3EDD4BB931': {'create date': '2021-03-30T09:47:52',
                                         'last use date': '2021-03-30T13:33:10',
                                         'name': 'Phoscon#B1920x979'},
                          '4171700133': {'create date': '2020-05-29T20:05:50',
                                         'last use date': '2020-05-29T20:09:22',
                                         'name': 'Phoscon#B1920x898'},
                          '4B5E7247EA': {'create date': '2020-03-10T18:46:57',
                                         'last use date': '2020-03-12T05:55:59',
                                         'name': 'Phoscon#B2400x1171'},
                          '4C327F57CE': {'create date': '2019-12-24T12:04:50',
                                         'last use date': '2019-12-24T12:42:06',
                                         'name': 'Phoscon#B360x560'},
                          '4ED5C0B267': {'create date': '2021-01-04T12:03:16',
                                         'last use date': '2021-01-04T19:12:03',
                                         'name': 'Phoscon#B375x629'},
                          '543A74931B': {'create date': '2021-01-30T14:35:47',
                                         'last use date': '2021-01-30T14:42:04',
                                         'name': 'Phoscon#B1920x947'},
                          '560B1BDDC6': {'create date': '2020-01-01T14:56:44',
                                         'last use date': '2020-01-01T15:37:28',
                                         'name': 'Phoscon#B360x370'},
                          '57815C6C64': {'create date': '2021-03-24T08:54:33',
                                         'last use date': '2021-03-24T10:21:04',
                                         'name': 'Phoscon#B1920x979'},
                          '57BEAFCD73': {'create date': '2020-01-24T23:43:02',
                                         'last use date': '2020-01-24T23:44:40',
                                         'name': 'Phoscon#B360x616'},
                          '5868A27FF4': {'create date': '2019-12-31T08:54:07',
                                         'last use date': '2019-12-31T12:41:05',
                                         'name': 'Phoscon#B360x370'},
                          '5AA7CF9F0E': {'create date': '2020-12-27T19:22:43',
                                         'last use date': '2020-12-27T19:28:21',
                                         'name': 'Phoscon#B375x629'},
                          '5B79E38E99': {'create date': '2020-05-26T12:41:59',
                                         'last use date': '2020-05-26T12:42:24',
                                         'name': 'Phoscon#B2133x1052'},
                          '5E33517B64': {'create date': '2019-12-31T10:14:59',
                                         'last use date': '2019-12-31T10:15:02',
                                         'name': 'Phoscon#B1664x937'},
                          '606138438C': {'create date': '2020-09-25T10:08:50',
                                         'last use date': '2020-09-25T15:35:15',
                                         'name': 'Phoscon#B1920x947'},
                          '62FF016877': {'create date': '2020-08-12T10:42:36',
                                         'last use date': '2020-08-13T21:07:49',
                                         'name': 'Phoscon#B1920x947'},
                          '634B7EE273': {'create date': '2021-04-22T13:10:35',
                                         'last use date': '2021-04-22T14:38:12',
                                         'name': 'Phoscon#B1920x979'},
                          '644B5F3D72': {'create date': '2021-01-03T22:19:32',
                                         'last use date': '2021-01-03T23:01:42',
                                         'name': 'Phoscon#B1920x947'},
                          '6D344B6F47': {'create date': '2020-12-05T17:08:24',
                                         'last use date': '2020-12-05T17:24:39',
                                         'name': 'Phoscon#B375x553'},
                          '6FEBB44E98': {'create date': '2020-12-04T17:27:17',
                                         'last use date': '2020-12-04T17:56:24',
                                         'name': 'Phoscon#B375x553'},
                          '6FF3BAF7A7': {'create date': '2019-12-31T00:03:30',
                                         'last use date': '2019-12-31T07:48:17',
                                         'name': 'Phoscon#B360x370'},
                          '77C6BAFF1B': {'create date': '2021-03-24T08:20:51',
                                         'last use date': '2021-03-24T09:00:27',
                                         'name': 'Phoscon#B1920x979'},
                          '7A79971660': {'create date': '2021-01-14T03:34:46',
                                         'last use date': '2021-01-14T08:15:54',
                                         'name': 'Phoscon#B1920x947'},
                          '814D0BC4F0': {'create date': '2020-12-29T14:50:11',
                                         'last use date': '2020-12-29T18:53:57',
                                         'name': 'Phoscon#B375x629'},
                          '8788EA7BA1': {'create date': '2020-05-26T16:31:20',
                                         'last use date': '2020-05-26T20:05:29',
                                         'name': 'Phoscon#B2133x1052'},
                          '8C715E3351': {'create date': '2019-12-24T12:02:51',
                                         'last use date': '2019-12-24T12:02:51',
                                         'name': 'Phoscon#B360x616'},
                          '8D535371CB': {'create date': '2020-09-17T09:07:14',
                                         'last use date': '2020-09-17T09:14:30',
                                         'name': 'Phoscon#B1920x947'},
                          '945C137F6C': {'create date': '2020-12-23T19:01:27',
                                         'last use date': '2020-12-23T22:23:08',
                                         'name': 'Phoscon#B375x629'},
                          '961A28A10A': {'create date': '2019-12-31T14:00:09',
                                         'last use date': '2019-12-31T14:10:52',
                                         'name': 'Phoscon#B360x370'},
                          '96DAA2F2CB': {'create date': '2021-03-24T09:51:50',
                                         'last use date': '2021-04-26T10:53:46',
                                         'name': 'pydeconz'},
                          '9CF9BA5D7E': {'create date': '2020-01-19T17:00:56',
                                         'last use date': '2020-01-19T17:00:57',
                                         'name': 'Phoscon#B1856x937'},
                          'A20DCFD5E2': {'create date': '2019-12-28T12:34:22',
                                         'last use date': '2019-12-28T19:13:02',
                                         'name': 'Phoscon#B1664x937'},
                          'A228D24E67': {'create date': '2020-06-15T17:11:25',
                                         'last use date': '2020-06-15T17:14:58',
                                         'name': 'Phoscon#B1920x947'},
                          'A563F09146': {'create date': '2019-12-28T19:14:07',
                                         'last use date': '2019-12-28T21:00:09',
                                         'name': 'Phoscon#B1664x937'},
                          'A799E88C8D': {'create date': '2020-01-14T13:58:42',
                                         'last use date': '2020-01-14T13:58:45',
                                         'name': 'Phoscon#B360x370'},
                          'AA57890A45': {'create date': '2020-01-01T21:02:05',
                                         'last use date': '2020-01-01T21:49:43',
                                         'name': 'Phoscon#B1877x1041'},
                          'B0ED22AB00': {'create date': '2020-03-10T18:37:30',
                                         'last use date': '2020-03-10T20:08:16',
                                         'name': 'Phoscon#B2143x1171'},
                          'B9940BEC95': {'create date': '2020-07-30T21:09:19',
                                         'last use date': '2020-07-30T21:47:21',
                                         'name': 'Phoscon#B1920x947'},
                          'BACA0CF2AA': {'create date': '2020-12-12T16:24:18',
                                         'last use date': '2020-12-12T17:35:14',
                                         'name': 'Phoscon#B375x553'},
                          'BC58F1EE01': {'create date': '2020-12-28T15:21:11',
                                         'last use date': '2020-12-28T15:26:04',
                                         'name': 'Phoscon#B1920x947'},
                          'BD028C25B5': {'create date': '2020-09-18T05:00:12',
                                         'last use date': '2020-09-18T05:06:24',
                                         'name': 'Phoscon#B360x560'},
                          'BD2356E49D': {'create date': '2021-01-01T19:33:53',
                                         'last use date': '2021-01-01T21:03:41',
                                         'name': 'Phoscon#B375x629'},
                          'BF3CF53FA4': {'create date': '2021-02-20T21:40:57',
                                         'last use date': '2021-02-20T21:43:29',
                                         'name': 'Phoscon#B375x629'},
                          'C0403540ED': {'create date': '2020-09-17T13:32:45',
                                         'last use date': '2020-09-17T13:44:16',
                                         'name': 'Phoscon#B1920x947'},
                          'C04FFC16C4': {'create date': '2021-03-03T13:20:07',
                                         'last use date': '2021-03-03T13:26:39',
                                         'name': 'Phoscon#B1920x947'},
                          'C56F92CB5C': {'create date': '2020-06-15T17:12:34',
                                         'last use date': '2020-06-20T10:30:39',
                                         'name': 'Phoscon#B1920x947'},
                          'C7E1E44D63': {'create date': '2021-04-24T12:02:04',
                                         'last use date': '2021-04-24T14:44:06',
                                         'name': 'Phoscon#B375x629'},
                          'CD037FBCBC': {'create date': '2020-12-23T07:49:31',
                                         'last use date': '2020-12-23T08:46:49',
                                         'name': 'Phoscon#B375x629'},
                          'CEDA297F12': {'create date': '2020-04-13T09:26:55',
                                         'last use date': '2020-04-13T11:08:59',
                                         'name': 'Phoscon#B1664x872'},
                          'CFBA616D1D': {'create date': '2020-05-29T20:06:17',
                                         'last use date': '2020-05-29T20:06:17',
                                         'name': 'pydeconz'},
                          'D060F441A1': {'create date': '2020-03-01T09:07:52',
                                         'last use date': '2020-03-01T17:36:10',
                                         'name': 'Phoscon#B1262x694'},
                          'D5827522DB': {'create date': '2020-07-25T16:05:17',
                                         'last use date': '2020-07-26T22:41:30',
                                         'name': 'Phoscon#B1920x947'},
                          'DC74A22FD7': {'create date': '2019-12-28T13:24:21',
                                         'last use date': '2019-12-28T14:16:22',
                                         'name': 'Phoscon#B916x1524'},
                          'E7F9C3A333': {'create date': '2020-12-28T21:13:58',
                                         'last use date': '2020-12-28T21:29:05',
                                         'name': 'Phoscon#B375x629'},
                          'E8725F9876': {'create date': '2019-12-29T08:00:05',
                                         'last use date': '2019-12-29T08:00:09',
                                         'name': 'Phoscon#B360x560'},
                          'E8A02AED11': {'create date': '2021-01-03T23:59:05',
                                         'last use date': '2021-01-03T23:59:09',
                                         'name': 'Phoscon#B1920x947'},
                          'EA7BA15437': {'create date': '2020-05-29T11:44:40',
                                         'last use date': '2020-05-29T11:44:44',
                                         'name': 'Phoscon#B1920x898'},
                          'EB4133D999': {'create date': '2021-03-21T17:08:43',
                                         'last use date': '2021-03-21T17:08:45',
                                         'name': 'Phoscon#B1920x979'},
                          'F2FDFC3AF3': {'create date': '2021-02-25T22:43:36',
                                         'last use date': '2021-02-25T23:10:02',
                                         'name': 'Phoscon#B1920x947'},
                          'F37CA421C0': {'create date': '2021-03-09T21:28:06',
                                         'last use date': '2021-03-11T10:25:25',
                                         'name': 'Phoscon#B375x629'},
                          'F3C8D7422D': {'create date': '2020-01-11T12:39:01',
                                         'last use date': '2020-01-11T12:39:05',
                                         'name': 'Phoscon#B1453x640'},
                          'F5A6E0B04F': {'create date': '2020-08-01T13:26:29',
                                         'last use date': '2020-08-01T17:39:12',
                                         'name': 'Phoscon#B1920x947'},
                          'F6FEFCAC63': {'create date': '2019-12-29T00:07:51',
                                         'last use date': '2019-12-29T08:43:17',
                                         'name': 'Phoscon#B1110x561'},
                          'F8C92B7071': {'create date': '2021-04-19T07:07:13',
                                         'last use date': '2021-04-19T07:21:28',
                                         'name': 'Phoscon#B1920x979'},
                          'FE5865178D': {'create date': '2020-12-29T13:31:13',
                                         'last use date': '2020-12-29T13:31:17',
                                         'name': 'Phoscon#B1920x947'}},
            'zigbeechannel': 15},
 'groups': {'10': {'action': {'alert': 'none',
                              'bri': 127,
                              'colormode': 'hs',
                              'ct': 0,
                              'effect': 'none',
                              'hue': 0,
                              'on': False,
                              'sat': 127,
                              'scene': None,
                              'xy': [0, 0]},
                   'devicemembership': [],
                   'etag': '5e6225939810cf7a93b59ed8f63fa169',
                   'id': '10',
                   'lights': ['3'],
                   'name': 'Soggiorno',
                   'scenes': [],
                   'state': {'all_on': False, 'any_on': False},
                   'type': 'LightGroup'},
            '11': {'action': {'alert': 'none',
                              'bri': 127,
                              'colormode': 'hs',
                              'ct': 0,
                              'effect': 'none',
                              'hue': 0,
                              'on': False,
                              'sat': 127,
                              'scene': None,
                              'xy': [0, 0]},
                   'devicemembership': [],
                   'etag': 'f687e2d95a8f8ead63c068abfbaed1a5',
                   'id': '11',
                   'lights': ['4', '5'],
                   'name': 'Camera di Adele',
                   'scenes': [],
                   'state': {'all_on': False, 'any_on': False},
                   'type': 'LightGroup'},
            '13': {'action': {'alert': 'none',
                              'bri': 127,
                              'colormode': 'hs',
                              'ct': 0,
                              'effect': 'none',
                              'hue': 0,
                              'on': False,
                              'sat': 127,
                              'scene': None,
                              'xy': [0, 0]},
                   'devicemembership': [],
                   'etag': '5af7d69498515206f5fda7a26618c0cc',
                   'id': '13',
                   'lights': ['11'],
                   'name': 'Bagno Secondario',
                   'scenes': [],
                   'state': {'all_on': False, 'any_on': False},
                   'type': 'LightGroup'},
            '4': {'action': {'alert': 'none',
                             'bri': 127,
                             'colormode': 'hs',
                             'ct': 0,
                             'effect': 'none',
                             'hue': 0,
                             'on': False,
                             'sat': 127,
                             'scene': None,
                             'xy': [0, 0]},
                  'devicemembership': [],
                  'etag': '1489a54878be811e15049f2ef2fd1ee0',
                  'id': '4',
                  'lights': ['9', '10'],
                  'name': 'Cucina',
                  'scenes': [{'id': '1',
                              'lightcount': 2,
                              'name': 'Sotto Pensile',
                              'transitiontime': 10}],
                  'state': {'all_on': False, 'any_on': False},
                  'type': 'LightGroup'},
            '46406': {'action': {'alert': 'none',
                                 'bri': 127,
                                 'colormode': 'hs',
                                 'ct': 0,
                                 'effect': 'none',
                                 'hue': 0,
                                 'on': False,
                                 'sat': 127,
                                 'scene': None,
                                 'xy': [0, 0]},
                      'devicemembership': ['35'],
                      'etag': 'bfea8a8e53056e7aeb75ea066885b5f7',
                      'id': '46406',
                      'lights': [],
                      'name': 'TRADFRI remote control 35',
                      'scenes': [],
                      'state': {'all_on': False, 'any_on': False},
                      'type': 'LightGroup',
                      'uniqueid': '00:0b:57:ff:fe:9f:f7:93'},
            '5': {'action': {'alert': 'none',
                             'bri': 127,
                             'colormode': 'hs',
                             'ct': 0,
                             'effect': 'none',
                             'hue': 0,
                             'on': False,
                             'sat': 127,
                             'scene': None,
                             'xy': [0, 0]},
                  'devicemembership': [],
                  'etag': 'a66ec7d0b0a7bede6655c62cf01fbb9f',
                  'id': '5',
                  'lights': ['9'],
                  'name': 'FLS-PP3 helper1 for group 4',
                  'scenes': [],
                  'state': {'all_on': False, 'any_on': False},
                  'type': 'Luminaire',
                  'uniqueid': '10:00:00:04'},
            '6': {'action': {'alert': 'none',
                             'bri': 127,
                             'colormode': 'hs',
                             'ct': 0,
                             'effect': 'none',
                             'hue': 0,
                             'on': False,
                             'sat': 127,
                             'scene': None,
                             'xy': [0, 0]},
                  'devicemembership': [],
                  'etag': '25b25f35c9677664541b42ea8823cade',
                  'id': '6',
                  'lights': ['10'],
                  'name': 'FLS-PP3 helper2 for group 4',
                  'scenes': [],
                  'state': {'all_on': False, 'any_on': False},
                  'type': 'Luminaire',
                  'uniqueid': '20:00:00:04'},
            '8': {'action': {'alert': 'none',
                             'bri': 127,
                             'colormode': 'hs',
                             'ct': 0,
                             'effect': 'none',
                             'hue': 0,
                             'on': False,
                             'sat': 127,
                             'scene': None,
                             'xy': [0, 0]},
                  'devicemembership': ['37'],
                  'etag': '423b76776d8b97324cb34729300ad4ec',
                  'id': '8',
                  'lights': [],
                  'name': 'RWL021 37',
                  'scenes': [],
                  'state': {'all_on': False, 'any_on': False},
                  'type': 'LightGroup',
                  'uniqueid': '00:17:88:01:02:c0:df:41'},
            '9': {'action': {'alert': 'none',
                             'bri': 127,
                             'colormode': 'hs',
                             'ct': 0,
                             'effect': 'none',
                             'hue': 0,
                             'on': False,
                             'sat': 127,
                             'scene': None,
                             'xy': [0, 0]},
                  'devicemembership': [],
                  'etag': '5b6a549f420d959dfc255f8a96e61927',
                  'id': '9',
                  'lights': ['1', '2'],
                  'name': 'Studio',
                  'scenes': [],
                  'state': {'all_on': False, 'any_on': True},
                  'type': 'LightGroup'}},
 'lights': {'1': {'colorcapabilities': 31,
                  'ctmax': 500,
                  'ctmin': 153,
                  'etag': 'fe86c89cbe787040302af83c898fa9ae',
                  'hascolor': True,
                  'lastannounced': '2021-04-07T18:21:42Z',
                  'lastseen': '2021-04-26T10:53Z',
                  'manufacturername': 'Philips',
                  'modelid': 'LCT012',
                  'name': 'Jack Lamp',
                  'state': {'alert': 'none',
                            'bri': 254,
                            'colormode': 'xy',
                            'ct': 153,
                            'effect': 'none',
                            'hue': 0,
                            'on': False,
                            'reachable': True,
                            'sat': 254,
                            'xy': [0.6915, 0.3083]},
                  'swversion': '1.46.13_r26312',
                  'type': 'Extended color light',
                  'uniqueid': '00:17:88:01:03:88:36:c7-0b'},
            '10': {'etag': '02002836e08e90af487758464209b550',
                   'hascolor': False,
                   'lastannounced': '2021-04-07T18:21:40Z',
                   'lastseen': '2021-04-26T10:53Z',
                   'manufacturername': 'dresden elektronik',
                   'modelid': 'FLS-PP3 White',
                   'name': 'Dimmable light 10',
                   'powerup': 7,
                   'state': {'alert': 'none',
                             'bri': 1,
                             'on': False,
                             'reachable': True},
                   'swversion': '0214.201000EB',
                   'type': 'Dimmable light',
                   'uniqueid': '00:21:2e:ff:ff:05:8f:ea-0b'},
            '11': {'ctmax': 65279,
                   'ctmin': 0,
                   'etag': '17c70cb1d3a217c6b6aaf6d15c9d637e',
                   'hascolor': True,
                   'lastannounced': '2021-03-24T09:33:02Z',
                   'lastseen': '2021-04-26T10:52Z',
                   'manufacturername': 'LIDL Livarno Lux',
                   'modelid': None,
                   'name': 'Striscia Led Bagno Secondario',
                   'state': {'alert': 'none',
                             'bri': 254,
                             'colormode': 'xy',
                             'ct': 153,
                             'on': False,
                             'reachable': True,
                             'xy': [0.488, 0.316]},
                   'swversion': None,
                   'type': 'Extended color light',
                   'uniqueid': '84:2e:14:ff:fe:2c:43:89-01'},
            '13': {'etag': '34d2017e1e6a4806f7920dc58b76a0b3',
                   'hascolor': False,
                   'lastannounced': None,
                   'lastseen': '2021-04-26T10:50Z',
                   'manufacturername': 'LIDL Silvercrest',
                   'modelid': 'HG06337',
                   'name': 'Umidificatore',
                   'state': {'alert': 'none', 'on': False, 'reachable': True},
                   'swversion': '66',
                   'type': 'On/Off plug-in unit',
                   'uniqueid': 'ec:1b:bd:ff:fe:ac:1f:1a-0b'},
            '2': {'colorcapabilities': 31,
                  'ctmax': 500,
                  'ctmin': 153,
                  'etag': '9f90cd78049232fd43773049c2567a82',
                  'hascolor': True,
                  'lastannounced': '2021-04-07T18:21:41Z',
                  'lastseen': '2021-04-26T10:53Z',
                  'manufacturername': 'Philips',
                  'modelid': 'LCT007',
                  'name': 'Lampada Scrivania',
                  'state': {'alert': 'none',
                            'bri': 219,
                            'colormode': 'xy',
                            'ct': 334,
                            'effect': 'none',
                            'hue': 15436,
                            'on': True,
                            'reachable': True,
                            'sat': 109,
                            'xy': [0.438, 0.404]},
                  'swversion': '5.127.1.26420',
                  'type': 'Extended color light',
                  'uniqueid': '00:17:88:01:10:2e:84:13-0b'},
            '3': {'colorcapabilities': 31,
                  'ctmax': 500,
                  'ctmin': 153,
                  'etag': 'e84e3e63f2d491fb026b361db9bdbb7c',
                  'hascolor': True,
                  'lastannounced': '2021-04-17T09:33:29Z',
                  'lastseen': '2021-04-26T10:53Z',
                  'manufacturername': 'Philips',
                  'modelid': 'LCT010',
                  'name': 'Piantana',
                  'state': {'alert': 'none',
                            'bri': 128,
                            'colormode': 'xy',
                            'ct': 334,
                            'effect': 'none',
                            'hue': 8644,
                            'on': False,
                            'reachable': True,
                            'sat': 108,
                            'xy': [0.4378, 0.4039]},
                  'swversion': '1.46.13_r26312',
                  'type': 'Extended color light',
                  'uniqueid': '00:17:88:01:02:f6:68:c1-0b'},
            '4': {'colorcapabilities': 31,
                  'ctmax': 500,
                  'ctmin': 153,
                  'etag': 'f04b0f0e91b4ead98f981184321319c0',
                  'hascolor': True,
                  'lastannounced': '2021-04-10T13:35:29Z',
                  'lastseen': '2021-04-26T10:53Z',
                  'manufacturername': 'Philips',
                  'modelid': 'LCT007',
                  'name': 'Lampada SimonaSalvo',
                  'state': {'alert': 'none',
                            'bri': 128,
                            'colormode': 'xy',
                            'ct': 500,
                            'effect': 'none',
                            'hue': 9776,
                            'on': False,
                            'reachable': True,
                            'sat': 243,
                            'xy': [0.565, 0.396]},
                  'swversion': '5.127.1.26420',
                  'type': 'Extended color light',
                  'uniqueid': '00:17:88:01:10:2a:a0:86-0b'},
            '5': {'colorcapabilities': 31,
                  'ctmax': 500,
                  'ctmin': 153,
                  'etag': '10b5dcb80d04821013e1eca3266fadfd',
                  'hascolor': True,
                  'lastannounced': '2021-04-25T21:40:47Z',
                  'lastseen': '2021-04-26T10:53Z',
                  'manufacturername': 'Philips',
                  'modelid': 'LCT012',
                  'name': 'Lampada Fiore',
                  'state': {'alert': 'none',
                            'bri': 128,
                            'colormode': 'xy',
                            'ct': 325,
                            'effect': 'none',
                            'hue': 12735,
                            'on': False,
                            'reachable': True,
                            'sat': 254,
                            'xy': [0.4321, 0.5032]},
                  'swversion': '1.46.13_r26312',
                  'type': 'Extended color light',
                  'uniqueid': '00:17:88:01:03:b8:c2:aa-0b'},
            '6': {'etag': '267734b7e4935215e77491a896cd0410',
                  'hascolor': False,
                  'lastannounced': None,
                  'lastseen': '2021-04-26T10:51Z',
                  'manufacturername': 'dresden elektronik',
                  'modelid': 'RaspBee',
                  'name': 'Configuration tool 6',
                  'state': {'reachable': True},
                  'swversion': '0x264a0700',
                  'type': 'Configuration tool',
                  'uniqueid': '00:21:2e:ff:ff:04:f4:c4-01'},
            '9': {'colorcapabilities': 31,
                  'ctmax': 500,
                  'ctmin': 153,
                  'etag': '51564c31bb9307ebe56038965456ae50',
                  'hascolor': True,
                  'lastannounced': '2021-04-07T18:21:40Z',
                  'lastseen': '2021-04-26T10:53Z',
                  'manufacturername': 'dresden elektronik',
                  'modelid': 'FLS-PP3',
                  'name': 'Striscia Led Cucina',
                  'powerup': 7,
                  'state': {'alert': 'none',
                            'bri': 205,
                            'colormode': 'xy',
                            'ct': 457,
                            'effect': 'none',
                            'hue': 6698,
                            'on': False,
                            'reachable': True,
                            'sat': 254,
                            'xy': [0.528, 0.446]},
                  'swversion': '0214.201000EB',
                  'type': 'Extended color light',
                  'uniqueid': '00:21:2e:ff:ff:05:8f:ea-0a'}},
 'resourcelinks': {'1': {'classid': 3001,
                         'description': 'Resourcelink for switch rule',
                         'links': ['/groups/4',
                                   '/sensors/00:17:88:01:02:c0:df:41-02-fc00',
                                   '/rules/1'],
                         'name': 'opt_on',
                         'owner': '77C6BAFF1B',
                         'recycle': False,
                         'type': 'Link'},
                   '2': {'classid': 3002,
                         'description': 'Resourcelink for switch rule',
                         'links': ['/groups/4',
                                   '/sensors/00:17:88:01:02:c0:df:41-02-fc00',
                                   '/rules/2'],
                         'name': 'opt_off',
                         'owner': '77C6BAFF1B',
                         'recycle': False,
                         'type': 'Link'},
                   '3': {'classid': 3010,
                         'description': 'Resourcelink for switch rule',
                         'links': ['/groups/4',
                                   '/sensors/00:17:88:01:02:c0:df:41-02-fc00',
                                   '/rules/3',
                                   '/rules/4',
                                   '/rules/5'],
                         'name': 'opt_pushDimUp',
                         'owner': '77C6BAFF1B',
                         'recycle': False,
                         'type': 'Link'},
                   '4': {'classid': 3011,
                         'description': 'Resourcelink for switch rule',
                         'links': ['/groups/4',
                                   '/sensors/00:17:88:01:02:c0:df:41-02-fc00',
                                   '/rules/6',
                                   '/rules/7',
                                   '/rules/8'],
                         'name': 'opt_pushDimDown',
                         'owner': '77C6BAFF1B',
                         'recycle': False,
                         'type': 'Link'}},
 'rules': {'1': {'actions': [{'address': '/groups/4/action',
                              'body': {'on': True},
                              'method': 'PUT'}],
                 'conditions': [{'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/buttonevent',
                                 'operator': 'eq',
                                 'value': '1002'},
                                {'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/lastupdated',
                                 'operator': 'dx'}],
                 'created': '2021-03-24T08:26:42',
                 'etag': 'a76977154c0cce2723b144a03484316b',
                 'lasttriggered': '2021-04-26T05:25:56',
                 'name': 'Rule ON',
                 'owner': '77C6BAFF1B',
                 'periodic': 0,
                 'status': 'enabled',
                 'timestriggered': 1},
           '2': {'actions': [{'address': '/groups/4/action',
                              'body': {'on': False},
                              'method': 'PUT'}],
                 'conditions': [{'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/buttonevent',
                                 'operator': 'eq',
                                 'value': '4002'},
                                {'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/lastupdated',
                                 'operator': 'dx'}],
                 'created': '2021-03-24T08:26:51',
                 'etag': '58186acc5bd905eaf0554abe318b5815',
                 'lasttriggered': '2021-04-26T05:26:03',
                 'name': 'Rule OFF',
                 'owner': '77C6BAFF1B',
                 'periodic': 0,
                 'status': 'enabled',
                 'timestriggered': 1},
           '3': {'actions': [{'address': '/groups/4/action',
                              'body': {'on': True},
                              'method': 'PUT'}],
                 'conditions': [{'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/buttonevent',
                                 'operator': 'eq',
                                 'value': '2002'},
                                {'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/lastupdated',
                                 'operator': 'dx'}],
                 'created': '2021-03-24T08:27:12',
                 'etag': '5d94d1991c07b69d8253948f44ccbf7b',
                 'lasttriggered': 'none',
                 'name': 'Rule PUSHDIMUP_ON',
                 'owner': '77C6BAFF1B',
                 'periodic': 0,
                 'status': 'enabled',
                 'timestriggered': 0},
           '4': {'actions': [{'address': '/groups/4/action',
                              'body': {'bri_inc': 254, 'transitiontime': 30},
                              'method': 'PUT'}],
                 'conditions': [{'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/buttonevent',
                                 'operator': 'eq',
                                 'value': '2001'},
                                {'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/lastupdated',
                                 'operator': 'dx'}],
                 'created': '2021-03-24T08:27:12',
                 'etag': '5d94d1991c07b69d8253948f44ccbf7b',
                 'lasttriggered': 'none',
                 'name': 'Rule PUSHDIMUP_START',
                 'owner': '77C6BAFF1B',
                 'periodic': 0,
                 'status': 'enabled',
                 'timestriggered': 0},
           '5': {'actions': [{'address': '/groups/4/action',
                              'body': {'bri_inc': 0},
                              'method': 'PUT'}],
                 'conditions': [{'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/buttonevent',
                                 'operator': 'eq',
                                 'value': '2003'},
                                {'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/lastupdated',
                                 'operator': 'dx'}],
                 'created': '2021-03-24T08:27:12',
                 'etag': '5d94d1991c07b69d8253948f44ccbf7b',
                 'lasttriggered': 'none',
                 'name': 'Rule PUSHDIMUP_STOP',
                 'owner': '77C6BAFF1B',
                 'periodic': 0,
                 'status': 'enabled',
                 'timestriggered': 0},
           '6': {'actions': [{'address': '/groups/4/action',
                              'body': {'on': False},
                              'method': 'PUT'}],
                 'conditions': [{'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/buttonevent',
                                 'operator': 'eq',
                                 'value': '3002'},
                                {'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/lastupdated',
                                 'operator': 'dx'}],
                 'created': '2021-03-24T08:27:20',
                 'etag': '8c22db60e553c14cf6d75b459db83e24',
                 'lasttriggered': '2021-04-26T05:26:01',
                 'name': 'Rule PUSHDIMDOWN_OFF',
                 'owner': '77C6BAFF1B',
                 'periodic': 0,
                 'status': 'enabled',
                 'timestriggered': 2},
           '7': {'actions': [{'address': '/groups/4/action',
                              'body': {'bri_inc': -254, 'transitiontime': 30},
                              'method': 'PUT'}],
                 'conditions': [{'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/buttonevent',
                                 'operator': 'eq',
                                 'value': '3001'},
                                {'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/lastupdated',
                                 'operator': 'dx'}],
                 'created': '2021-03-24T08:27:20',
                 'etag': '89935c542bd64f3bd773a822a4d9e934',
                 'lasttriggered': '2021-04-26T05:25:59',
                 'name': 'Rule PUSHDIMDOWN_START',
                 'owner': '77C6BAFF1B',
                 'periodic': 0,
                 'status': 'enabled',
                 'timestriggered': 1},
           '8': {'actions': [{'address': '/groups/4/action',
                              'body': {'bri_inc': 0},
                              'method': 'PUT'}],
                 'conditions': [{'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/buttonevent',
                                 'operator': 'eq',
                                 'value': '3003'},
                                {'address': '/sensors/00:17:88:01:02:c0:df:41-02-fc00/state/lastupdated',
                                 'operator': 'dx'}],
                 'created': '2021-03-24T08:27:21',
                 'etag': '13f523028320bfb80030896a23d93a77',
                 'lasttriggered': '2021-04-26T05:26:00',
                 'name': 'Rule PUSHDIMDOWN_STOP',
                 'owner': '77C6BAFF1B',
                 'periodic': 0,
                 'status': 'enabled',
                 'timestriggered': 2}},
 'scenes': {},
 'schedules': {},
 'sensors': {'1': {'config': {'configured': True,
                              'on': True,
                              'sunriseoffset': 30,
                              'sunsetoffset': -30},
                   'etag': '12afd723824fde32c43ef16145867380',
                   'manufacturername': 'Philips',
                   'modelid': 'PHDL00',
                   'name': 'Daylight',
                   'state': {'dark': False,
                             'daylight': True,
                             'lastupdated': '2021-04-26T05:07:49.484',
                             'status': 160,
                             'sunrise': '2021-04-26T04:27:14',
                             'sunset': '2021-04-26T18:29:09'},
                   'swversion': '1.0',
                   'type': 'Daylight',
                   'uniqueid': '00:21:2e:ff:ff:04:f4:c4-01'},
             '10': {'config': {'battery': 100,
                               'duration': 90,
                               'on': True,
                               'reachable': True,
                               'temperature': 2600},
                    'ep': 1,
                    'etag': '0d5f2f28cce9b065886599b390498412',
                    'lastseen': '2021-04-26T10:49Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Studio',
                    'state': {'lastupdated': '2021-04-26T10:51:28.184',
                              'presence': False},
                    'swversion': '20170627',
                    'type': 'ZHAPresence',
                    'uniqueid': '00:15:8d:00:02:b4:73:1e-01-0406'},
             '11': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 2600,
                               'tholddark': 12000,
                               'tholdoffset': 7000},
                    'ep': 1,
                    'etag': 'a92bc0eff5b65be20ddd333f3219430c',
                    'lastseen': '2021-04-26T10:49Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Studio',
                    'state': {'dark': False,
                              'daylight': False,
                              'lastupdated': '2021-04-26T10:49:57.774',
                              'lightlevel': 13011,
                              'lux': 20},
                    'swversion': '20170627',
                    'type': 'ZHALightLevel',
                    'uniqueid': '00:15:8d:00:02:b4:73:1e-01-0400'},
             '13': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 2500,
                               'tholddark': 12000,
                               'tholdoffset': 7000},
                    'ep': 1,
                    'etag': '9237e99ba2224b2fc5c2ee93bec298b3',
                    'lastseen': '2021-04-26T10:29Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Camera da Letto',
                    'state': {'dark': False,
                              'daylight': False,
                              'lastupdated': '2021-04-26T10:29:14.489',
                              'lightlevel': 17076,
                              'lux': 51},
                    'swversion': '20170627',
                    'type': 'ZHALightLevel',
                    'uniqueid': '00:15:8d:00:02:b4:88:df-01-0400'},
             '14': {'config': {'battery': 100,
                               'duration': 90,
                               'on': True,
                               'reachable': True,
                               'temperature': 2500},
                    'ep': 1,
                    'etag': '9237e99ba2224b2fc5c2ee93bec298b3',
                    'lastseen': '2021-04-26T10:29Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Camera da Letto',
                    'state': {'lastupdated': '2021-04-26T10:29:14.489',
                              'presence': False},
                    'swversion': '20170627',
                    'type': 'ZHAPresence',
                    'uniqueid': '00:15:8d:00:02:b4:88:df-01-0406'},
             '15': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 0},
                    'ep': 1,
                    'etag': 'fe06579b2805c4d1432c37b090c6cb11',
                    'lastseen': '2021-04-26T10:15Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_magnet',
                    'name': 'Lavatrice',
                    'state': {'lastupdated': '2021-04-26T10:15:22.099',
                              'open': True},
                    'type': 'ZHAOpenClose',
                    'uniqueid': '00:15:8d:00:01:58:41:32-01-0006'},
             '16': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 3000,
                               'tholddark': 12000,
                               'tholdoffset': 7000},
                    'ep': 1,
                    'etag': '6347c4220a24bd23fc942c3cc3484948',
                    'lastseen': '2021-04-26T10:04Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Soggiorno',
                    'state': {'dark': True,
                              'daylight': False,
                              'lastupdated': '2021-04-26T10:04:03.327',
                              'lightlevel': 10001,
                              'lux': 10},
                    'swversion': '20170627',
                    'type': 'ZHALightLevel',
                    'uniqueid': '00:15:8d:00:02:b4:8e:47-01-0400'},
             '17': {'config': {'battery': 100,
                               'duration': 90,
                               'on': True,
                               'reachable': True,
                               'temperature': 3000},
                    'ep': 1,
                    'etag': '6347c4220a24bd23fc942c3cc3484948',
                    'lastseen': '2021-04-26T10:04Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Soggiorno',
                    'state': {'lastupdated': '2021-04-26T10:04:03.327',
                              'presence': False},
                    'swversion': '20170627',
                    'type': 'ZHAPresence',
                    'uniqueid': '00:15:8d:00:02:b4:8e:47-01-0406'},
             '18': {'config': {'battery': 100,
                               'duration': 90,
                               'on': True,
                               'reachable': True,
                               'temperature': 0},
                    'ep': 1,
                    'etag': 'b52c8639889ccd7ba563b2d2de54050b',
                    'lastseen': '2021-04-26T10:38Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion',
                    'name': 'Bagno Secondario',
                    'state': {'lastupdated': '2021-04-26T07:24:14.085',
                              'presence': False},
                    'type': 'ZHAPresence',
                    'uniqueid': '00:15:8d:00:01:1c:7d:45-01-0406'},
             '2': {'config': {'battery': 100,
                              'enrolled': 0,
                              'on': True,
                              'pending': [],
                              'reachable': False,
                              'temperature': 2900},
                   'ep': 1,
                   'etag': '4f956f62d3c70b132af4d2dd2935b656',
                   'lastseen': None,
                   'manufacturername': 'LUMI',
                   'modelid': 'lumi.sensor_wleak.aq1',
                   'name': 'Water 2',
                   'state': {'lastupdated': '2020-05-25T21:17:51.123',
                             'lowbattery': False,
                             'tampered': False,
                             'water': False},
                   'swversion': '20170721',
                   'type': 'ZHAWater',
                   'uniqueid': '00:15:8d:00:02:8e:45:20-01-0500'},
             '20': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 0},
                    'ep': 1,
                    'etag': '4e1f1d729a69338b8fef2a473c1e84e6',
                    'lastseen': '2021-04-26T10:04Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_magnet',
                    'name': 'Porta Ingresso',
                    'state': {'lastupdated': '2021-04-26T07:02:30.536',
                              'open': False},
                    'type': 'ZHAOpenClose',
                    'uniqueid': '00:15:8d:00:01:53:75:6a-01-0006'},
             '21': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 0},
                    'ep': 1,
                    'etag': 'e9a4b99706a17bb87114bbb1ae50a3b8',
                    'lastseen': '2021-04-26T10:33Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_magnet',
                    'name': 'Lavastoviglie',
                    'state': {'lastupdated': '2021-04-26T08:40:33.942',
                              'open': False},
                    'type': 'ZHAOpenClose',
                    'uniqueid': '00:15:8d:00:01:83:73:38-01-0006'},
             '23': {'config': {'battery': 100,
                               'offset': 0,
                               'on': True,
                               'reachable': True},
                    'ep': 1,
                    'etag': '406a5d627248f57a15de3a64a1fd4f1d',
                    'lastseen': '2021-04-26T10:08Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_ht',
                    'name': 'Cameretta',
                    'state': {'lastupdated': '2021-04-26T10:08:09.605',
                              'temperature': 2254},
                    'swversion': '20160516',
                    'type': 'ZHATemperature',
                    'uniqueid': '00:15:8d:00:01:5a:f2:d3-01-0402'},
             '24': {'config': {'battery': 100,
                               'offset': 0,
                               'on': True,
                               'reachable': True},
                    'ep': 1,
                    'etag': '406a5d627248f57a15de3a64a1fd4f1d',
                    'lastseen': '2021-04-26T10:08Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_ht',
                    'name': 'Cameretta',
                    'state': {'humidity': 4759,
                              'lastupdated': '2021-04-26T10:08:09.605'},
                    'swversion': '20160516',
                    'type': 'ZHAHumidity',
                    'uniqueid': '00:15:8d:00:01:5a:f2:d3-01-0405'},
             '25': {'config': {'battery': 100,
                               'duration': 90,
                               'on': True,
                               'reachable': True,
                               'temperature': 2700},
                    'ep': 1,
                    'etag': '1bcce8c46121b3895cebd653237cc271',
                    'lastseen': '2021-04-26T10:24Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Camera di Adele',
                    'state': {'lastupdated': '2021-04-26T10:24:59.673',
                              'presence': False},
                    'swversion': '20170627',
                    'type': 'ZHAPresence',
                    'uniqueid': '00:15:8d:00:02:b4:88:56-01-0406'},
             '26': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 2700,
                               'tholddark': 12000,
                               'tholdoffset': 7000},
                    'ep': 1,
                    'etag': '1bcce8c46121b3895cebd653237cc271',
                    'lastseen': '2021-04-26T10:24Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Camera di Adele',
                    'state': {'dark': True,
                              'daylight': False,
                              'lastupdated': '2021-04-26T10:24:59.673',
                              'lightlevel': 10001,
                              'lux': 10},
                    'swversion': '20170627',
                    'type': 'ZHALightLevel',
                    'uniqueid': '00:15:8d:00:02:b4:88:56-01-0400'},
             '27': {'config': {'battery': 100,
                               'duration': 90,
                               'on': True,
                               'reachable': True,
                               'temperature': 2900},
                    'ep': 1,
                    'etag': '27211f58ab41550ccdf395a36c3cb9b4',
                    'lastseen': '2021-04-26T10:15Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Corridoio2',
                    'state': {'lastupdated': '2021-04-26T10:16:33.885',
                              'presence': False},
                    'swversion': '20170627',
                    'type': 'ZHAPresence',
                    'uniqueid': '00:15:8d:00:04:51:76:31-01-0406'},
             '28': {'config': {'battery': 100,
                               'duration': 90,
                               'on': True,
                               'reachable': True,
                               'temperature': 0},
                    'ep': 1,
                    'etag': 'fbdb7bb4739eefdd3221ba918fa4b381',
                    'lastseen': '2021-04-26T10:34Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion',
                    'name': 'Disimpegno',
                    'state': {'lastupdated': '2021-04-26T10:16:32.185',
                              'presence': False},
                    'type': 'ZHAPresence',
                    'uniqueid': '00:15:8d:00:01:1c:7c:9e-01-0406'},
             '29': {'config': {'battery': 100,
                               'duration': 90,
                               'on': True,
                               'reachable': True,
                               'temperature': 0},
                    'ep': 1,
                    'etag': '9812b960341b42cf81295afaf471fc2e',
                    'lastseen': '2021-04-26T10:52Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion',
                    'name': 'Bagno Principale',
                    'state': {'lastupdated': '2021-04-26T10:13:26.185',
                              'presence': False},
                    'type': 'ZHAPresence',
                    'uniqueid': '00:15:8d:00:01:4d:c6:2a-01-0406'},
             '3': {'config': {'battery': 100,
                              'duration': 90,
                              'on': True,
                              'reachable': True,
                              'temperature': 2800},
                   'ep': 1,
                   'etag': '2284f439892afaaf409ac62241cb37de',
                   'lastseen': '2021-04-26T10:33Z',
                   'manufacturername': 'LUMI',
                   'modelid': 'lumi.sensor_motion.aq2',
                   'name': 'Cucina',
                   'state': {'lastupdated': '2021-04-26T10:33:22.225',
                             'presence': False},
                   'swversion': '20170627',
                   'type': 'ZHAPresence',
                   'uniqueid': '00:15:8d:00:02:b4:60:32-01-0406'},
             '30': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 1800},
                    'ep': 1,
                    'etag': 'e9bbd833f369cf25c128ce1a4b99e163',
                    'lastseen': '2021-04-26T10:41Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_magnet.aq2',
                    'name': 'Veranda Camera di Adele',
                    'state': {'lastupdated': '2021-04-26T10:41:22.642',
                              'open': False},
                    'swversion': '20161128',
                    'type': 'ZHAOpenClose',
                    'uniqueid': '00:15:8d:00:03:21:e5:b2-01-0006'},
             '31': {'config': {'battery': 95,
                               'on': True,
                               'pending': [],
                               'reachable': True,
                               'sensitivity': 21,
                               'sensitivitymax': 21,
                               'temperature': 2800},
                    'ep': 1,
                    'etag': '04c13c754b5abc0ae49ea2e66f8e1eba',
                    'lastseen': '2021-04-26T10:53Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.vibration.aq1',
                    'name': 'Vibration Sensor',
                    'state': {'lastupdated': '2021-04-26T09:58:55.454',
                              'orientation': [5, 8, -81],
                              'tiltangle': 7,
                              'vibration': False,
                              'vibrationstrength': 8},
                    'swversion': '20180130',
                    'type': 'ZHAVibration',
                    'uniqueid': '00:15:8d:00:02:b1:29:83-01-0101'},
             '32': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 2900,
                               'tholddark': 12000,
                               'tholdoffset': 7000},
                    'ep': 1,
                    'etag': 'df4dd576ee1ad4461c6d7e62a53d1356',
                    'lastseen': '2021-04-26T10:15Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Corridoio2',
                    'state': {'dark': True,
                              'daylight': False,
                              'lastupdated': '2021-04-26T10:15:03.786',
                              'lightlevel': 8451,
                              'lux': 7},
                    'swversion': '20170627',
                    'type': 'ZHALightLevel',
                    'uniqueid': '00:15:8d:00:04:51:76:31-01-0400'},
             '33': {'config': {'battery': 98,
                               'on': True,
                               'reachable': True,
                               'temperature': 2900},
                    'ep': 1,
                    'etag': '4e942ebabd0134b1b00d9c7e65664fee',
                    'lastseen': '2021-04-26T10:07Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_magnet.aq2',
                    'name': 'Finestra Cucina',
                    'state': {'lastupdated': '2021-04-26T10:07:37.854',
                              'open': False},
                    'swversion': '20161128',
                    'type': 'ZHAOpenClose',
                    'uniqueid': '00:15:8d:00:04:7e:bd:e4-01-0006'},
             '34': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 2600},
                    'ep': 1,
                    'etag': '63d21a0b821bafffed6bceb6b1f43986',
                    'lastseen': '2021-04-26T10:14Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_magnet.aq2',
                    'name': 'Porta-Finestra Camera di Adele',
                    'state': {'lastupdated': '2021-04-26T10:14:58.453',
                              'open': False},
                    'swversion': '20161128',
                    'type': 'ZHAOpenClose',
                    'uniqueid': '00:15:8d:00:04:a0:46:50-01-0006'},
             '35': {'config': {'alert': 'none',
                               'battery': None,
                               'group': '46406',
                               'on': True,
                               'reachable': False},
                    'ep': 1,
                    'etag': '4f956f62d3c70b132af4d2dd2935b656',
                    'lastseen': None,
                    'manufacturername': 'IKEA of Sweden',
                    'mode': 3,
                    'modelid': 'TRADFRI remote control',
                    'name': 'TRÅDFRI remote control',
                    'state': {'buttonevent': 1002,
                              'lastupdated': '2021-01-30T13:06:17.641'},
                    'swversion': '1.2.223',
                    'type': 'ZHASwitch',
                    'uniqueid': '00:0b:57:ff:fe:9f:f7:93-01-1000'},
             '36': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 2600},
                    'ep': 1,
                    'etag': '0c78e76ddbef8cb2021ca6702b007175',
                    'lastseen': '2021-04-26T10:49Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_magnet.aq2',
                    'name': 'Porta Corazzata',
                    'state': {'lastupdated': '2021-04-26T10:49:27.866',
                              'open': True},
                    'swversion': '20161128',
                    'type': 'ZHAOpenClose',
                    'uniqueid': '00:15:8d:00:04:7d:64:e2-01-0006'},
             '37': {'config': {'battery': 100,
                               'group': '8',
                               'on': True,
                               'reachable': True},
                    'ep': 2,
                    'etag': '3c0f856ac1bcf1ac6543d66d5d97c8bc',
                    'lastseen': '2021-04-26T10:49Z',
                    'manufacturername': 'Philips',
                    'mode': 1,
                    'modelid': 'RWL021',
                    'name': 'Dimmer Switch',
                    'state': {'buttonevent': 4002,
                              'eventduration': 6,
                              'lastupdated': '2021-04-26T05:26:03.501'},
                    'swversion': '6.1.1.28573',
                    'type': 'ZHASwitch',
                    'uniqueid': '00:17:88:01:02:c0:df:41-02-fc00'},
             '38': {'config': {'battery': 100, 'on': True, 'reachable': True},
                    'ep': 1,
                    'etag': 'ef7dbca791f06f4b89a7e508e64b22f7',
                    'lastseen': '2021-04-26T10:47Z',
                    'manufacturername': 'LUMI',
                    'mode': 1,
                    'modelid': 'lumi.sensor_switch',
                    'name': 'Interruttore Camera di Adele',
                    'state': {'buttonevent': 1002,
                              'lastupdated': '2021-04-13T16:25:39.103'},
                    'type': 'ZHASwitch',
                    'uniqueid': '00:15:8d:00:01:55:d2:87-01-0006'},
             '39': {'config': {'battery': 100, 'on': True, 'reachable': True},
                    'ep': 1,
                    'etag': 'f390fa2715babaa4ebd180430fc4992f',
                    'lastseen': '2021-04-26T09:59Z',
                    'manufacturername': 'LUMI',
                    'mode': 1,
                    'modelid': 'lumi.sensor_switch',
                    'name': 'Interruttore Soggiorno',
                    'state': {'buttonevent': 1002,
                              'lastupdated': '2021-04-08T18:01:22.809'},
                    'type': 'ZHASwitch',
                    'uniqueid': '00:15:8d:00:01:0b:2b:6b-01-0006'},
             '4': {'config': {'battery': 100,
                              'on': True,
                              'reachable': True,
                              'temperature': 2800,
                              'tholddark': 12000,
                              'tholdoffset': 7000},
                   'ep': 1,
                   'etag': '2284f439892afaaf409ac62241cb37de',
                   'lastseen': '2021-04-26T10:33Z',
                   'manufacturername': 'LUMI',
                   'modelid': 'lumi.sensor_motion.aq2',
                   'name': 'Cucina',
                   'state': {'dark': False,
                             'daylight': True,
                             'lastupdated': '2021-04-26T10:33:22.225',
                             'lightlevel': 19139,
                             'lux': 82},
                   'swversion': '20170627',
                   'type': 'ZHALightLevel',
                   'uniqueid': '00:15:8d:00:02:b4:60:32-01-0400'},
             '40': {'config': {'battery': 100,
                               'on': True,
                               'reachable': True,
                               'temperature': 2900,
                               'tholddark': 12000,
                               'tholdoffset': 7000},
                    'ep': 1,
                    'etag': 'bbc2f7913c7a65be395fb394aac80a87',
                    'lastseen': '2021-04-26T10:23Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Cucina 2',
                    'state': {'dark': False,
                              'daylight': False,
                              'lastupdated': '2021-04-26T10:23:39.764',
                              'lightlevel': 17482,
                              'lux': 56},
                    'swversion': '20170627',
                    'type': 'ZHALightLevel',
                    'uniqueid': '00:15:8d:00:04:51:75:fa-01-0400'},
             '41': {'config': {'battery': 100,
                               'duration': 90,
                               'on': True,
                               'reachable': True,
                               'temperature': 2900},
                    'ep': 1,
                    'etag': 'bbc2f7913c7a65be395fb394aac80a87',
                    'lastseen': '2021-04-26T10:23Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_motion.aq2',
                    'name': 'Cucina 2',
                    'state': {'lastupdated': '2021-04-26T10:23:39.764',
                              'presence': False},
                    'swversion': '20170627',
                    'type': 'ZHAPresence',
                    'uniqueid': '00:15:8d:00:04:51:75:fa-01-0406'},
             '42': {'config': {'battery': 100,
                               'enrolled': 0,
                               'on': True,
                               'pending': [],
                               'reachable': True,
                               'temperature': 2400},
                    'ep': 1,
                    'etag': '0896da1ade25e2d904c8e9d1e7c749df',
                    'lastseen': '2021-04-26T10:19Z',
                    'manufacturername': 'LUMI',
                    'modelid': 'lumi.sensor_wleak.aq1',
                    'name': 'Doccia',
                    'state': {'lastupdated': '2021-04-26T10:19:18.193',
                              'lowbattery': False,
                              'tampered': False,
                              'water': False},
                    'swversion': '20170721',
                    'type': 'ZHAWater',
                    'uniqueid': '00:15:8d:00:02:89:b2:52-01-0500'},
             '5': {'config': {'battery': 31,
                              'offset': 0,
                              'on': True,
                              'reachable': False},
                   'ep': 1,
                   'etag': '4f956f62d3c70b132af4d2dd2935b656',
                   'lastseen': None,
                   'manufacturername': 'LUMI',
                   'modelid': 'lumi.sensor_ht',
                   'name': 'Salone',
                   'state': {'lastupdated': '2021-02-17T00:43:06.899',
                             'temperature': 1993},
                   'swversion': '20160516',
                   'type': 'ZHATemperature',
                   'uniqueid': '00:15:8d:00:01:59:ed:f6-01-0402'},
             '6': {'config': {'battery': 31,
                              'offset': 0,
                              'on': True,
                              'reachable': False},
                   'ep': 1,
                   'etag': '4f956f62d3c70b132af4d2dd2935b656',
                   'lastseen': None,
                   'manufacturername': 'LUMI',
                   'modelid': 'lumi.sensor_ht',
                   'name': 'Salone',
                   'state': {'humidity': 4206,
                             'lastupdated': '2021-02-18T05:02:21.878'},
                   'swversion': '20160516',
                   'type': 'ZHAHumidity',
                   'uniqueid': '00:15:8d:00:01:59:ed:f6-01-0405'},
             '7': {'config': {'battery': 100,
                              'duration': 90,
                              'on': True,
                              'reachable': True,
                              'temperature': 2500},
                   'ep': 1,
                   'etag': 'b129bad53859d2ec004581b35b9bdaf5',
                   'lastseen': '2021-04-26T10:22Z',
                   'manufacturername': 'LUMI',
                   'modelid': 'lumi.sensor_motion.aq2',
                   'name': 'Corridoio1',
                   'state': {'lastupdated': '2021-04-26T10:22:15.142',
                             'presence': False},
                   'swversion': '20170627',
                   'type': 'ZHAPresence',
                   'uniqueid': '00:15:8d:00:02:b4:39:f9-01-0406'},
             '8': {'config': {'battery': 100,
                              'on': True,
                              'reachable': True,
                              'temperature': 2500,
                              'tholddark': 12000,
                              'tholdoffset': 7000},
                   'ep': 1,
                   'etag': 'b129bad53859d2ec004581b35b9bdaf5',
                   'lastseen': '2021-04-26T10:22Z',
                   'manufacturername': 'LUMI',
                   'modelid': 'lumi.sensor_motion.aq2',
                   'name': 'Corridoio1',
                   'state': {'dark': True,
                             'daylight': False,
                             'lastupdated': '2021-04-26T10:22:15.142',
                             'lightlevel': 6021,
                             'lux': 4},
                   'swversion': '20170627',
                   'type': 'ZHALightLevel',
                   'uniqueid': '00:15:8d:00:02:b4:39:f9-01-0400'}}}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Soggiorno created as 
{'action': {'alert': 'none',
            'bri': 127,
            'colormode': 'hs',
            'ct': 0,
            'effect': 'none',
            'hue': 0,
            'on': False,
            'sat': 127,
            'scene': None,
            'xy': [0, 0]},
 'devicemembership': [],
 'etag': '5e6225939810cf7a93b59ed8f63fa169',
 'id': '10',
 'lights': ['3'],
 'name': 'Soggiorno',
 'scenes': [],
 'state': {'all_on': False, 'any_on': False},
 'type': 'LightGroup'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Camera di Adele created as 
{'action': {'alert': 'none',
            'bri': 127,
            'colormode': 'hs',
            'ct': 0,
            'effect': 'none',
            'hue': 0,
            'on': False,
            'sat': 127,
            'scene': None,
            'xy': [0, 0]},
 'devicemembership': [],
 'etag': 'f687e2d95a8f8ead63c068abfbaed1a5',
 'id': '11',
 'lights': ['4', '5'],
 'name': 'Camera di Adele',
 'scenes': [],
 'state': {'all_on': False, 'any_on': False},
 'type': 'LightGroup'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Bagno Secondario created as 
{'action': {'alert': 'none',
            'bri': 127,
            'colormode': 'hs',
            'ct': 0,
            'effect': 'none',
            'hue': 0,
            'on': False,
            'sat': 127,
            'scene': None,
            'xy': [0, 0]},
 'devicemembership': [],
 'etag': '5af7d69498515206f5fda7a26618c0cc',
 'id': '13',
 'lights': ['11'],
 'name': 'Bagno Secondario',
 'scenes': [],
 'state': {'all_on': False, 'any_on': False},
 'type': 'LightGroup'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Cucina created as 
{'action': {'alert': 'none',
            'bri': 127,
            'colormode': 'hs',
            'ct': 0,
            'effect': 'none',
            'hue': 0,
            'on': False,
            'sat': 127,
            'scene': None,
            'xy': [0, 0]},
 'devicemembership': [],
 'etag': '1489a54878be811e15049f2ef2fd1ee0',
 'id': '4',
 'lights': ['9', '10'],
 'name': 'Cucina',
 'scenes': [{'id': '1',
             'lightcount': 2,
             'name': 'Sotto Pensile',
             'transitiontime': 10}],
 'state': {'all_on': False, 'any_on': False},
 'type': 'LightGroup'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.group] Sotto Pensile created as 
{'id': '1', 'lightcount': 2, 'name': 'Sotto Pensile', 'transitiontime': 10}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] TRADFRI remote control 35 created as 
{'action': {'alert': 'none',
            'bri': 127,
            'colormode': 'hs',
            'ct': 0,
            'effect': 'none',
            'hue': 0,
            'on': False,
            'sat': 127,
            'scene': None,
            'xy': [0, 0]},
 'devicemembership': ['35'],
 'etag': 'bfea8a8e53056e7aeb75ea066885b5f7',
 'id': '46406',
 'lights': [],
 'name': 'TRADFRI remote control 35',
 'scenes': [],
 'state': {'all_on': False, 'any_on': False},
 'type': 'LightGroup',
 'uniqueid': '00:0b:57:ff:fe:9f:f7:93'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] FLS-PP3 helper1 for group 4 created as 
{'action': {'alert': 'none',
            'bri': 127,
            'colormode': 'hs',
            'ct': 0,
            'effect': 'none',
            'hue': 0,
            'on': False,
            'sat': 127,
            'scene': None,
            'xy': [0, 0]},
 'devicemembership': [],
 'etag': 'a66ec7d0b0a7bede6655c62cf01fbb9f',
 'id': '5',
 'lights': ['9'],
 'name': 'FLS-PP3 helper1 for group 4',
 'scenes': [],
 'state': {'all_on': False, 'any_on': False},
 'type': 'Luminaire',
 'uniqueid': '10:00:00:04'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] FLS-PP3 helper2 for group 4 created as 
{'action': {'alert': 'none',
            'bri': 127,
            'colormode': 'hs',
            'ct': 0,
            'effect': 'none',
            'hue': 0,
            'on': False,
            'sat': 127,
            'scene': None,
            'xy': [0, 0]},
 'devicemembership': [],
 'etag': '25b25f35c9677664541b42ea8823cade',
 'id': '6',
 'lights': ['10'],
 'name': 'FLS-PP3 helper2 for group 4',
 'scenes': [],
 'state': {'all_on': False, 'any_on': False},
 'type': 'Luminaire',
 'uniqueid': '20:00:00:04'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] RWL021 37 created as 
{'action': {'alert': 'none',
            'bri': 127,
            'colormode': 'hs',
            'ct': 0,
            'effect': 'none',
            'hue': 0,
            'on': False,
            'sat': 127,
            'scene': None,
            'xy': [0, 0]},
 'devicemembership': ['37'],
 'etag': '423b76776d8b97324cb34729300ad4ec',
 'id': '8',
 'lights': [],
 'name': 'RWL021 37',
 'scenes': [],
 'state': {'all_on': False, 'any_on': False},
 'type': 'LightGroup',
 'uniqueid': '00:17:88:01:02:c0:df:41'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Studio created as 
{'action': {'alert': 'none',
            'bri': 127,
            'colormode': 'hs',
            'ct': 0,
            'effect': 'none',
            'hue': 0,
            'on': False,
            'sat': 127,
            'scene': None,
            'xy': [0, 0]},
 'devicemembership': [],
 'etag': '5b6a549f420d959dfc255f8a96e61927',
 'id': '9',
 'lights': ['1', '2'],
 'name': 'Studio',
 'scenes': [],
 'state': {'all_on': False, 'any_on': True},
 'type': 'LightGroup'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Jack Lamp created as 
{'colorcapabilities': 31,
 'ctmax': 500,
 'ctmin': 153,
 'etag': 'fe86c89cbe787040302af83c898fa9ae',
 'hascolor': True,
 'lastannounced': '2021-04-07T18:21:42Z',
 'lastseen': '2021-04-26T10:53Z',
 'manufacturername': 'Philips',
 'modelid': 'LCT012',
 'name': 'Jack Lamp',
 'state': {'alert': 'none',
           'bri': 254,
           'colormode': 'xy',
           'ct': 153,
           'effect': 'none',
           'hue': 0,
           'on': False,
           'reachable': True,
           'sat': 254,
           'xy': [0.6915, 0.3083]},
 'swversion': '1.46.13_r26312',
 'type': 'Extended color light',
 'uniqueid': '00:17:88:01:03:88:36:c7-0b'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Dimmable light 10 created as 
{'etag': '02002836e08e90af487758464209b550',
 'hascolor': False,
 'lastannounced': '2021-04-07T18:21:40Z',
 'lastseen': '2021-04-26T10:53Z',
 'manufacturername': 'dresden elektronik',
 'modelid': 'FLS-PP3 White',
 'name': 'Dimmable light 10',
 'powerup': 7,
 'state': {'alert': 'none', 'bri': 1, 'on': False, 'reachable': True},
 'swversion': '0214.201000EB',
 'type': 'Dimmable light',
 'uniqueid': '00:21:2e:ff:ff:05:8f:ea-0b'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Striscia Led Bagno Secondario created as 
{'ctmax': 65279,
 'ctmin': 0,
 'etag': '17c70cb1d3a217c6b6aaf6d15c9d637e',
 'hascolor': True,
 'lastannounced': '2021-03-24T09:33:02Z',
 'lastseen': '2021-04-26T10:52Z',
 'manufacturername': 'LIDL Livarno Lux',
 'modelid': None,
 'name': 'Striscia Led Bagno Secondario',
 'state': {'alert': 'none',
           'bri': 254,
           'colormode': 'xy',
           'ct': 153,
           'on': False,
           'reachable': True,
           'xy': [0.488, 0.316]},
 'swversion': None,
 'type': 'Extended color light',
 'uniqueid': '84:2e:14:ff:fe:2c:43:89-01'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Umidificatore created as 
{'etag': '34d2017e1e6a4806f7920dc58b76a0b3',
 'hascolor': False,
 'lastannounced': None,
 'lastseen': '2021-04-26T10:50Z',
 'manufacturername': 'LIDL Silvercrest',
 'modelid': 'HG06337',
 'name': 'Umidificatore',
 'state': {'alert': 'none', 'on': False, 'reachable': True},
 'swversion': '66',
 'type': 'On/Off plug-in unit',
 'uniqueid': 'ec:1b:bd:ff:fe:ac:1f:1a-0b'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Lampada Scrivania created as 
{'colorcapabilities': 31,
 'ctmax': 500,
 'ctmin': 153,
 'etag': '9f90cd78049232fd43773049c2567a82',
 'hascolor': True,
 'lastannounced': '2021-04-07T18:21:41Z',
 'lastseen': '2021-04-26T10:53Z',
 'manufacturername': 'Philips',
 'modelid': 'LCT007',
 'name': 'Lampada Scrivania',
 'state': {'alert': 'none',
           'bri': 219,
           'colormode': 'xy',
           'ct': 334,
           'effect': 'none',
           'hue': 15436,
           'on': True,
           'reachable': True,
           'sat': 109,
           'xy': [0.438, 0.404]},
 'swversion': '5.127.1.26420',
 'type': 'Extended color light',
 'uniqueid': '00:17:88:01:10:2e:84:13-0b'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Piantana created as 
{'colorcapabilities': 31,
 'ctmax': 500,
 'ctmin': 153,
 'etag': 'e84e3e63f2d491fb026b361db9bdbb7c',
 'hascolor': True,
 'lastannounced': '2021-04-17T09:33:29Z',
 'lastseen': '2021-04-26T10:53Z',
 'manufacturername': 'Philips',
 'modelid': 'LCT010',
 'name': 'Piantana',
 'state': {'alert': 'none',
           'bri': 128,
           'colormode': 'xy',
           'ct': 334,
           'effect': 'none',
           'hue': 8644,
           'on': False,
           'reachable': True,
           'sat': 108,
           'xy': [0.4378, 0.4039]},
 'swversion': '1.46.13_r26312',
 'type': 'Extended color light',
 'uniqueid': '00:17:88:01:02:f6:68:c1-0b'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Lampada SimonaSalvo created as 
{'colorcapabilities': 31,
 'ctmax': 500,
 'ctmin': 153,
 'etag': 'f04b0f0e91b4ead98f981184321319c0',
 'hascolor': True,
 'lastannounced': '2021-04-10T13:35:29Z',
 'lastseen': '2021-04-26T10:53Z',
 'manufacturername': 'Philips',
 'modelid': 'LCT007',
 'name': 'Lampada SimonaSalvo',
 'state': {'alert': 'none',
           'bri': 128,
           'colormode': 'xy',
           'ct': 500,
           'effect': 'none',
           'hue': 9776,
           'on': False,
           'reachable': True,
           'sat': 243,
           'xy': [0.565, 0.396]},
 'swversion': '5.127.1.26420',
 'type': 'Extended color light',
 'uniqueid': '00:17:88:01:10:2a:a0:86-0b'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Lampada Fiore created as 
{'colorcapabilities': 31,
 'ctmax': 500,
 'ctmin': 153,
 'etag': '10b5dcb80d04821013e1eca3266fadfd',
 'hascolor': True,
 'lastannounced': '2021-04-25T21:40:47Z',
 'lastseen': '2021-04-26T10:53Z',
 'manufacturername': 'Philips',
 'modelid': 'LCT012',
 'name': 'Lampada Fiore',
 'state': {'alert': 'none',
           'bri': 128,
           'colormode': 'xy',
           'ct': 325,
           'effect': 'none',
           'hue': 12735,
           'on': False,
           'reachable': True,
           'sat': 254,
           'xy': [0.4321, 0.5032]},
 'swversion': '1.46.13_r26312',
 'type': 'Extended color light',
 'uniqueid': '00:17:88:01:03:b8:c2:aa-0b'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Configuration tool 6 created as 
{'etag': '267734b7e4935215e77491a896cd0410',
 'hascolor': False,
 'lastannounced': None,
 'lastseen': '2021-04-26T10:51Z',
 'manufacturername': 'dresden elektronik',
 'modelid': 'RaspBee',
 'name': 'Configuration tool 6',
 'state': {'reachable': True},
 'swversion': '0x264a0700',
 'type': 'Configuration tool',
 'uniqueid': '00:21:2e:ff:ff:04:f4:c4-01'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Striscia Led Cucina created as 
{'colorcapabilities': 31,
 'ctmax': 500,
 'ctmin': 153,
 'etag': '51564c31bb9307ebe56038965456ae50',
 'hascolor': True,
 'lastannounced': '2021-04-07T18:21:40Z',
 'lastseen': '2021-04-26T10:53Z',
 'manufacturername': 'dresden elektronik',
 'modelid': 'FLS-PP3',
 'name': 'Striscia Led Cucina',
 'powerup': 7,
 'state': {'alert': 'none',
           'bri': 205,
           'colormode': 'xy',
           'ct': 457,
           'effect': 'none',
           'hue': 6698,
           'on': False,
           'reachable': True,
           'sat': 254,
           'xy': [0.528, 0.446]},
 'swversion': '0214.201000EB',
 'type': 'Extended color light',
 'uniqueid': '00:21:2e:ff:ff:05:8f:ea-0a'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Daylight created as 
{'config': {'configured': True,
            'on': True,
            'sunriseoffset': 30,
            'sunsetoffset': -30},
 'etag': '12afd723824fde32c43ef16145867380',
 'manufacturername': 'Philips',
 'modelid': 'PHDL00',
 'name': 'Daylight',
 'state': {'dark': False,
           'daylight': True,
           'lastupdated': '2021-04-26T05:07:49.484',
           'status': 160,
           'sunrise': '2021-04-26T04:27:14',
           'sunset': '2021-04-26T18:29:09'},
 'swversion': '1.0',
 'type': 'Daylight',
 'uniqueid': '00:21:2e:ff:ff:04:f4:c4-01'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Studio created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 2600},
 'ep': 1,
 'etag': '0d5f2f28cce9b065886599b390498412',
 'lastseen': '2021-04-26T10:49Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Studio',
 'state': {'lastupdated': '2021-04-26T10:51:28.184', 'presence': False},
 'swversion': '20170627',
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:02:b4:73:1e-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Studio created as 
{'config': {'battery': 100,
            'on': True,
            'reachable': True,
            'temperature': 2600,
            'tholddark': 12000,
            'tholdoffset': 7000},
 'ep': 1,
 'etag': 'a92bc0eff5b65be20ddd333f3219430c',
 'lastseen': '2021-04-26T10:49Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Studio',
 'state': {'dark': False,
           'daylight': False,
           'lastupdated': '2021-04-26T10:49:57.774',
           'lightlevel': 13011,
           'lux': 20},
 'swversion': '20170627',
 'type': 'ZHALightLevel',
 'uniqueid': '00:15:8d:00:02:b4:73:1e-01-0400'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Camera da Letto created as 
{'config': {'battery': 100,
            'on': True,
            'reachable': True,
            'temperature': 2500,
            'tholddark': 12000,
            'tholdoffset': 7000},
 'ep': 1,
 'etag': '9237e99ba2224b2fc5c2ee93bec298b3',
 'lastseen': '2021-04-26T10:29Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Camera da Letto',
 'state': {'dark': False,
           'daylight': False,
           'lastupdated': '2021-04-26T10:29:14.489',
           'lightlevel': 17076,
           'lux': 51},
 'swversion': '20170627',
 'type': 'ZHALightLevel',
 'uniqueid': '00:15:8d:00:02:b4:88:df-01-0400'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Camera da Letto created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 2500},
 'ep': 1,
 'etag': '9237e99ba2224b2fc5c2ee93bec298b3',
 'lastseen': '2021-04-26T10:29Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Camera da Letto',
 'state': {'lastupdated': '2021-04-26T10:29:14.489', 'presence': False},
 'swversion': '20170627',
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:02:b4:88:df-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Lavatrice created as 
{'config': {'battery': 100, 'on': True, 'reachable': True, 'temperature': 0},
 'ep': 1,
 'etag': 'fe06579b2805c4d1432c37b090c6cb11',
 'lastseen': '2021-04-26T10:15Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_magnet',
 'name': 'Lavatrice',
 'state': {'lastupdated': '2021-04-26T10:15:22.099', 'open': True},
 'type': 'ZHAOpenClose',
 'uniqueid': '00:15:8d:00:01:58:41:32-01-0006'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Soggiorno created as 
{'config': {'battery': 100,
            'on': True,
            'reachable': True,
            'temperature': 3000,
            'tholddark': 12000,
            'tholdoffset': 7000},
 'ep': 1,
 'etag': '6347c4220a24bd23fc942c3cc3484948',
 'lastseen': '2021-04-26T10:04Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Soggiorno',
 'state': {'dark': True,
           'daylight': False,
           'lastupdated': '2021-04-26T10:04:03.327',
           'lightlevel': 10001,
           'lux': 10},
 'swversion': '20170627',
 'type': 'ZHALightLevel',
 'uniqueid': '00:15:8d:00:02:b4:8e:47-01-0400'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Soggiorno created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 3000},
 'ep': 1,
 'etag': '6347c4220a24bd23fc942c3cc3484948',
 'lastseen': '2021-04-26T10:04Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Soggiorno',
 'state': {'lastupdated': '2021-04-26T10:04:03.327', 'presence': False},
 'swversion': '20170627',
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:02:b4:8e:47-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Bagno Secondario created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 0},
 'ep': 1,
 'etag': 'b52c8639889ccd7ba563b2d2de54050b',
 'lastseen': '2021-04-26T10:38Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion',
 'name': 'Bagno Secondario',
 'state': {'lastupdated': '2021-04-26T07:24:14.085', 'presence': False},
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:01:1c:7d:45-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Water 2 created as 
{'config': {'battery': 100,
            'enrolled': 0,
            'on': True,
            'pending': [],
            'reachable': False,
            'temperature': 2900},
 'ep': 1,
 'etag': '4f956f62d3c70b132af4d2dd2935b656',
 'lastseen': None,
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_wleak.aq1',
 'name': 'Water 2',
 'state': {'lastupdated': '2020-05-25T21:17:51.123',
           'lowbattery': False,
           'tampered': False,
           'water': False},
 'swversion': '20170721',
 'type': 'ZHAWater',
 'uniqueid': '00:15:8d:00:02:8e:45:20-01-0500'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Porta Ingresso created as 
{'config': {'battery': 100, 'on': True, 'reachable': True, 'temperature': 0},
 'ep': 1,
 'etag': '4e1f1d729a69338b8fef2a473c1e84e6',
 'lastseen': '2021-04-26T10:04Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_magnet',
 'name': 'Porta Ingresso',
 'state': {'lastupdated': '2021-04-26T07:02:30.536', 'open': False},
 'type': 'ZHAOpenClose',
 'uniqueid': '00:15:8d:00:01:53:75:6a-01-0006'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Lavastoviglie created as 
{'config': {'battery': 100, 'on': True, 'reachable': True, 'temperature': 0},
 'ep': 1,
 'etag': 'e9a4b99706a17bb87114bbb1ae50a3b8',
 'lastseen': '2021-04-26T10:33Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_magnet',
 'name': 'Lavastoviglie',
 'state': {'lastupdated': '2021-04-26T08:40:33.942', 'open': False},
 'type': 'ZHAOpenClose',
 'uniqueid': '00:15:8d:00:01:83:73:38-01-0006'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Cameretta created as 
{'config': {'battery': 100, 'offset': 0, 'on': True, 'reachable': True},
 'ep': 1,
 'etag': '406a5d627248f57a15de3a64a1fd4f1d',
 'lastseen': '2021-04-26T10:08Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_ht',
 'name': 'Cameretta',
 'state': {'lastupdated': '2021-04-26T10:08:09.605', 'temperature': 2254},
 'swversion': '20160516',
 'type': 'ZHATemperature',
 'uniqueid': '00:15:8d:00:01:5a:f2:d3-01-0402'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Cameretta created as 
{'config': {'battery': 100, 'offset': 0, 'on': True, 'reachable': True},
 'ep': 1,
 'etag': '406a5d627248f57a15de3a64a1fd4f1d',
 'lastseen': '2021-04-26T10:08Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_ht',
 'name': 'Cameretta',
 'state': {'humidity': 4759, 'lastupdated': '2021-04-26T10:08:09.605'},
 'swversion': '20160516',
 'type': 'ZHAHumidity',
 'uniqueid': '00:15:8d:00:01:5a:f2:d3-01-0405'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Camera di Adele created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 2700},
 'ep': 1,
 'etag': '1bcce8c46121b3895cebd653237cc271',
 'lastseen': '2021-04-26T10:24Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Camera di Adele',
 'state': {'lastupdated': '2021-04-26T10:24:59.673', 'presence': False},
 'swversion': '20170627',
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:02:b4:88:56-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Camera di Adele created as 
{'config': {'battery': 100,
            'on': True,
            'reachable': True,
            'temperature': 2700,
            'tholddark': 12000,
            'tholdoffset': 7000},
 'ep': 1,
 'etag': '1bcce8c46121b3895cebd653237cc271',
 'lastseen': '2021-04-26T10:24Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Camera di Adele',
 'state': {'dark': True,
           'daylight': False,
           'lastupdated': '2021-04-26T10:24:59.673',
           'lightlevel': 10001,
           'lux': 10},
 'swversion': '20170627',
 'type': 'ZHALightLevel',
 'uniqueid': '00:15:8d:00:02:b4:88:56-01-0400'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Corridoio2 created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 2900},
 'ep': 1,
 'etag': '27211f58ab41550ccdf395a36c3cb9b4',
 'lastseen': '2021-04-26T10:15Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Corridoio2',
 'state': {'lastupdated': '2021-04-26T10:16:33.885', 'presence': False},
 'swversion': '20170627',
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:04:51:76:31-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Disimpegno created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 0},
 'ep': 1,
 'etag': 'fbdb7bb4739eefdd3221ba918fa4b381',
 'lastseen': '2021-04-26T10:34Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion',
 'name': 'Disimpegno',
 'state': {'lastupdated': '2021-04-26T10:16:32.185', 'presence': False},
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:01:1c:7c:9e-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Bagno Principale created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 0},
 'ep': 1,
 'etag': '9812b960341b42cf81295afaf471fc2e',
 'lastseen': '2021-04-26T10:52Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion',
 'name': 'Bagno Principale',
 'state': {'lastupdated': '2021-04-26T10:13:26.185', 'presence': False},
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:01:4d:c6:2a-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Cucina created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 2800},
 'ep': 1,
 'etag': '2284f439892afaaf409ac62241cb37de',
 'lastseen': '2021-04-26T10:33Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Cucina',
 'state': {'lastupdated': '2021-04-26T10:33:22.225', 'presence': False},
 'swversion': '20170627',
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:02:b4:60:32-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Veranda Camera di Adele created as 
{'config': {'battery': 100, 'on': True, 'reachable': True, 'temperature': 1800},
 'ep': 1,
 'etag': 'e9bbd833f369cf25c128ce1a4b99e163',
 'lastseen': '2021-04-26T10:41Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_magnet.aq2',
 'name': 'Veranda Camera di Adele',
 'state': {'lastupdated': '2021-04-26T10:41:22.642', 'open': False},
 'swversion': '20161128',
 'type': 'ZHAOpenClose',
 'uniqueid': '00:15:8d:00:03:21:e5:b2-01-0006'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Vibration Sensor created as 
{'config': {'battery': 95,
            'on': True,
            'pending': [],
            'reachable': True,
            'sensitivity': 21,
            'sensitivitymax': 21,
            'temperature': 2800},
 'ep': 1,
 'etag': '04c13c754b5abc0ae49ea2e66f8e1eba',
 'lastseen': '2021-04-26T10:53Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.vibration.aq1',
 'name': 'Vibration Sensor',
 'state': {'lastupdated': '2021-04-26T09:58:55.454',
           'orientation': [5, 8, -81],
           'tiltangle': 7,
           'vibration': False,
           'vibrationstrength': 8},
 'swversion': '20180130',
 'type': 'ZHAVibration',
 'uniqueid': '00:15:8d:00:02:b1:29:83-01-0101'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Corridoio2 created as 
{'config': {'battery': 100,
            'on': True,
            'reachable': True,
            'temperature': 2900,
            'tholddark': 12000,
            'tholdoffset': 7000},
 'ep': 1,
 'etag': 'df4dd576ee1ad4461c6d7e62a53d1356',
 'lastseen': '2021-04-26T10:15Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Corridoio2',
 'state': {'dark': True,
           'daylight': False,
           'lastupdated': '2021-04-26T10:15:03.786',
           'lightlevel': 8451,
           'lux': 7},
 'swversion': '20170627',
 'type': 'ZHALightLevel',
 'uniqueid': '00:15:8d:00:04:51:76:31-01-0400'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Finestra Cucina created as 
{'config': {'battery': 98, 'on': True, 'reachable': True, 'temperature': 2900},
 'ep': 1,
 'etag': '4e942ebabd0134b1b00d9c7e65664fee',
 'lastseen': '2021-04-26T10:07Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_magnet.aq2',
 'name': 'Finestra Cucina',
 'state': {'lastupdated': '2021-04-26T10:07:37.854', 'open': False},
 'swversion': '20161128',
 'type': 'ZHAOpenClose',
 'uniqueid': '00:15:8d:00:04:7e:bd:e4-01-0006'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Porta-Finestra Camera di Adele created as 
{'config': {'battery': 100, 'on': True, 'reachable': True, 'temperature': 2600},
 'ep': 1,
 'etag': '63d21a0b821bafffed6bceb6b1f43986',
 'lastseen': '2021-04-26T10:14Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_magnet.aq2',
 'name': 'Porta-Finestra Camera di Adele',
 'state': {'lastupdated': '2021-04-26T10:14:58.453', 'open': False},
 'swversion': '20161128',
 'type': 'ZHAOpenClose',
 'uniqueid': '00:15:8d:00:04:a0:46:50-01-0006'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] TRÅDFRI remote control created as 
{'config': {'alert': 'none',
            'battery': None,
            'group': '46406',
            'on': True,
            'reachable': False},
 'ep': 1,
 'etag': '4f956f62d3c70b132af4d2dd2935b656',
 'lastseen': None,
 'manufacturername': 'IKEA of Sweden',
 'mode': 3,
 'modelid': 'TRADFRI remote control',
 'name': 'TRÅDFRI remote control',
 'state': {'buttonevent': 1002, 'lastupdated': '2021-01-30T13:06:17.641'},
 'swversion': '1.2.223',
 'type': 'ZHASwitch',
 'uniqueid': '00:0b:57:ff:fe:9f:f7:93-01-1000'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Porta Corazzata created as 
{'config': {'battery': 100, 'on': True, 'reachable': True, 'temperature': 2600},
 'ep': 1,
 'etag': '0c78e76ddbef8cb2021ca6702b007175',
 'lastseen': '2021-04-26T10:49Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_magnet.aq2',
 'name': 'Porta Corazzata',
 'state': {'lastupdated': '2021-04-26T10:49:27.866', 'open': True},
 'swversion': '20161128',
 'type': 'ZHAOpenClose',
 'uniqueid': '00:15:8d:00:04:7d:64:e2-01-0006'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Dimmer Switch created as 
{'config': {'battery': 100, 'group': '8', 'on': True, 'reachable': True},
 'ep': 2,
 'etag': '3c0f856ac1bcf1ac6543d66d5d97c8bc',
 'lastseen': '2021-04-26T10:49Z',
 'manufacturername': 'Philips',
 'mode': 1,
 'modelid': 'RWL021',
 'name': 'Dimmer Switch',
 'state': {'buttonevent': 4002,
           'eventduration': 6,
           'lastupdated': '2021-04-26T05:26:03.501'},
 'swversion': '6.1.1.28573',
 'type': 'ZHASwitch',
 'uniqueid': '00:17:88:01:02:c0:df:41-02-fc00'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Interruttore Camera di Adele created as 
{'config': {'battery': 100, 'on': True, 'reachable': True},
 'ep': 1,
 'etag': 'ef7dbca791f06f4b89a7e508e64b22f7',
 'lastseen': '2021-04-26T10:47Z',
 'manufacturername': 'LUMI',
 'mode': 1,
 'modelid': 'lumi.sensor_switch',
 'name': 'Interruttore Camera di Adele',
 'state': {'buttonevent': 1002, 'lastupdated': '2021-04-13T16:25:39.103'},
 'type': 'ZHASwitch',
 'uniqueid': '00:15:8d:00:01:55:d2:87-01-0006'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Interruttore Soggiorno created as 
{'config': {'battery': 100, 'on': True, 'reachable': True},
 'ep': 1,
 'etag': 'f390fa2715babaa4ebd180430fc4992f',
 'lastseen': '2021-04-26T09:59Z',
 'manufacturername': 'LUMI',
 'mode': 1,
 'modelid': 'lumi.sensor_switch',
 'name': 'Interruttore Soggiorno',
 'state': {'buttonevent': 1002, 'lastupdated': '2021-04-08T18:01:22.809'},
 'type': 'ZHASwitch',
 'uniqueid': '00:15:8d:00:01:0b:2b:6b-01-0006'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Cucina created as 
{'config': {'battery': 100,
            'on': True,
            'reachable': True,
            'temperature': 2800,
            'tholddark': 12000,
            'tholdoffset': 7000},
 'ep': 1,
 'etag': '2284f439892afaaf409ac62241cb37de',
 'lastseen': '2021-04-26T10:33Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Cucina',
 'state': {'dark': False,
           'daylight': True,
           'lastupdated': '2021-04-26T10:33:22.225',
           'lightlevel': 19139,
           'lux': 82},
 'swversion': '20170627',
 'type': 'ZHALightLevel',
 'uniqueid': '00:15:8d:00:02:b4:60:32-01-0400'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Cucina 2 created as 
{'config': {'battery': 100,
            'on': True,
            'reachable': True,
            'temperature': 2900,
            'tholddark': 12000,
            'tholdoffset': 7000},
 'ep': 1,
 'etag': 'bbc2f7913c7a65be395fb394aac80a87',
 'lastseen': '2021-04-26T10:23Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Cucina 2',
 'state': {'dark': False,
           'daylight': False,
           'lastupdated': '2021-04-26T10:23:39.764',
           'lightlevel': 17482,
           'lux': 56},
 'swversion': '20170627',
 'type': 'ZHALightLevel',
 'uniqueid': '00:15:8d:00:04:51:75:fa-01-0400'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Cucina 2 created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 2900},
 'ep': 1,
 'etag': 'bbc2f7913c7a65be395fb394aac80a87',
 'lastseen': '2021-04-26T10:23Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Cucina 2',
 'state': {'lastupdated': '2021-04-26T10:23:39.764', 'presence': False},
 'swversion': '20170627',
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:04:51:75:fa-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Doccia created as 
{'config': {'battery': 100,
            'enrolled': 0,
            'on': True,
            'pending': [],
            'reachable': True,
            'temperature': 2400},
 'ep': 1,
 'etag': '0896da1ade25e2d904c8e9d1e7c749df',
 'lastseen': '2021-04-26T10:19Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_wleak.aq1',
 'name': 'Doccia',
 'state': {'lastupdated': '2021-04-26T10:19:18.193',
           'lowbattery': False,
           'tampered': False,
           'water': False},
 'swversion': '20170721',
 'type': 'ZHAWater',
 'uniqueid': '00:15:8d:00:02:89:b2:52-01-0500'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Salone created as 
{'config': {'battery': 31, 'offset': 0, 'on': True, 'reachable': False},
 'ep': 1,
 'etag': '4f956f62d3c70b132af4d2dd2935b656',
 'lastseen': None,
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_ht',
 'name': 'Salone',
 'state': {'lastupdated': '2021-02-17T00:43:06.899', 'temperature': 1993},
 'swversion': '20160516',
 'type': 'ZHATemperature',
 'uniqueid': '00:15:8d:00:01:59:ed:f6-01-0402'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Salone created as 
{'config': {'battery': 31, 'offset': 0, 'on': True, 'reachable': False},
 'ep': 1,
 'etag': '4f956f62d3c70b132af4d2dd2935b656',
 'lastseen': None,
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_ht',
 'name': 'Salone',
 'state': {'humidity': 4206, 'lastupdated': '2021-02-18T05:02:21.878'},
 'swversion': '20160516',
 'type': 'ZHAHumidity',
 'uniqueid': '00:15:8d:00:01:59:ed:f6-01-0405'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Corridoio1 created as 
{'config': {'battery': 100,
            'duration': 90,
            'on': True,
            'reachable': True,
            'temperature': 2500},
 'ep': 1,
 'etag': 'b129bad53859d2ec004581b35b9bdaf5',
 'lastseen': '2021-04-26T10:22Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Corridoio1',
 'state': {'lastupdated': '2021-04-26T10:22:15.142', 'presence': False},
 'swversion': '20170627',
 'type': 'ZHAPresence',
 'uniqueid': '00:15:8d:00:02:b4:39:f9-01-0406'}
2021-04-26 12:53:46 DEBUG (MainThread) [pydeconz.deconzdevice] Corridoio1 created as 
{'config': {'battery': 100,
            'on': True,
            'reachable': True,
            'temperature': 2500,
            'tholddark': 12000,
            'tholdoffset': 7000},
 'ep': 1,
 'etag': 'b129bad53859d2ec004581b35b9bdaf5',
 'lastseen': '2021-04-26T10:22Z',
 'manufacturername': 'LUMI',
 'modelid': 'lumi.sensor_motion.aq2',
 'name': 'Corridoio1',
 'state': {'dark': True,
           'daylight': False,
           'lastupdated': '2021-04-26T10:22:15.142',
           'lightlevel': 6021,
           'lux': 4},
 'swversion': '20170627',
 'type': 'ZHALightLevel',
 'uniqueid': '00:15:8d:00:02:b4:39:f9-01-0400'}
2021-04-26 12:53:46 DEBUG (MainThread) [homeassistant.components.deconz] deCONZ event created: tradfri_remote_control
2021-04-26 12:53:46 DEBUG (MainThread) [homeassistant.components.deconz] deCONZ event created: dimmer_switch
2021-04-26 12:53:46 DEBUG (MainThread) [homeassistant.components.deconz] deCONZ event created: interruttore_camera_di_adele
2021-04-26 12:53:46 DEBUG (MainThread) [homeassistant.components.deconz] deCONZ event created: interruttore_soggiorno
2021-04-26 12:53:46 INFO (MainThread) [pydeconz.websocket] Connected to deCONZ (192.168.2.202)
2021-04-26 12:53:57 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"13","lastannounced":null,"lastseen":"2021-04-26T10:53Z","manufacturername":"LIDL Silvercrest","modelid":"HG06337","name":"Umidificatore","swversion":"66","type":"On/Off plug-in unit","uniqueid":"ec:1b:bd:ff:fe:ac:1f:1a-0b"},"e":"changed","id":"13","r":"lights","t":"event","uniqueid":"ec:1b:bd:ff:fe:ac:1f:1a-0b"}
2021-04-26 12:53:59 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"duration":90,"on":true,"reachable":true,"temperature":2900},"e":"changed","id":"27","r":"sensors","t":"event","uniqueid":"00:15:8d:00:04:51:76:31-01-0406"}
2021-04-26 12:53:59 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"27","r":"sensors","state":{"lastupdated":"2021-04-26T10:53:59.252","presence":false},"t":"event","uniqueid":"00:15:8d:00:04:51:76:31-01-0406"}
2021-04-26 12:53:59 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"on":true,"reachable":true,"temperature":2900,"tholddark":12000,"tholdoffset":7000},"e":"changed","id":"32","r":"sensors","t":"event","uniqueid":"00:15:8d:00:04:51:76:31-01-0400"}
2021-04-26 12:53:59 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"32","r":"sensors","state":{"dark":true,"daylight":false,"lastupdated":"2021-04-26T10:53:59.252","lightlevel":9031,"lux":8},"t":"event","uniqueid":"00:15:8d:00:04:51:76:31-01-0400"}
2021-04-26 12:54:01 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"group":"8","on":true,"reachable":true},"e":"changed","id":"37","r":"sensors","t":"event","uniqueid":"00:17:88:01:02:c0:df:41-02-fc00"}
2021-04-26 12:54:06 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"ctmax":65279,"ctmin":0,"id":"11","lastannounced":"2021-03-24T09:33:02Z","lastseen":"2021-04-26T10:54Z","manufacturername":"LIDL Livarno Lux","modelid":null,"name":"Striscia Led Bagno Secondario","swversion":null,"type":"Extended color light","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"},"e":"changed","id":"11","r":"lights","t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 12:54:17 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"1","lastannounced":"2021-04-07T18:21:42Z","lastseen":"2021-04-26T10:54Z","manufacturername":"Philips","modelid":"LCT012","name":"Jack Lamp","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:88:36:c7-0b"},"e":"changed","id":"1","r":"lights","t":"event","uniqueid":"00:17:88:01:03:88:36:c7-0b"}
2021-04-26 12:54:17 DEBUG (MainThread) [homeassistant.components.deconz] deCONZ SSDP discovery {'UDN': 'uuid:e7565c9a-402e-45ef-87bd-4eb1e5e5eccc',
 'deviceType': 'urn:schemas-upnp-org:device:Basic:1',
 'friendlyName': 'Phoscon-GW (192.168.2.202)',
 'iconList': {'icon': {'depth': '24',
                       'height': '48',
                       'mimetype': 'image/png',
                       'url': 'hue_logo_0.png',
                       'width': '48'}},
 'manufacturer': 'Royal Philips Electronics',
 'manufacturerURL': 'http://www.dresden-elektronik.de',
 'modelDescription': 'Philips hue compatible Personal Wireless Lighting',
 'modelName': 'Philips hue bridge 2015',
 'modelNumber': 'BSB002',
 'modelURL': 'http://www.dresden-elektronik.de',
 'presentationURL': 'index.html',
 'serialNumber': '00212E04F4C4',
 'ssdp_ext': '',
 'ssdp_location': 'http://192.168.2.202:80/description.xml',
 'ssdp_server': 'Linux/3.14.0 UPnP/1.0 IpBridge/1.26.0',
 'ssdp_st': 'upnp:rootdevice',
 'ssdp_usn': 'uuid:e7565c9a-402e-45ef-87bd-4eb1e5e5eccc::upnp:rootdevice'}
2021-04-26 12:54:17 DEBUG (MainThread) [homeassistant.components.deconz] deCONZ SSDP discovery {'UDN': 'uuid:e7565c9a-402e-45ef-87bd-4eb1e5e5eccc',
 'deviceType': 'urn:schemas-upnp-org:device:Basic:1',
 'friendlyName': 'Phoscon-GW (192.168.2.202)',
 'iconList': {'icon': {'depth': '24',
                       'height': '48',
                       'mimetype': 'image/png',
                       'url': 'hue_logo_0.png',
                       'width': '48'}},
 'manufacturer': 'Royal Philips Electronics',
 'manufacturerURL': 'http://www.dresden-elektronik.de',
 'modelDescription': 'Philips hue compatible Personal Wireless Lighting',
 'modelName': 'Philips hue bridge 2015',
 'modelNumber': 'BSB002',
 'modelURL': 'http://www.dresden-elektronik.de',
 'presentationURL': 'index.html',
 'serialNumber': '00212E04F4C4',
 'ssdp_ext': '',
 'ssdp_location': 'http://192.168.2.202:80/description.xml',
 'ssdp_server': 'Linux/3.14.0 UPnP/1.0 IpBridge/1.26.0',
 'ssdp_st': 'uuid:e7565c9a-402e-45ef-87bd-4eb1e5e5eccc',
 'ssdp_usn': 'uuid:e7565c9a-402e-45ef-87bd-4eb1e5e5eccc'}
2021-04-26 12:54:17 DEBUG (MainThread) [homeassistant.components.deconz] deCONZ SSDP discovery {'UDN': 'uuid:e7565c9a-402e-45ef-87bd-4eb1e5e5eccc',
 'deviceType': 'urn:schemas-upnp-org:device:Basic:1',
 'friendlyName': 'Phoscon-GW (192.168.2.202)',
 'iconList': {'icon': {'depth': '24',
                       'height': '48',
                       'mimetype': 'image/png',
                       'url': 'hue_logo_0.png',
                       'width': '48'}},
 'manufacturer': 'Royal Philips Electronics',
 'manufacturerURL': 'http://www.dresden-elektronik.de',
 'modelDescription': 'Philips hue compatible Personal Wireless Lighting',
 'modelName': 'Philips hue bridge 2015',
 'modelNumber': 'BSB002',
 'modelURL': 'http://www.dresden-elektronik.de',
 'presentationURL': 'index.html',
 'serialNumber': '00212E04F4C4',
 'ssdp_ext': '',
 'ssdp_location': 'http://192.168.2.202:80/description.xml',
 'ssdp_server': 'Linux/3.14.0 UPnP/1.0 IpBridge/1.26.0',
 'ssdp_st': 'urn:schemas-upnp-org:device:basic:1',
 'ssdp_usn': 'uuid:e7565c9a-402e-45ef-87bd-4eb1e5e5eccc::urn:schemas-upnp-org:device:basic:1'}
2021-04-26 12:54:20 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"6","lastannounced":null,"lastseen":"2021-04-26T10:54Z","manufacturername":"dresden elektronik","modelid":"RaspBee","name":"Configuration tool 6","swversion":"0x264a0700","type":"Configuration tool","uniqueid":"00:21:2e:ff:ff:04:f4:c4-01"},"e":"changed","id":"6","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:04:f4:c4-01"}
2021-04-26 12:54:20 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"4","lastannounced":"2021-04-10T13:35:29Z","lastseen":"2021-04-26T10:54Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada SimonaSalvo","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2a:a0:86-0b"},"e":"changed","id":"4","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2a:a0:86-0b"}
2021-04-26 12:54:22 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"5","lastannounced":"2021-04-25T21:40:47Z","lastseen":"2021-04-26T10:54Z","manufacturername":"Philips","modelid":"LCT012","name":"Lampada Fiore","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"},"e":"changed","id":"5","r":"lights","t":"event","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"}
2021-04-26 12:54:22 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"9","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:54Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3","name":"Striscia Led Cucina","powerup":7,"swversion":"0214.201000EB","type":"Extended color light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"},"e":"changed","id":"9","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"}
2021-04-26 12:54:23 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"10","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:54Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3 White","name":"Dimmable light 10","powerup":7,"swversion":"0214.201000EB","type":"Dimmable light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"},"e":"changed","id":"10","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"}
2021-04-26 12:54:37 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"2","lastannounced":"2021-04-07T18:21:41Z","lastseen":"2021-04-26T10:54Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada Scrivania","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2e:84:13-0b"},"e":"changed","id":"2","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2e:84:13-0b"}
2021-04-26 12:54:40 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"3","lastannounced":"2021-04-17T09:33:29Z","lastseen":"2021-04-26T10:54Z","manufacturername":"Philips","modelid":"LCT010","name":"Piantana","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:02:f6:68:c1-0b"},"e":"changed","id":"3","r":"lights","t":"event","uniqueid":"00:17:88:01:02:f6:68:c1-0b"}
2021-04-26 12:54:53 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"sensors","state":{"dark":false,"daylight":false,"lastupdated":"2021-04-26T10:54:53.353","lightlevel":12788,"lux":19},"t":"event","uniqueid":"00:15:8d:00:02:b4:73:1e-01-0400"}
2021-04-26 12:54:53 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"10","r":"sensors","state":{"lastupdated":"2021-04-26T10:54:53.371","presence":true},"t":"event","uniqueid":"00:15:8d:00:02:b4:73:1e-01-0406"}
2021-04-26 12:55:15 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"ctmax":65279,"ctmin":0,"id":"11","lastannounced":"2021-03-24T09:33:02Z","lastseen":"2021-04-26T10:55Z","manufacturername":"LIDL Livarno Lux","modelid":null,"name":"Striscia Led Bagno Secondario","swversion":null,"type":"Extended color light","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"},"e":"changed","id":"11","r":"lights","t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 12:55:24 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"1","lastannounced":"2021-04-07T18:21:42Z","lastseen":"2021-04-26T10:55Z","manufacturername":"Philips","modelid":"LCT012","name":"Jack Lamp","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:88:36:c7-0b"},"e":"changed","id":"1","r":"lights","t":"event","uniqueid":"00:17:88:01:03:88:36:c7-0b"}
2021-04-26 12:55:29 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"4","lastannounced":"2021-04-10T13:35:29Z","lastseen":"2021-04-26T10:55Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada SimonaSalvo","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2a:a0:86-0b"},"e":"changed","id":"4","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2a:a0:86-0b"}
2021-04-26 12:55:29 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"5","lastannounced":"2021-04-25T21:40:47Z","lastseen":"2021-04-26T10:55Z","manufacturername":"Philips","modelid":"LCT012","name":"Lampada Fiore","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"},"e":"changed","id":"5","r":"lights","t":"event","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"}
2021-04-26 12:55:30 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"9","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:55Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3","name":"Striscia Led Cucina","powerup":7,"swversion":"0214.201000EB","type":"Extended color light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"},"e":"changed","id":"9","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"}
2021-04-26 12:55:31 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"10","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:55Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3 White","name":"Dimmable light 10","powerup":7,"swversion":"0214.201000EB","type":"Dimmable light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"},"e":"changed","id":"10","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"}
2021-04-26 12:55:43 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"3","lastannounced":"2021-04-17T09:33:29Z","lastseen":"2021-04-26T10:55Z","manufacturername":"Philips","modelid":"LCT010","name":"Piantana","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:02:f6:68:c1-0b"},"e":"changed","id":"3","r":"lights","t":"event","uniqueid":"00:17:88:01:02:f6:68:c1-0b"}
2021-04-26 12:55:44 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"2","lastannounced":"2021-04-07T18:21:41Z","lastseen":"2021-04-26T10:55Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada Scrivania","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2e:84:13-0b"},"e":"changed","id":"2","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2e:84:13-0b"}
2021-04-26 12:56:17 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"ctmax":65279,"ctmin":0,"id":"11","lastannounced":"2021-03-24T09:33:02Z","lastseen":"2021-04-26T10:56Z","manufacturername":"LIDL Livarno Lux","modelid":null,"name":"Striscia Led Bagno Secondario","swversion":null,"type":"Extended color light","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"},"e":"changed","id":"11","r":"lights","t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 12:56:23 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"10","r":"sensors","state":{"lastupdated":"2021-04-26T10:56:23.584","presence":false},"t":"event","uniqueid":"00:15:8d:00:02:b4:73:1e-01-0406"}
2021-04-26 12:56:32 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"1","lastannounced":"2021-04-07T18:21:42Z","lastseen":"2021-04-26T10:56Z","manufacturername":"Philips","modelid":"LCT012","name":"Jack Lamp","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:88:36:c7-0b"},"e":"changed","id":"1","r":"lights","t":"event","uniqueid":"00:17:88:01:03:88:36:c7-0b"}
2021-04-26 12:56:32 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"5","lastannounced":"2021-04-25T21:40:47Z","lastseen":"2021-04-26T10:56Z","manufacturername":"Philips","modelid":"LCT012","name":"Lampada Fiore","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"},"e":"changed","id":"5","r":"lights","t":"event","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"}
2021-04-26 12:56:34 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"4","lastannounced":"2021-04-10T13:35:29Z","lastseen":"2021-04-26T10:56Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada SimonaSalvo","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2a:a0:86-0b"},"e":"changed","id":"4","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2a:a0:86-0b"}
2021-04-26 12:56:36 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"9","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:56Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3","name":"Striscia Led Cucina","powerup":7,"swversion":"0214.201000EB","type":"Extended color light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"},"e":"changed","id":"9","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"}
2021-04-26 12:56:40 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"10","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:56Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3 White","name":"Dimmable light 10","powerup":7,"swversion":"0214.201000EB","type":"Dimmable light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"},"e":"changed","id":"10","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"}
2021-04-26 12:56:45 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"2","lastannounced":"2021-04-07T18:21:41Z","lastseen":"2021-04-26T10:56Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada Scrivania","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2e:84:13-0b"},"e":"changed","id":"2","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2e:84:13-0b"}
2021-04-26 12:56:48 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"3","lastannounced":"2021-04-17T09:33:29Z","lastseen":"2021-04-26T10:56Z","manufacturername":"Philips","modelid":"LCT010","name":"Piantana","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:02:f6:68:c1-0b"},"e":"changed","id":"3","r":"lights","t":"event","uniqueid":"00:17:88:01:02:f6:68:c1-0b"}
2021-04-26 12:57:06 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"31","r":"sensors","state":{"lastupdated":"2021-04-26T10:57:06.669","orientation":[5,8,-81],"tiltangle":7,"vibration":false,"vibrationstrength":8},"t":"event","uniqueid":"00:15:8d:00:02:b1:29:83-01-0101"}
2021-04-26 12:57:12 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"13","lastannounced":null,"lastseen":"2021-04-26T10:57Z","manufacturername":"LIDL Silvercrest","modelid":"HG06337","name":"Umidificatore","swversion":"66","type":"On/Off plug-in unit","uniqueid":"ec:1b:bd:ff:fe:ac:1f:1a-0b"},"e":"changed","id":"13","r":"lights","t":"event","uniqueid":"ec:1b:bd:ff:fe:ac:1f:1a-0b"}
2021-04-26 12:57:18 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"ctmax":65279,"ctmin":0,"id":"11","lastannounced":"2021-03-24T09:33:02Z","lastseen":"2021-04-26T10:57Z","manufacturername":"LIDL Livarno Lux","modelid":null,"name":"Striscia Led Bagno Secondario","swversion":null,"type":"Extended color light","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"},"e":"changed","id":"11","r":"lights","t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 12:57:33 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"5","lastannounced":"2021-04-25T21:40:47Z","lastseen":"2021-04-26T10:57Z","manufacturername":"Philips","modelid":"LCT012","name":"Lampada Fiore","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"},"e":"changed","id":"5","r":"lights","t":"event","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"}
2021-04-26 12:57:34 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"6","lastannounced":null,"lastseen":"2021-04-26T10:57Z","manufacturername":"dresden elektronik","modelid":"RaspBee","name":"Configuration tool 6","swversion":"0x264a0700","type":"Configuration tool","uniqueid":"00:21:2e:ff:ff:04:f4:c4-01"},"e":"changed","id":"6","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:04:f4:c4-01"}
2021-04-26 12:57:35 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"1","lastannounced":"2021-04-07T18:21:42Z","lastseen":"2021-04-26T10:57Z","manufacturername":"Philips","modelid":"LCT012","name":"Jack Lamp","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:88:36:c7-0b"},"e":"changed","id":"1","r":"lights","t":"event","uniqueid":"00:17:88:01:03:88:36:c7-0b"}
2021-04-26 12:57:40 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"4","lastannounced":"2021-04-10T13:35:29Z","lastseen":"2021-04-26T10:57Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada SimonaSalvo","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2a:a0:86-0b"},"e":"changed","id":"4","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2a:a0:86-0b"}
2021-04-26 12:57:43 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"10","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:57Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3 White","name":"Dimmable light 10","powerup":7,"swversion":"0214.201000EB","type":"Dimmable light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"},"e":"changed","id":"10","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"}
2021-04-26 12:57:45 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"9","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:57Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3","name":"Striscia Led Cucina","powerup":7,"swversion":"0214.201000EB","type":"Extended color light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"},"e":"changed","id":"9","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"}
2021-04-26 12:57:48 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"2","lastannounced":"2021-04-07T18:21:41Z","lastseen":"2021-04-26T10:57Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada Scrivania","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2e:84:13-0b"},"e":"changed","id":"2","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2e:84:13-0b"}
2021-04-26 12:57:49 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"3","lastannounced":"2021-04-17T09:33:29Z","lastseen":"2021-04-26T10:57Z","manufacturername":"Philips","modelid":"LCT010","name":"Piantana","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:02:f6:68:c1-0b"},"e":"changed","id":"3","r":"lights","t":"event","uniqueid":"00:17:88:01:02:f6:68:c1-0b"}
2021-04-26 12:57:57 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"on":true,"reachable":true,"temperature":2900},"e":"changed","id":"33","r":"sensors","t":"event","uniqueid":"00:15:8d:00:04:7e:bd:e4-01-0006"}
2021-04-26 12:57:57 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"33","r":"sensors","state":{"lastupdated":"2021-04-26T10:57:57.087","open":false},"t":"event","uniqueid":"00:15:8d:00:04:7e:bd:e4-01-0006"}
2021-04-26 12:58:25 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"ctmax":65279,"ctmin":0,"id":"11","lastannounced":"2021-03-24T09:33:02Z","lastseen":"2021-04-26T10:58Z","manufacturername":"LIDL Livarno Lux","modelid":null,"name":"Striscia Led Bagno Secondario","swversion":null,"type":"Extended color light","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"},"e":"changed","id":"11","r":"lights","t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 12:58:38 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"1","lastannounced":"2021-04-07T18:21:42Z","lastseen":"2021-04-26T10:58Z","manufacturername":"Philips","modelid":"LCT012","name":"Jack Lamp","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:88:36:c7-0b"},"e":"changed","id":"1","r":"lights","t":"event","uniqueid":"00:17:88:01:03:88:36:c7-0b"}
2021-04-26 12:58:40 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"5","lastannounced":"2021-04-25T21:40:47Z","lastseen":"2021-04-26T10:58Z","manufacturername":"Philips","modelid":"LCT012","name":"Lampada Fiore","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"},"e":"changed","id":"5","r":"lights","t":"event","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"}
2021-04-26 12:58:44 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"10","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:58Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3 White","name":"Dimmable light 10","powerup":7,"swversion":"0214.201000EB","type":"Dimmable light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"},"e":"changed","id":"10","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"}
2021-04-26 12:58:48 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"2","lastannounced":"2021-04-07T18:21:41Z","lastseen":"2021-04-26T10:58Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada Scrivania","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2e:84:13-0b"},"e":"changed","id":"2","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2e:84:13-0b"}
2021-04-26 12:58:49 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"4","lastannounced":"2021-04-10T13:35:29Z","lastseen":"2021-04-26T10:58Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada SimonaSalvo","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2a:a0:86-0b"},"e":"changed","id":"4","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2a:a0:86-0b"}
2021-04-26 12:58:52 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"9","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:58Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3","name":"Striscia Led Cucina","powerup":7,"swversion":"0214.201000EB","type":"Extended color light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"},"e":"changed","id":"9","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"}
2021-04-26 12:58:53 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"3","lastannounced":"2021-04-17T09:33:29Z","lastseen":"2021-04-26T10:58Z","manufacturername":"Philips","modelid":"LCT010","name":"Piantana","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:02:f6:68:c1-0b"},"e":"changed","id":"3","r":"lights","t":"event","uniqueid":"00:17:88:01:02:f6:68:c1-0b"}
2021-04-26 12:59:00 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"duration":90,"on":true,"reachable":true,"temperature":3000},"e":"changed","id":"17","r":"sensors","t":"event","uniqueid":"00:15:8d:00:02:b4:8e:47-01-0406"}
2021-04-26 12:59:00 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"17","r":"sensors","state":{"lastupdated":"2021-04-26T10:59:00.803","presence":false},"t":"event","uniqueid":"00:15:8d:00:02:b4:8e:47-01-0406"}
2021-04-26 12:59:00 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"on":true,"reachable":true,"temperature":3000,"tholddark":12000,"tholdoffset":7000},"e":"changed","id":"16","r":"sensors","t":"event","uniqueid":"00:15:8d:00:02:b4:8e:47-01-0400"}
2021-04-26 12:59:00 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"16","r":"sensors","state":{"dark":true,"daylight":false,"lastupdated":"2021-04-26T10:59:00.803","lightlevel":10792,"lux":12},"t":"event","uniqueid":"00:15:8d:00:02:b4:8e:47-01-0400"}
2021-04-26 12:59:02 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"group":"8","on":true,"reachable":true},"e":"changed","id":"37","r":"sensors","t":"event","uniqueid":"00:17:88:01:02:c0:df:41-02-fc00"}
2021-04-26 12:59:29 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"ctmax":65279,"ctmin":0,"id":"11","lastannounced":"2021-03-24T09:33:02Z","lastseen":"2021-04-26T10:59Z","manufacturername":"LIDL Livarno Lux","modelid":null,"name":"Striscia Led Bagno Secondario","swversion":null,"type":"Extended color light","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"},"e":"changed","id":"11","r":"lights","t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 12:59:30 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"on":true,"reachable":true},"e":"changed","id":"39","r":"sensors","t":"event","uniqueid":"00:15:8d:00:01:0b:2b:6b-01-0006"}
2021-04-26 12:59:44 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"10","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T10:59Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3 White","name":"Dimmable light 10","powerup":7,"swversion":"0214.201000EB","type":"Dimmable light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"},"e":"changed","id":"10","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"}
2021-04-26 12:59:45 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"5","lastannounced":"2021-04-25T21:40:47Z","lastseen":"2021-04-26T10:59Z","manufacturername":"Philips","modelid":"LCT012","name":"Lampada Fiore","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"},"e":"changed","id":"5","r":"lights","t":"event","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"}
2021-04-26 12:59:47 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"1","lastannounced":"2021-04-07T18:21:42Z","lastseen":"2021-04-26T10:59Z","manufacturername":"Philips","modelid":"LCT012","name":"Jack Lamp","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:88:36:c7-0b"},"e":"changed","id":"1","r":"lights","t":"event","uniqueid":"00:17:88:01:03:88:36:c7-0b"}
2021-04-26 12:59:50 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"4","lastannounced":"2021-04-10T13:35:29Z","lastseen":"2021-04-26T10:59Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada SimonaSalvo","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2a:a0:86-0b"},"e":"changed","id":"4","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2a:a0:86-0b"}
2021-04-26 12:59:53 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"2","lastannounced":"2021-04-07T18:21:41Z","lastseen":"2021-04-26T10:59Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada Scrivania","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2e:84:13-0b"},"e":"changed","id":"2","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2e:84:13-0b"}
2021-04-26 12:59:57 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"3","lastannounced":"2021-04-17T09:33:29Z","lastseen":"2021-04-26T10:59Z","manufacturername":"Philips","modelid":"LCT010","name":"Piantana","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:02:f6:68:c1-0b"},"e":"changed","id":"3","r":"lights","t":"event","uniqueid":"00:17:88:01:02:f6:68:c1-0b"}
2021-04-26 13:00:00 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"9","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T11:00Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3","name":"Striscia Led Cucina","powerup":7,"swversion":"0214.201000EB","type":"Extended color light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"},"e":"changed","id":"9","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"}
2021-04-26 13:00:05 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"offset":0,"on":true,"reachable":true},"e":"changed","id":"23","r":"sensors","t":"event","uniqueid":"00:15:8d:00:01:5a:f2:d3-01-0402"}
2021-04-26 13:00:05 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"23","r":"sensors","state":{"lastupdated":"2021-04-26T11:00:05.623","temperature":2255},"t":"event","uniqueid":"00:15:8d:00:01:5a:f2:d3-01-0402"}
2021-04-26 13:00:05 DEBUG (MainThread) [pydeconz.websocket] {"config":{"battery":100,"offset":0,"on":true,"reachable":true},"e":"changed","id":"24","r":"sensors","t":"event","uniqueid":"00:15:8d:00:01:5a:f2:d3-01-0405"}
2021-04-26 13:00:05 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"24","r":"sensors","state":{"humidity":4784,"lastupdated":"2021-04-26T11:00:05.623"},"t":"event","uniqueid":"00:15:8d:00:01:5a:f2:d3-01-0405"}
2021-04-26 13:00:08 ERROR (MainThread) [homeassistant.components.openuv] Error during uv index data update: Error requesting data from uv: 500, message='Internal Server Error', url=URL('https://api.openuv.io/api/v1/uv?lat=45.07&lng=7.66&alt=238.0')
2021-04-26 13:00:19 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"13","lastannounced":null,"lastseen":"2021-04-26T11:00Z","manufacturername":"LIDL Silvercrest","modelid":"HG06337","name":"Umidificatore","swversion":"66","type":"On/Off plug-in unit","uniqueid":"ec:1b:bd:ff:fe:ac:1f:1a-0b"},"e":"changed","id":"13","r":"lights","t":"event","uniqueid":"ec:1b:bd:ff:fe:ac:1f:1a-0b"}
2021-04-26 13:00:29 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"ctmax":65279,"ctmin":0,"id":"11","lastannounced":"2021-03-24T09:33:02Z","lastseen":"2021-04-26T11:00Z","manufacturername":"LIDL Livarno Lux","modelid":null,"name":"Striscia Led Bagno Secondario","swversion":null,"type":"Extended color light","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"},"e":"changed","id":"11","r":"lights","t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:00:37 DEBUG (MainThread) [pydeconz.gateway] Sending "put" "{'on': True, 'xy': (0.488, 0.316), 'bri': 255}" to "192.168.2.202 /lights/11/state"
2021-04-26 13:00:37 DEBUG (MainThread) [pydeconz.gateway] HTTP request response: [{'success': {'/lights/11/state/on': True}},
 {'success': {'/lights/11/state/bri': 254}},
 {'success': {'/lights/11/state/xy': [0.488, 0.316]}}]
2021-04-26 13:00:37 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":254,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.488,0.316]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:00:37 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"13","r":"groups","state":{"all_on":true,"any_on":true},"t":"event"}
2021-04-26 13:00:37 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":2,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.488,0.316]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:00:38 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":254,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.488,0.316]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:00:42 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"6","lastannounced":null,"lastseen":"2021-04-26T11:00Z","manufacturername":"dresden elektronik","modelid":"RaspBee","name":"Configuration tool 6","swversion":"0x264a0700","type":"Configuration tool","uniqueid":"00:21:2e:ff:ff:04:f4:c4-01"},"e":"changed","id":"6","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:04:f4:c4-01"}
2021-04-26 13:00:46 DEBUG (MainThread) [pydeconz.gateway] Sending "put" "{'on': True, 'xy': (0.488, 0.316), 'bri': 46}" to "192.168.2.202 /lights/11/state"
2021-04-26 13:00:46 DEBUG (MainThread) [pydeconz.gateway] HTTP request response: [{'success': {'/lights/11/state/on': True}},
 {'success': {'/lights/11/state/bri': 46}},
 {'success': {'/lights/11/state/xy': [0.488, 0.316]}}]
2021-04-26 13:00:46 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":46,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.488,0.316]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:00:46 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"5","lastannounced":"2021-04-25T21:40:47Z","lastseen":"2021-04-26T11:00Z","manufacturername":"Philips","modelid":"LCT012","name":"Lampada Fiore","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"},"e":"changed","id":"5","r":"lights","t":"event","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"}
2021-04-26 13:00:48 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"10","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T11:00Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3 White","name":"Dimmable light 10","powerup":7,"swversion":"0214.201000EB","type":"Dimmable light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"},"e":"changed","id":"10","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"}
2021-04-26 13:00:49 DEBUG (MainThread) [pydeconz.gateway] Sending "put" "{'on': True, 'xy': (0.189, 0.284), 'bri': 255}" to "192.168.2.202 /lights/11/state"
2021-04-26 13:00:49 DEBUG (MainThread) [pydeconz.gateway] HTTP request response: [{'success': {'/lights/11/state/on': True}},
 {'success': {'/lights/11/state/bri': 254}},
 {'success': {'/lights/11/state/xy': [0.189, 0.284]}}]
2021-04-26 13:00:49 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":254,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.189,0.284]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:00:51 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"1","lastannounced":"2021-04-07T18:21:42Z","lastseen":"2021-04-26T11:00Z","manufacturername":"Philips","modelid":"LCT012","name":"Jack Lamp","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:88:36:c7-0b"},"e":"changed","id":"1","r":"lights","t":"event","uniqueid":"00:17:88:01:03:88:36:c7-0b"}
2021-04-26 13:00:51 DEBUG (MainThread) [pydeconz.gateway] Sending "put" "{'on': True, 'xy': (0.488, 0.316), 'bri': 43}" to "192.168.2.202 /lights/11/state"
2021-04-26 13:00:51 DEBUG (MainThread) [pydeconz.gateway] HTTP request response: [{'success': {'/lights/11/state/on': True}},
 {'success': {'/lights/11/state/bri': 43}},
 {'success': {'/lights/11/state/xy': [0.488, 0.316]}}]
2021-04-26 13:00:51 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":43,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.488,0.316]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:00:53 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"2","lastannounced":"2021-04-07T18:21:41Z","lastseen":"2021-04-26T11:00Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada Scrivania","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2e:84:13-0b"},"e":"changed","id":"2","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2e:84:13-0b"}
2021-04-26 13:00:55 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"4","lastannounced":"2021-04-10T13:35:29Z","lastseen":"2021-04-26T11:00Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada SimonaSalvo","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2a:a0:86-0b"},"e":"changed","id":"4","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2a:a0:86-0b"}
2021-04-26 13:01:00 DEBUG (MainThread) [pydeconz.gateway] Sending "put" "{'on': True, 'xy': (0.189, 0.284), 'bri': 255}" to "192.168.2.202 /lights/11/state"
2021-04-26 13:01:00 DEBUG (MainThread) [pydeconz.gateway] HTTP request response: [{'success': {'/lights/11/state/on': True}},
 {'success': {'/lights/11/state/bri': 254}},
 {'success': {'/lights/11/state/xy': [0.189, 0.284]}}]
2021-04-26 13:01:00 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":254,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.189,0.284]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:01:00 DEBUG (MainThread) [pydeconz.gateway] Sending "put" "{'on': True, 'xy': (0.189, 0.284), 'bri': 255}" to "192.168.2.202 /lights/11/state"
2021-04-26 13:01:00 DEBUG (MainThread) [pydeconz.gateway] HTTP request response: [{'success': {'/lights/11/state/on': True}},
 {'success': {'/lights/11/state/bri': 254}},
 {'success': {'/lights/11/state/xy': [0.189, 0.284]}}]
2021-04-26 13:01:03 DEBUG (MainThread) [pydeconz.gateway] Sending "put" "{'on': True, 'xy': (0.488, 0.316), 'bri': 51}" to "192.168.2.202 /lights/11/state"
2021-04-26 13:01:03 DEBUG (MainThread) [pydeconz.gateway] HTTP request response: [{'success': {'/lights/11/state/on': True}},
 {'success': {'/lights/11/state/bri': 51}},
 {'success': {'/lights/11/state/xy': [0.488, 0.316]}}]
2021-04-26 13:01:03 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":51,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.488,0.316]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:01:03 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"3","lastannounced":"2021-04-17T09:33:29Z","lastseen":"2021-04-26T11:01Z","manufacturername":"Philips","modelid":"LCT010","name":"Piantana","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:02:f6:68:c1-0b"},"e":"changed","id":"3","r":"lights","t":"event","uniqueid":"00:17:88:01:02:f6:68:c1-0b"}
2021-04-26 13:01:06 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"9","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T11:01Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3","name":"Striscia Led Cucina","powerup":7,"swversion":"0214.201000EB","type":"Extended color light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"},"e":"changed","id":"9","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"}
2021-04-26 13:01:40 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"ctmax":65279,"ctmin":0,"id":"11","lastannounced":"2021-03-24T09:33:02Z","lastseen":"2021-04-26T11:01Z","manufacturername":"LIDL Livarno Lux","modelid":null,"name":"Striscia Led Bagno Secondario","swversion":null,"type":"Extended color light","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"},"e":"changed","id":"11","r":"lights","t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}
2021-04-26 13:01:48 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"5","lastannounced":"2021-04-25T21:40:47Z","lastseen":"2021-04-26T11:01Z","manufacturername":"Philips","modelid":"LCT012","name":"Lampada Fiore","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"},"e":"changed","id":"5","r":"lights","t":"event","uniqueid":"00:17:88:01:03:b8:c2:aa-0b"}
2021-04-26 13:01:50 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"id":"10","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T11:01Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3 White","name":"Dimmable light 10","powerup":7,"swversion":"0214.201000EB","type":"Dimmable light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"},"e":"changed","id":"10","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0b"}
2021-04-26 13:01:52 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"1","lastannounced":"2021-04-07T18:21:42Z","lastseen":"2021-04-26T11:01Z","manufacturername":"Philips","modelid":"LCT012","name":"Jack Lamp","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:03:88:36:c7-0b"},"e":"changed","id":"1","r":"lights","t":"event","uniqueid":"00:17:88:01:03:88:36:c7-0b"}
2021-04-26 13:01:53 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"2","lastannounced":"2021-04-07T18:21:41Z","lastseen":"2021-04-26T11:01Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada Scrivania","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2e:84:13-0b"},"e":"changed","id":"2","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2e:84:13-0b"}
2021-04-26 13:01:56 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"4","lastannounced":"2021-04-10T13:35:29Z","lastseen":"2021-04-26T11:01Z","manufacturername":"Philips","modelid":"LCT007","name":"Lampada SimonaSalvo","swversion":"5.127.1.26420","type":"Extended color light","uniqueid":"00:17:88:01:10:2a:a0:86-0b"},"e":"changed","id":"4","r":"lights","t":"event","uniqueid":"00:17:88:01:10:2a:a0:86-0b"}
2021-04-26 13:02:04 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"3","lastannounced":"2021-04-17T09:33:29Z","lastseen":"2021-04-26T11:02Z","manufacturername":"Philips","modelid":"LCT010","name":"Piantana","swversion":"1.46.13_r26312","type":"Extended color light","uniqueid":"00:17:88:01:02:f6:68:c1-0b"},"e":"changed","id":"3","r":"lights","t":"event","uniqueid":"00:17:88:01:02:f6:68:c1-0b"}
2021-04-26 13:02:08 DEBUG (MainThread) [pydeconz.websocket] {"attr":{"colorcapabilities":31,"ctmax":500,"ctmin":153,"id":"9","lastannounced":"2021-04-07T18:21:40Z","lastseen":"2021-04-26T11:02Z","manufacturername":"dresden elektronik","modelid":"FLS-PP3","name":"Striscia Led Cucina","powerup":7,"swversion":"0214.201000EB","type":"Extended color light","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"},"e":"changed","id":"9","r":"lights","t":"event","uniqueid":"00:21:2e:ff:ff:05:8f:ea-0a"}
2021-04-26 13:02:08 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"31","r":"sensors","state":{"lastupdated":"2021-04-26T11:02:08.412","orientation":[5,8,-81],"tiltangle":7,"vibration":false,"vibrationstrength":6},"t":"event","uniqueid":"00:15:8d:00:02:b1:29:83-01-0101"}

@ebaauw
Copy link
Collaborator

ebaauw commented Apr 26, 2021

Please, next time attach a log file instead of listing large amounts of text.

The API seems to be working correctly; I don't see any discrepancies between the requested and reported brightness (except that 255 is not a valid value for bri and mapped to 254). The value 219 doesn't even appear in the log.

Here HA is setting on, brightness, and colour:

2021-04-26 13:00:37 DEBUG (MainThread) [pydeconz.gateway] Sending "put" "{'on': True, 'xy': (0.488, 0.316), 'bri': 255}" to "192.168.2.202 /lights/11/state"

deCONZ accepts the command:

2021-04-26 13:00:37 DEBUG (MainThread) [pydeconz.gateway] HTTP request response: [{'success': {'/lights/11/state/on': True}},
 {'success': {'/lights/11/state/bri': 254}},
 {'success': {'/lights/11/state/xy': [0.488, 0.316]}}]

Then it sends a websocket notification as a result of the command:

2021-04-26 13:00:37 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":254,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.488,0.316]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}

Next, it sends a notification for bri 2. This is caused by an attribute report by the lightstrip, on the Move to Level (with On/Off) (2, 0) that deCONZ sends when PUTing both on and bri:

2021-04-26 13:00:37 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":2,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.488,0.316]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}

Which is followed by the attribute report for bri 254, after the Move to Level (254, 4):

2021-04-26 13:00:38 DEBUG (MainThread) [pydeconz.websocket] {"e":"changed","id":"11","r":"lights","state":{"alert":null,"bri":254,"colormode":"xy","ct":153,"on":true,"reachable":true,"xy":[0.488,0.316]},"t":"event","uniqueid":"84:2e:14:ff:fe:2c:43:89-01"}

deCONZ correctly reports bri 254.

@jokerigno
Copy link
Author

jokerigno commented Apr 26, 2021

OPS. Sorry.

And sorry for 219. I changed default value to 255.

I don't know what you see but what I see is not that correct. Basically I switched light on and then changed 1) color 2) brightness. As told in previous post every time light is reset to defaul values.

@ebaauw
Copy link
Collaborator

ebaauw commented Apr 26, 2021

From your log, deCONZ is reporting the brightness requested by HA. If that's not what you expect, you need to check the HA side. I do see HA sending requests to change the brightness to 255.

@LeoeLeoeL
Copy link

After a power loss, Deconz and HA report a brightness of 255 even if the real brightness of the lamps is 1.

@jokerigno
Copy link
Author

@ebaauw don't know if is an attribute that can be implemented or not. I tried to change PowerOn OnOff behaviour but it reports unsupported attribute.

image

I avoided creating another issue because maybe it's just a lack of feature (like colorloop). Don't you agree?

@Mimiix
Copy link
Collaborator

Mimiix commented May 8, 2021

@jokerigno it's something the device needs to support. So unfortunately this can't be implemented by us 😢

@LeoeLeoeL
Copy link

For curiosity, I bought the Lidl bridge yesterday.
Lights don'thave the Power On option but plugs do.
A strange thing, I configured a plug to stay off after a power loss. Then I paired that plug in Deconz. The plug remembers to stay off after a power loss.

@jokerigno
Copy link
Author

@jokerigno it's something the device needs to support. So unfortunately this can't be implemented by us 😢

I was afraid of it but I asked you just to be sure. Thank you for your feedback :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Device Improvement Additional tag to attach to a existing issue. Device Request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants