| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148 |
- {
- "version": 1,
- "minor_version": 3,
- "key": "core.device_registry",
- "data": {
- "devices": [
- {
- "area_id": null,
- "config_entries": [
- "2473ec57313d75372bd51c8bd55d7c56"
- ],
- "configuration_url": "https://www.met.no/en",
- "connections": [],
- "disabled_by": null,
- "entry_type": "service",
- "hw_version": null,
- "id": "c60e99f123c2f9dae739e95625f0b104",
- "identifiers": [
- [
- "met"
- ]
- ],
- "manufacturer": "Met.no",
- "model": "Forecast",
- "name_by_user": null,
- "name": "Forecast",
- "sw_version": null,
- "via_device_id": null
- },
- {
- "area_id": "studio",
- "config_entries": [
- "a9d89ed6635a271e2b3316969e2e5f73"
- ],
- "configuration_url": "http://192.168.1.139:1400/support/review",
- "connections": [
- [
- "mac",
- "34:7e:5c:31:fe:52"
- ],
- [
- "upnp",
- "uuid:RINCON_347E5C31FE5201400"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "d830537cd26674302e00cb911cdf2df5",
- "identifiers": [
- [
- "sonos",
- "RINCON_347E5C31FE5201400"
- ]
- ],
- "manufacturer": "Sonos",
- "model": "SYMFONISK Bookshelf",
- "name_by_user": null,
- "name": "Studio",
- "sw_version": "14.18",
- "via_device_id": null
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "a9d89ed6635a271e2b3316969e2e5f73"
- ],
- "configuration_url": "http://192.168.1.52:1400/support/review",
- "connections": [
- [
- "mac",
- "00:0e:58:b7:af:6b"
- ],
- [
- "upnp",
- "uuid:RINCON_000E58B7AF6B01400"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "f2feea216030e6860ecbc4ab698c1a49",
- "identifiers": [
- [
- "sonos",
- "RINCON_000E58B7AF6B01400"
- ]
- ],
- "manufacturer": "Sonos",
- "model": "Playbar",
- "name_by_user": null,
- "name": "Wohnzimmer",
- "sw_version": "14.18",
- "via_device_id": null
- },
- {
- "area_id": "schlafzimmer",
- "config_entries": [
- "a9d89ed6635a271e2b3316969e2e5f73"
- ],
- "configuration_url": "http://192.168.1.35:1400/support/review",
- "connections": [
- [
- "mac",
- "78:28:ca:14:25:e6"
- ],
- [
- "upnp",
- "uuid:RINCON_7828CA1425E601400"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "30b7e99b9f329e91f604225c0b43480c",
- "identifiers": [
- [
- "sonos",
- "RINCON_7828CA1425E601400"
- ]
- ],
- "manufacturer": "Sonos",
- "model": "One",
- "name_by_user": null,
- "name": "Schlafzimmer",
- "sw_version": "14.18",
- "via_device_id": null
- },
- {
- "area_id": "kuche",
- "config_entries": [
- "a9d89ed6635a271e2b3316969e2e5f73"
- ],
- "configuration_url": "http://192.168.1.33:1400/support/review",
- "connections": [
- [
- "upnp",
- "uuid:RINCON_B8E9378F694401400"
- ],
- [
- "mac",
- "b8:e9:37:8f:69:44"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "34ed75e9418deb3d0d0db8f50932f994",
- "identifiers": [
- [
- "sonos",
- "RINCON_B8E9378F694401400"
- ]
- ],
- "manufacturer": "Sonos",
- "model": "Play:1",
- "name_by_user": null,
- "name": "Küche",
- "sw_version": "14.18",
- "via_device_id": null
- },
- {
- "area_id": "bad",
- "config_entries": [
- "a9d89ed6635a271e2b3316969e2e5f73"
- ],
- "configuration_url": "http://192.168.1.120:1400/support/review",
- "connections": [
- [
- "upnp",
- "uuid:RINCON_7828CA98144C01400"
- ],
- [
- "mac",
- "78:28:ca:98:14:4c"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "0f4f07b44954122a7aac3efee8ceeb8d",
- "identifiers": [
- [
- "sonos",
- "RINCON_7828CA98144C01400"
- ]
- ],
- "manufacturer": "Sonos",
- "model": "Play:1",
- "name_by_user": null,
- "name": "Bad",
- "sw_version": "14.18",
- "via_device_id": null
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "a9d89ed6635a271e2b3316969e2e5f73"
- ],
- "configuration_url": "http://192.168.1.155:1400/support/review",
- "connections": [
- [
- "upnp",
- "uuid:RINCON_542A1B58D5CA01400"
- ],
- [
- "mac",
- "54:2a:1b:58:d5:ca"
- ]
- ],
- "disabled_by": "user",
- "entry_type": null,
- "hw_version": null,
- "id": "ca84561593cba7b4973e616006a45796",
- "identifiers": [
- [
- "sonos",
- "RINCON_542A1B58D5CA01400"
- ]
- ],
- "manufacturer": "Sonos",
- "model": "SYMFONISK Bookshelf",
- "name_by_user": null,
- "name": "Wohnzimmer 2",
- "sw_version": "13.4.1",
- "via_device_id": null
- },
- {
- "area_id": null,
- "config_entries": [
- "a9d89ed6635a271e2b3316969e2e5f73"
- ],
- "configuration_url": "http://192.168.1.157:1400/support/review",
- "connections": [
- [
- "upnp",
- "uuid:RINCON_542A1B58D88401400"
- ],
- [
- "mac",
- "54:2a:1b:58:d8:84"
- ]
- ],
- "disabled_by": "user",
- "entry_type": null,
- "hw_version": null,
- "id": "60c6fb10c47831f976b44f2ede530dc0",
- "identifiers": [
- [
- "sonos",
- "RINCON_542A1B58D88401400"
- ]
- ],
- "manufacturer": "Sonos",
- "model": "SYMFONISK Bookshelf",
- "name_by_user": null,
- "name": "Wohnzimmer CL 2",
- "sw_version": "13.4.1",
- "via_device_id": null
- },
- {
- "area_id": "studio",
- "config_entries": [
- "fa0e280bd4614fd2cb17e63bf2db4efc"
- ],
- "configuration_url": "https://192.168.1.37:5001",
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "0e2c2a108c9c6831f22f9de4e5e1266c",
- "identifiers": [
- [
- "synology_dsm",
- "CAL1N04726"
- ]
- ],
- "manufacturer": "Synology",
- "model": "DS213+",
- "name_by_user": null,
- "name": "SynologyDS",
- "sw_version": "DSM 6.2.4-25556 Update 5",
- "via_device_id": null
- },
- {
- "area_id": null,
- "config_entries": [
- "fa0e280bd4614fd2cb17e63bf2db4efc"
- ],
- "configuration_url": "https://192.168.1.37:5001",
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "942d4c332d7f10e23080efbaed108d0b",
- "identifiers": [
- [
- "synology_dsm",
- "CAL1N04726_sda"
- ]
- ],
- "manufacturer": "WDC ",
- "model": "WD30EFRX-68AX9N0",
- "name_by_user": null,
- "name": "SynologyDS (Laufwerk 1)",
- "sw_version": "80.00A80",
- "via_device_id": "0e2c2a108c9c6831f22f9de4e5e1266c"
- },
- {
- "area_id": null,
- "config_entries": [
- "fa0e280bd4614fd2cb17e63bf2db4efc"
- ],
- "configuration_url": "https://192.168.1.37:5001",
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "9ae43e0bd29c6402e57940f3949a5381",
- "identifiers": [
- [
- "synology_dsm",
- "CAL1N04726_sdb"
- ]
- ],
- "manufacturer": "WDC ",
- "model": "WD30EFRX-68AX9N0",
- "name_by_user": null,
- "name": "SynologyDS (Laufwerk 2)",
- "sw_version": "80.00A80",
- "via_device_id": "0e2c2a108c9c6831f22f9de4e5e1266c"
- },
- {
- "area_id": "studio",
- "config_entries": [
- "fa0e280bd4614fd2cb17e63bf2db4efc"
- ],
- "configuration_url": "https://192.168.1.37:5001",
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "bcf625a88945a723aa4f644e4f9e5764",
- "identifiers": [
- [
- "synology_dsm",
- "CAL1N04726_volume_1"
- ]
- ],
- "manufacturer": "Synology",
- "model": "DS213+",
- "name_by_user": null,
- "name": "SynologyDS (Volume 1)",
- "sw_version": "DSM 6.2.4-25556 Update 5",
- "via_device_id": "0e2c2a108c9c6831f22f9de4e5e1266c"
- },
- {
- "area_id": null,
- "config_entries": [
- "8d2b402e4788a72ce69ea0667859d989"
- ],
- "configuration_url": "homeassistant://hacs",
- "connections": [],
- "disabled_by": null,
- "entry_type": "service",
- "hw_version": null,
- "id": "0527d8866574cd7d33b9211adcc5ae86",
- "identifiers": [
- [
- "hacs",
- "0717a0cd-745c-48fd-9b16-c8534c9704f9-bc944b0f-fd42-4a58-a072-ade38d1444cd"
- ]
- ],
- "manufacturer": "hacs.xyz",
- "model": "",
- "name_by_user": null,
- "name": "HACS",
- "sw_version": "1.28.3",
- "via_device_id": null
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "mac",
- "02:42:ac:13:00:04"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "be8acf95a5d463e9db687d1bffcfd948",
- "identifiers": [],
- "manufacturer": null,
- "model": null,
- "name_by_user": null,
- "name": null,
- "sw_version": null,
- "via_device_id": null
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": "http://192.168.1.146:1505",
- "connections": [],
- "disabled_by": null,
- "entry_type": "service",
- "hw_version": null,
- "id": "7481093451fd5c7884d870a6fa5f63c4",
- "identifiers": [
- [
- "deconz",
- "00212E042731"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ",
- "name_by_user": null,
- "name": "Phoscon-GW",
- "sw_version": "2.13.4",
- "via_device_id": null
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "5c:02:72:ff:fe:9b:93:e9"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "050a906aab9b8462778e1eef82cf9c19",
- "identifiers": [
- [
- "deconz",
- "5c:02:72:ff:fe:9b:93:e9"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI on/off switch",
- "name_by_user": null,
- "name": "Wohnzimmer on/off switch",
- "sw_version": "2.2.010",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "bc:33:ac:ff:fe:c4:16:37"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "0dc2f3001fbc77074ca8196c1a9122d8",
- "identifiers": [
- [
- "deconz",
- "bc:33:ac:ff:fe:c4:16:37"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI remote control",
- "name_by_user": null,
- "name": "TRÅDFRI Küche",
- "sw_version": "2.3.014",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:15:8d:00:04:6e:7a:e3"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "d619794e5df4dca628c18cc12165c316",
- "identifiers": [
- [
- "deconz",
- "00:15:8d:00:04:6e:7a:e3"
- ]
- ],
- "manufacturer": "MLI",
- "model": "ZBT-Remote-ALL-RGBW",
- "name_by_user": null,
- "name": "Tint RFD white",
- "sw_version": "2.0",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:15:8d:00:03:61:c3:f5"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "74cc53a507c5359c6ebbca2af2dfd5a2",
- "identifiers": [
- [
- "deconz",
- "00:15:8d:00:03:61:c3:f5"
- ]
- ],
- "manufacturer": "MLI",
- "model": "ZBT-Remote-ALL-RGBW",
- "name_by_user": null,
- "name": "Tint RFD black",
- "sw_version": "2.0",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "cc:86:ec:ff:fe:48:78:e2"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "c5c249e829684756e529acd7bad63889",
- "identifiers": [
- [
- "deconz",
- "cc:86:ec:ff:fe:48:78:e2"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "Remote Control N2",
- "name_by_user": null,
- "name": "Ikea Styrbar",
- "sw_version": "1.0.024",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "cc:cc:cc:ff:fe:ea:80:f9"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "7b06d959a623c5502108cd4f0f6dd966",
- "identifiers": [
- [
- "deconz",
- "cc:cc:cc:ff:fe:ea:80:f9"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "SYMFONISK Sound Controller",
- "name_by_user": null,
- "name": "SYMFONISK Fernbedienung",
- "sw_version": "2.1.022",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "90:fd:9f:ff:fe:67:bf:44"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "c60fb8abcf1ddfc59db1b21d1a75f4f0",
- "identifiers": [
- [
- "deconz",
- "90:fd:9f:ff:fe:67:bf:44"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI on/off switch",
- "name_by_user": null,
- "name": "TRÅDFRI Glühfadeb an/aus",
- "sw_version": "2.2.008",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "90:fd:9f:ff:fe:e1:0b:f5"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "33acc1b69a96663dd5980425a72b9def",
- "identifiers": [
- [
- "deconz",
- "90:fd:9f:ff:fe:e1:0b:f5"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI remote control",
- "name_by_user": null,
- "name": "TRÅDFRI Fernbedienung",
- "sw_version": "1.2.214",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:17:88:01:04:e7:6c:02"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "02c9289c0b679e9525ee3c40dc7d107e",
- "identifiers": [
- [
- "deconz",
- "00:17:88:01:04:e7:6c:02"
- ]
- ],
- "manufacturer": "Philips",
- "model": "RWL021",
- "name_by_user": null,
- "name": "Dimmschalter",
- "sw_version": "5.45.1.17846",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "90:fd:9f:ff:fe:f7:4a:10"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "0c837e5bd2f135e748b3b24bdac52dc1",
- "identifiers": [
- [
- "deconz",
- "90:fd:9f:ff:fe:f7:4a:10"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI remote control",
- "name_by_user": null,
- "name": "TRÅDFRI Fernbedienung Nele",
- "sw_version": "1.2.214",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "bad",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:0d:6f:ff:fe:07:e6:d9"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "b5904fb8244f2df3ae423d880cdf465f",
- "identifiers": [
- [
- "deconz",
- "00:0d:6f:ff:fe:07:e6:d9"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI motion sensor",
- "name_by_user": null,
- "name": "TRÅDFRI Bewegungsmelder",
- "sw_version": "1.2.214",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "ba2f1ae26792c080b4286a43f221a6ef",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/10"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Stehlampe Wohnzimmer",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "d00f6a080406c9c6cb1e503fc1f84439",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/12"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Wohnzimmer",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "30d778aa11dde119fe11ccab7efb1dca",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/13"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Wohnzimmer",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "50222a178d8c4d526e3cfa1d50974e63",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/14"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "TV Back",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "4c93ce1bc56d992d361c42c40bf4538f",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/20"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Küche",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "schlafzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "aecfdcd2d655d43677000b8d8186da65",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/23"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Schlaffzimmerbett",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "686dd0c570cabf78d36f04baaba84625",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/4"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Nele",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:21:2e:ff:ff:04:27:31"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "56b8b3451d7a9fcf7c5ea8d7abcb5262",
- "identifiers": [
- [
- "deconz",
- "00:21:2e:ff:ff:04:27:31"
- ]
- ],
- "manufacturer": "Philips",
- "model": "PHDL00",
- "name_by_user": null,
- "name": "Daylight",
- "sw_version": "1.0",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "bad",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:15:8d:00:04:10:e8:45"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "6fbb61439ca2eb752a38deda7f063541",
- "identifiers": [
- [
- "deconz",
- "00:15:8d:00:04:10:e8:45"
- ]
- ],
- "manufacturer": "LUMI",
- "model": "lumi.weather",
- "name_by_user": null,
- "name": "Multisensor Bad",
- "sw_version": "20161129",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "90:fd:9f:ff:fe:d4:5d:ec"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "8f5ea098eddd9e60a24e106310f22c0e",
- "identifiers": [
- [
- "deconz",
- "90:fd:9f:ff:fe:d4:5d:ec"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI bulb E27 WS opal 980lm",
- "name_by_user": null,
- "name": "WhiteTemp01",
- "sw_version": "1.2.217",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:0d:6f:ff:fe:02:2e:77"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "431dbb778fda1266308dabb40ee32328",
- "identifiers": [
- [
- "deconz",
- "00:0d:6f:ff:fe:02:2e:77"
- ]
- ],
- "manufacturer": "MLI",
- "model": "ZBT-ExtendedColor",
- "name_by_user": null,
- "name": "Tint Color E14 2",
- "sw_version": "4.4",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:17:88:01:08:5a:9e:f9"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "5b2a8b586c22cd7d72f9e1c77aecf4b7",
- "identifiers": [
- [
- "deconz",
- "00:17:88:01:08:5a:9e:f9"
- ]
- ],
- "manufacturer": "Philips",
- "model": "LCT026",
- "name_by_user": null,
- "name": "Philips GO",
- "sw_version": "1.65.9_hB3217DF4",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:17:88:01:06:d6:43:9e"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "0c02a8f98128424610fd4386f905eb54",
- "identifiers": [
- [
- "deconz",
- "00:17:88:01:06:d6:43:9e"
- ]
- ],
- "manufacturer": "Philips",
- "model": "LCT024",
- "name_by_user": null,
- "name": "HUE Play links",
- "sw_version": "1.30.4_r23032",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:17:88:01:06:d6:69:93"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "9578355ac619172923cb198df4d900c8",
- "identifiers": [
- [
- "deconz",
- "00:17:88:01:06:d6:69:93"
- ]
- ],
- "manufacturer": "Philips",
- "model": "LCT024",
- "name_by_user": null,
- "name": "HUE Play rechts",
- "sw_version": "1.30.4_r23032",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "schlafzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "7c:b0:3e:aa:0a:05:3f:0e"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "d879464539724e8d4481e61f4ab7bcbf",
- "identifiers": [
- [
- "deconz",
- "7c:b0:3e:aa:0a:05:3f:0e"
- ]
- ],
- "manufacturer": "OSRAM",
- "model": "MR16 TW OSRAM",
- "name_by_user": null,
- "name": "CT NachtTP",
- "sw_version": "V1.05.10",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "schlafzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "7c:b0:3e:aa:0a:05:11:b5"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "05aabfac162c8657030f6f05b8c4c7a2",
- "identifiers": [
- [
- "deconz",
- "7c:b0:3e:aa:0a:05:11:b5"
- ]
- ],
- "manufacturer": "OSRAM",
- "model": "MR16 TW OSRAM",
- "name_by_user": null,
- "name": "CT NachtTH",
- "sw_version": "V1.05.10",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "kuche",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:12:4b:00:23:b2:e1:28"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "1a991aad1cefecf294aa1305f069c494",
- "identifiers": [
- [
- "deconz",
- "00:12:4b:00:23:b2:e1:28"
- ]
- ],
- "manufacturer": "GLEDOPTO",
- "model": "GL-C-008",
- "name_by_user": null,
- "name": "RGBWW Küche",
- "sw_version": "2.0.2",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:0b:57:ff:fe:d8:2d:13"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "8ecd41e5a71dceabfd8717b9292d4281",
- "identifiers": [
- [
- "deconz",
- "00:0b:57:ff:fe:d8:2d:13"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI bulb E14 W op/ch 400lm",
- "name_by_user": null,
- "name": "Ikea E14 Wohnzimmer",
- "sw_version": "1.2.214",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:21:2e:ff:ff:08:9b:b0"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "e078f53d93974833bd8623f3ed6b52e5",
- "identifiers": [
- [
- "deconz",
- "00:21:2e:ff:ff:08:9b:b0"
- ]
- ],
- "manufacturer": "dresden elektronik",
- "model": "FLS-PP3 White",
- "name_by_user": null,
- "name": "Dimmable light 21",
- "sw_version": "0214.201000EB",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:12:4b:00:22:72:72:55"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "6341617576c63970f5ad05b0c6065d76",
- "identifiers": [
- [
- "deconz",
- "00:12:4b:00:22:72:72:55"
- ]
- ],
- "manufacturer": "GLEDOPTO",
- "model": "GL-C-008",
- "name_by_user": null,
- "name": "RGBCWW Stableuchte",
- "sw_version": "2.0.2",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "cc:86:ec:ff:fe:67:db:5c"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "6145810dfb86bf941349f4d27dd094f2",
- "identifiers": [
- [
- "deconz",
- "cc:86:ec:ff:fe:67:db:5c"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRIbulbGU10WS345lm",
- "name_by_user": null,
- "name": "GU10 CCT Top",
- "sw_version": "1.0.012",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "cc:86:ec:ff:fe:6c:cb:74"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "87b537ac442237bfca81d6e45aa37c91",
- "identifiers": [
- [
- "deconz",
- "cc:86:ec:ff:fe:6c:cb:74"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRIbulbGU10WS345lm",
- "name_by_user": null,
- "name": "GU10 CCT Mid",
- "sw_version": "1.0.012",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "cc:86:ec:ff:fe:48:76:af"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "b4ff5aeb6cf307859e2f7e3e06223852",
- "identifiers": [
- [
- "deconz",
- "cc:86:ec:ff:fe:48:76:af"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRIbulbGU10WS345lm",
- "name_by_user": null,
- "name": "GU10 CCT Bot",
- "sw_version": "1.0.012",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "garten",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "84:71:27:ff:fe:7b:7a:32"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "ec8ba784f3c656453f7a19cf3602e1de",
- "identifiers": [
- [
- "deconz",
- "84:71:27:ff:fe:7b:7a:32"
- ]
- ],
- "manufacturer": "Philips",
- "model": "HK-LN-DIM-A",
- "name_by_user": null,
- "name": "Lichterkette Garten",
- "sw_version": "2.5.3_r49",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "90:fd:9f:ff:fe:1f:a9:ee"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "ee369039569fd75eef91d288e9f0cb28",
- "identifiers": [
- [
- "deconz",
- "90:fd:9f:ff:fe:1f:a9:ee"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI bulb E27 W opal 1000lm",
- "name_by_user": null,
- "name": "IKEA 1000lm Wohnzimmer",
- "sw_version": "1.2.214",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "90:fd:9f:ff:fe:f4:46:a0"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "1569cfdfb459a6c1143922a71b491e48",
- "identifiers": [
- [
- "deconz",
- "90:fd:9f:ff:fe:f4:46:a0"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI bulb E27 CWS opal 600lm",
- "name_by_user": null,
- "name": "IKEA 600lm Color Nele",
- "sw_version": "1.3.009",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:0d:6f:ff:fe:44:f6:0b"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "2abc2a5a693f99cfe9b25e043c85434e",
- "identifiers": [
- [
- "deconz",
- "00:0d:6f:ff:fe:44:f6:0b"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI bulb E27 W opal 1000lm",
- "name_by_user": null,
- "name": "IKEA 1000lm Spare",
- "sw_version": "1.2.214",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "studio",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "14:b4:57:ff:fe:72:07:80"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "e3adbc63caeeaaafa924fc47ae61cf87",
- "identifiers": [
- [
- "deconz",
- "14:b4:57:ff:fe:72:07:80"
- ]
- ],
- "manufacturer": "IKEA of Sweden",
- "model": "TRADFRI bulb E27 WW clear 250lm",
- "name_by_user": null,
- "name": "Ikea Glühfaden1",
- "sw_version": "2.1.022",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "00:15:8d:00:03:89:5e:bf"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "7e13aaf837102bd1e7426b6c04e77da6",
- "identifiers": [
- [
- "deconz",
- "00:15:8d:00:03:89:5e:bf"
- ]
- ],
- "manufacturer": "MLI",
- "model": "ZBT-ExtendedColor",
- "name_by_user": null,
- "name": "Tint Color E27",
- "sw_version": "2.0",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "cc:cc:cc:ff:fe:2e:40:57"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "05ba3472593fbe85a7b5cbf556d18cd0",
- "identifiers": [
- [
- "deconz",
- "cc:cc:cc:ff:fe:2e:40:57"
- ]
- ],
- "manufacturer": "MLI",
- "model": "ZBT-ExtendedColor",
- "name_by_user": null,
- "name": "Tint Color E14",
- "sw_version": "4.4",
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "544d6bb346fc2ef8673523f76dbc85e0",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/1"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Test Studio",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "1d76007c5410cbe615b0a22003f705bf",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/16387"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Group 16387",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "292736d7c827154d0d293320117bd6e6",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/16389"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Group 16389",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "schlafzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "ff6a98e18c9a23bb50a1025844e7c6fe",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/17"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Pit NachtTisch",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "schlafzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "6b473c0d0e17aca76f5225c55c8192c5",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/18"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Holger NachtTisch",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "8737d438ea18e3edf3058c9075774f1f",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/19"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "NachtTisch",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "8350ff89dd158410c98c93583df98df5",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/2"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Leselampe",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "24d648f41cee44546cfb13455510f8d3",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/240"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Group 240",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "wohnzimmer",
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "af77ffe63c8ba775c647f8cdaaf70c81",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/25"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Stehlampe weiß",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "5723bb07e777919bc4d35acc52b6f208",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/28410"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "TRADFRI remote control 3",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "68c3df0ceef60075694dd8b8506035e2",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/3"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Stehlampe",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "88d6f89ba396f3e7868a96a9743d1838",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/32"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Garten",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "af60e986175a9ca6e809a664d7be475e",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/53513"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "TRADFRI remote control 6",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "30f6b46a542fe4f2cd022ea47438fa23",
- "identifiers": [
- [
- "deconz",
- "00212E042731-/groups/6"
- ]
- ],
- "manufacturer": "Dresden Elektronik",
- "model": "deCONZ group",
- "name_by_user": null,
- "name": "Glühfaden",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": "studio",
- "config_entries": [
- "eef0a59ade45f05cb7f8e3ed78e2598e"
- ],
- "configuration_url": "http://192.168.1.137",
- "connections": [
- [
- "mac",
- "30:cd:a7:b8:33:1e"
- ]
- ],
- "disabled_by": "config_entry",
- "entry_type": null,
- "hw_version": null,
- "id": "ef2e05c241e51515bea0993f46d2cb2f",
- "identifiers": [
- [
- "syncthru",
- "08GNBJAGC0006WN"
- ]
- ],
- "manufacturer": null,
- "model": "C480W",
- "name_by_user": null,
- "name": "SEC30CDA7B8331E",
- "sw_version": null,
- "via_device_id": null
- },
- {
- "area_id": "garten",
- "config_entries": [
- "e3751b4b152e3d1476fb05e3f4de7f2a"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "7c65b5b2ebedeed190de8a54727aefc5",
- "identifiers": [
- [
- "gardena_smart_system",
- "200709356"
- ]
- ],
- "manufacturer": "Gardena",
- "model": "GARDENA smart Mower",
- "name_by_user": null,
- "name": "Mower",
- "sw_version": null,
- "via_device_id": null
- },
- {
- "area_id": "garten",
- "config_entries": [
- "fbb54d1ab5a3c94fe1b12b5772f18896"
- ],
- "configuration_url": "http://192.168.1.79/",
- "connections": [
- [
- "mac",
- "d8:f1:5b:a0:aa:bf"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "33dd581b49c7fdcb33a70ef68b33ee47",
- "identifiers": [],
- "manufacturer": "Tasmota",
- "model": "PS1606",
- "name_by_user": null,
- "name": "Hecke",
- "sw_version": "9.1.0",
- "via_device_id": null
- },
- {
- "area_id": null,
- "config_entries": [
- "7e1f2e269535685ee8eee3c6cf873e71"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "bd885e5e1874d796d75f387db7f8a6e7",
- "identifiers": [
- [
- "mobile_app",
- "8FA84453-1AE0-4112-9E92-B6682553F231"
- ]
- ],
- "manufacturer": "Apple",
- "model": "iPhone11,8",
- "name_by_user": null,
- "name": "iPhone (3)",
- "sw_version": "15.6.1",
- "via_device_id": null
- },
- {
- "area_id": "environment",
- "config_entries": [
- "1c57455992efa560b2971faa1f42e33a"
- ],
- "configuration_url": null,
- "connections": [
- [
- "mac",
- "cc:50:e3:c7:63:00"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "c8f0946825ae4d4c7ffa1cfb55186581",
- "identifiers": [],
- "manufacturer": "espressif",
- "model": "d1_mini",
- "name_by_user": null,
- "name": "smartmeter",
- "sw_version": "2022.6.3 (Oct 10 2022, 16:55:39)",
- "via_device_id": null
- },
- {
- "area_id": null,
- "config_entries": [
- "5f2e6a346ecabb7acdded5114523a6c3"
- ],
- "configuration_url": null,
- "connections": [],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "aa72549bafc2b92a5ad737ce6ae46a9f",
- "identifiers": [
- [
- "mobile_app",
- "5b906e52dd67a3a2"
- ]
- ],
- "manufacturer": "Xiaomi",
- "model": "Mi 9 SE",
- "name_by_user": null,
- "name": "Mi 9 SE",
- "sw_version": "30",
- "via_device_id": null
- },
- {
- "area_id": "garten",
- "config_entries": [
- "2e50b97a66348e98f9983e21a20a050b"
- ],
- "configuration_url": null,
- "connections": [
- [
- "mac",
- "e8:9f:6d:93:e8:21"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "97464d2ca9bc32ae9b5a8aa2f7159ea2",
- "identifiers": [],
- "manufacturer": "espressif",
- "model": "esp01_1m",
- "name_by_user": null,
- "name": "updownlight",
- "sw_version": "2022.6.3 (Sep 16 2022, 09:46:39)",
- "via_device_id": null
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "zigbee",
- "04:cd:15:ff:fe:0d:b9:1d"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "2372c370aa75b90a55420cb3c1e15ac5",
- "identifiers": [
- [
- "deconz",
- "04:cd:15:ff:fe:0d:b9:1d"
- ]
- ],
- "manufacturer": "_TZ3210_umi6vbsz",
- "model": "TS0505B",
- "name_by_user": null,
- "name": "Livarno RGBWW Flood",
- "sw_version": null,
- "via_device_id": "7481093451fd5c7884d870a6fa5f63c4"
- },
- {
- "area_id": null,
- "config_entries": [
- "4433d59ea2d81e3a4e090239274540b9"
- ],
- "configuration_url": null,
- "connections": [
- [
- "mac",
- "02:42:ac:13:00:02"
- ]
- ],
- "disabled_by": null,
- "entry_type": null,
- "hw_version": null,
- "id": "9b501e09be4400dc9b90cc2179e1867e",
- "identifiers": [],
- "manufacturer": null,
- "model": null,
- "name_by_user": null,
- "name": null,
- "sw_version": null,
- "via_device_id": null
- }
- ],
- "deleted_devices": []
- }
- }
|