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

[mqtt.homeassistant] Fix components with an empty name #17933

Merged

Conversation

ccutrer
Copy link
Contributor

@ccutrer ccutrer commented Dec 20, 2024

As opposed to null name. In either case, it's not usable, and we need to use our fallbacks.

Fixes #17920

As opposed to null name. In either case, it's not usable,
and we need to use our fallbacks.

Signed-off-by: Cody Cutrer <cody@cutrer.us>
@ccutrer ccutrer requested a review from antroids as a code owner December 20, 2024 14:35
@ccutrer
Copy link
Contributor Author

ccutrer commented Dec 20, 2024

org.openhab.binding.mqtt.homeassistant-5.0.0-SNAPSHOT.jar.zip
@OlegAndreych: I feel pretty confident in the fix with the unit test, but I can't be 100% sure without your devices and configuration. Attached is a compiled version of the jar that in theory will work on openHAB 4.3.0 so that you can test. We're early in the 5.0 cycle, but it's already had some major changes, so you're the first one I've had to try and test running a 5.0 compiled JAR on 4.3 (I'm running 5.0-SNAPSHOT with Java 21 myself already locally).

@danielstosch
Copy link

danielstosch commented Dec 20, 2024

@ccutrer I am not Oleg, but I still get this error with the new version: java.lang.IllegalArgumentException: Label for a ChannelGroupType must not be empty.
error.txt

but not 100% sure if the new version is used. I replaced the file in ../userdata/tmp/.../bundles (in the docker container)

@ccutrer
Copy link
Contributor Author

ccutrer commented Dec 20, 2024

@danielstosch: simply replacing the file won't actually run it. The most reliable way I've found is to open openhab console openhab-cli console (password is "habopen" if it ask for a password), and then update org.openhab.binding.mqtt.homeassistant file://<path to file>. Then restart openHAB to be sure there are not lingering references to the old code. You can confirm it work if in console you do list | grep MQTT, and the version number for the Home Assistant bundle will be a a very long one with SNAPSHOT and a date.

In theory you could just drop it in to /usr/share/addons, but I don't think that's reliable with the MQTT binding because it's composed of multiple bundles.

@danielstosch
Copy link

@ccutrer , it is working now :)
image
thanks!

@OlegAndreych
Copy link
Contributor

@ccutrer, it seems working for me as well.

Thank you for the prompt fix!

@lsiepel lsiepel added the bug An unexpected problem or unintended behavior of an add-on label Dec 20, 2024
Copy link
Contributor

@lsiepel lsiepel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, LGTM

@lsiepel lsiepel merged commit fc9e564 into openhab:main Dec 20, 2024
3 checks passed
@ccutrer ccutrer deleted the mqtt-homeassistant-blank-component-name branch December 20, 2024 21:02
@lsiepel lsiepel added this to the 5.0 milestone Dec 20, 2024
@ccutrer
Copy link
Contributor Author

ccutrer commented Dec 20, 2024

This should be backported to 4.3, since it breaks existing users upgrading from 4.2

lsiepel pushed a commit that referenced this pull request Dec 20, 2024
As opposed to null name. In either case, it's not usable,
and we need to use our fallbacks.

Signed-off-by: Cody Cutrer <cody@cutrer.us>
@lsiepel lsiepel added the patch A PR that has been cherry-picked to a patch release branch label Dec 20, 2024
@TheNetStriker
Copy link
Contributor

I've just tested version 4.3.1 and I got the following error on all my zigbee2mqtt lamps:

2024-12-30 21:51:22.437 [ERROR] [nal.common.AbstractInvocationHandler] - An error occurred while calling method 'ThingHandler.initialize()' on 'org.openhab.binding.mqtt.homeassistant.internal.handler.HomeAssistantThingHandler@6676438e': Cannot invoke "String.isBlank()" because "result" is null
java.lang.NullPointerException: Cannot invoke "String.isBlank()" because "result" is null
	at org.openhab.binding.mqtt.homeassistant.internal.component.AbstractComponent.getName(AbstractComponent.java:307) ~[?:?]
	at org.openhab.binding.mqtt.homeassistant.internal.component.AbstractComponent.getChannelGroupType(AbstractComponent.java:354) ~[?:?]
	at org.openhab.binding.mqtt.homeassistant.internal.handler.HomeAssistantThingHandler.lambda$10(HomeAssistantThingHandler.java:427) ~[?:?]
	at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
	at java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]
	at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
	at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
	at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:575) ~[?:?]
	at java.util.stream.AbstractPipeline.evaluateToArrayNode(AbstractPipeline.java:260) ~[?:?]
	at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:616) ~[?:?]
	at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:622) ~[?:?]
	at java.util.stream.ReferencePipeline.toList(ReferencePipeline.java:627) ~[?:?]
	at org.openhab.binding.mqtt.homeassistant.internal.handler.HomeAssistantThingHandler.updateThingType(HomeAssistantThingHandler.java:428) ~[?:?]
	at org.openhab.binding.mqtt.homeassistant.internal.handler.HomeAssistantThingHandler.initialize(HomeAssistantThingHandler.java:202) ~[?:?]
	at jdk.internal.reflect.GeneratedMethodAccessor113.invoke(Unknown Source) ~[?:?]
	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
	at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]
	at org.openhab.core.internal.common.AbstractInvocationHandler.invokeDirect(AbstractInvocationHandler.java:147) [bundleFile:?]
	at org.openhab.core.internal.common.Invocation.call(Invocation.java:52) [bundleFile:?]
	at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?]
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
	at java.lang.Thread.run(Thread.java:840) [?:?]

I guess the null check should also be added on line 307 in AbstractComponent.java.
I had to revert to 4.3.0 again to get everything working again.

@ccutrer
Copy link
Contributor Author

ccutrer commented Dec 30, 2024

Sigh. Two steps forward, one step back. @TheNetStriker: can you post your discovery JSON, so I can add a test for it? I'll get a PR up in the next day or two.

@TheNetStriker
Copy link
Contributor

@ccutrer Sure, here is my discovery JSON with all the zigbee2mqtt things:

{
  "mqtt:homeassistant:79310854e0:68c63a94e011": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "68c63a94e011"
        ],
        "uid": "mqtt:homeassistant:79310854e0:68c63a94e011"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "68c63a94e011",
        "firmwareVersion": "2024.12.2 (Dec 24 2024, 23:15:46)",
        "modelId": "d1_mini",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/humidifierbedroom75/water_alert",
          "sensor/humidifierbedroom75/wifi_signal"
        ],
        "vendor": "Espressif"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "humidifierbedroom75",
      "timestamp": "2024-12-30T23:39:57.643671700Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:84cca8a5bf8b": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "84cca8a5bf8b"
        ],
        "uid": "mqtt:homeassistant:79310854e0:84cca8a5bf8b"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "84cca8a5bf8b",
        "firmwareVersion": "2024.12.2 (Dec 24 2024, 23:26:20)",
        "modelId": "d1_mini",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/humidifierliving75/water_alert",
          "sensor/humidifierliving75/wifi_signal"
        ],
        "vendor": "Espressif"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "humidifierliving75",
      "timestamp": "2024-12-30T23:39:57.643671700Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0000000000407047": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0000000000407047"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0000000000407047"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0000000000407047",
        "modelId": "Hue tap (8718696743133)",
        "newStyleChannels": "true",
        "topics": [
          "sensor/0x0000000000407047/last_seen",
          "sensor/0x0000000000407047/linkquality"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "System/huetap_2",
      "timestamp": "2024-12-30T23:39:57.636681100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0000000000407b82": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0000000000407b82"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0000000000407b82"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0000000000407b82",
        "modelId": "Hue tap (8718696743133)",
        "newStyleChannels": "true",
        "topics": [
          "sensor/0x0000000000407b82/last_seen",
          "sensor/0x0000000000407b82/linkquality"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/huetap_1",
      "timestamp": "2024-12-30T23:39:57.636181100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x000000000040fc93": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x000000000040fc93"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x000000000040fc93"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x000000000040fc93",
        "modelId": "Hue tap (8718696743133)",
        "newStyleChannels": "true",
        "topics": [
          "sensor/0x000000000040fc93/last_seen",
          "sensor/0x000000000040fc93/linkquality"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "System/huetap_3",
      "timestamp": "2024-12-30T23:39:57.636681100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x000d6f00149591de": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x000d6f00149591de"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x000d6f00149591de"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x000d6f00149591de",
        "firmwareVersion": "2.2.3_r12",
        "modelId": "Zigbee handheld remote RGBW 4 channels (511.344)",
        "newStyleChannels": "true",
        "topics": [
          "button/0x000d6f00149591de/identify",
          "select/0x000d6f00149591de/identify",
          "sensor/0x000d6f00149591de/battery",
          "sensor/0x000d6f00149591de/last_seen",
          "sensor/0x000d6f00149591de/linkquality"
        ],
        "vendor": "Iluminize"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "System/emergency_remote",
      "timestamp": "2024-12-30T23:39:57.638678300Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x00124b0024c128b1": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x00124b0024c128b1"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x00124b0024c128b1"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x00124b0024c128b1",
        "firmwareVersion": "20221102",
        "modelId": "Texas Instruments router (ti.router)",
        "newStyleChannels": "true",
        "topics": [
          "number/0x00124b0024c128b1/transmit_power",
          "sensor/0x00124b0024c128b1/last_seen",
          "sensor/0x00124b0024c128b1/linkquality",
          "sensor/0x00124b0024c128b1/transmit_power"
        ],
        "vendor": "Custom devices (DiY)"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Carol/router_carol",
      "timestamp": "2024-12-30T23:39:57.655159700Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0015bc003100bfef": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0015bc003100bfef"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0015bc003100bfef"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0015bc003100bfef",
        "firmwareVersion": "4.0.8",
        "modelId": "Smoke detector with siren (SMSZB-120)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0015bc003100bfef/battery_low",
          "binary_sensor/0x0015bc003100bfef/fault",
          "binary_sensor/0x0015bc003100bfef/smoke",
          "binary_sensor/0x0015bc003100bfef/test",
          "binary_sensor/0x0015bc003100bfef/update_available",
          "number/0x0015bc003100bfef/max_duration",
          "sensor/0x0015bc003100bfef/battery",
          "sensor/0x0015bc003100bfef/last_seen",
          "sensor/0x0015bc003100bfef/linkquality",
          "sensor/0x0015bc003100bfef/max_duration",
          "sensor/0x0015bc003100bfef/reliability",
          "sensor/0x0015bc003100bfef/temperature",
          "sensor/0x0015bc003100bfef/update_state",
          "sensor/0x0015bc003100bfef/voltage",
          "switch/0x0015bc003100bfef/switch_alarm",
          "update/0x0015bc003100bfef/update"
        ],
        "vendor": "Develco"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Carol/secondfloor_smokealert",
      "timestamp": "2024-12-30T23:39:57.655662100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0015bc003100c711": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0015bc003100c711"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0015bc003100c711"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0015bc003100c711",
        "firmwareVersion": "4.0.8",
        "modelId": "Smoke detector with siren (SMSZB-120)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0015bc003100c711/battery_low",
          "binary_sensor/0x0015bc003100c711/fault",
          "binary_sensor/0x0015bc003100c711/smoke",
          "binary_sensor/0x0015bc003100c711/test",
          "binary_sensor/0x0015bc003100c711/update_available",
          "number/0x0015bc003100c711/max_duration",
          "sensor/0x0015bc003100c711/battery",
          "sensor/0x0015bc003100c711/last_seen",
          "sensor/0x0015bc003100c711/linkquality",
          "sensor/0x0015bc003100c711/max_duration",
          "sensor/0x0015bc003100c711/reliability",
          "sensor/0x0015bc003100c711/temperature",
          "sensor/0x0015bc003100c711/update_state",
          "sensor/0x0015bc003100c711/voltage",
          "switch/0x0015bc003100c711/switch_alarm",
          "update/0x0015bc003100c711/update"
        ],
        "vendor": "Develco"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Keller/cellar_smokealert",
      "timestamp": "2024-12-30T23:39:57.655159700Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0015bc003400092a": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0015bc003400092a"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0015bc003400092a"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0015bc003400092a",
        "firmwareVersion": "4.0.8",
        "modelId": "Fire detector with siren (HESZB-120)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0015bc003400092a/battery_low",
          "binary_sensor/0x0015bc003400092a/fault",
          "binary_sensor/0x0015bc003400092a/smoke",
          "binary_sensor/0x0015bc003400092a/test",
          "binary_sensor/0x0015bc003400092a/update_available",
          "number/0x0015bc003400092a/max_duration",
          "sensor/0x0015bc003400092a/battery",
          "sensor/0x0015bc003400092a/last_seen",
          "sensor/0x0015bc003400092a/linkquality",
          "sensor/0x0015bc003400092a/max_duration",
          "sensor/0x0015bc003400092a/reliability",
          "sensor/0x0015bc003400092a/temperature",
          "sensor/0x0015bc003400092a/update_state",
          "sensor/0x0015bc003400092a/voltage",
          "switch/0x0015bc003400092a/switch_alarm",
          "update/0x0015bc003400092a/update"
        ],
        "vendor": "Develco"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Carol/firstfloor_heatalert",
      "timestamp": "2024-12-30T23:39:57.655662100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0015bc0034000e1f": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0015bc0034000e1f"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0015bc0034000e1f"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0015bc0034000e1f",
        "firmwareVersion": "4.0.8",
        "modelId": "Fire detector with siren (HESZB-120)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0015bc0034000e1f/battery_low",
          "binary_sensor/0x0015bc0034000e1f/fault",
          "binary_sensor/0x0015bc0034000e1f/smoke",
          "binary_sensor/0x0015bc0034000e1f/test",
          "binary_sensor/0x0015bc0034000e1f/update_available",
          "number/0x0015bc0034000e1f/max_duration",
          "sensor/0x0015bc0034000e1f/battery",
          "sensor/0x0015bc0034000e1f/last_seen",
          "sensor/0x0015bc0034000e1f/linkquality",
          "sensor/0x0015bc0034000e1f/max_duration",
          "sensor/0x0015bc0034000e1f/reliability",
          "sensor/0x0015bc0034000e1f/temperature",
          "sensor/0x0015bc0034000e1f/update_state",
          "sensor/0x0015bc0034000e1f/voltage",
          "switch/0x0015bc0034000e1f/switch_alarm",
          "update/0x0015bc0034000e1f/update"
        ],
        "vendor": "Develco"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "PC Zimmer/pc_heatalert",
      "timestamp": "2024-12-30T23:39:57.655159700Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100b9f536": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100b9f536"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100b9f536"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100b9f536",
        "firmwareVersion": "67.101.2",
        "modelId": "Hue white and color ambiance E26/E27/E14 (9290012573A)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100b9f536/update_available",
          "light/0x0017880100b9f536/light",
          "select/0x0017880100b9f536/effect",
          "select/0x0017880100b9f536/power_on_behavior",
          "sensor/0x0017880100b9f536/last_seen",
          "sensor/0x0017880100b9f536/linkquality",
          "sensor/0x0017880100b9f536/power_on_behavior",
          "sensor/0x0017880100b9f536/update_state",
          "update/0x0017880100b9f536/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_back_1",
      "timestamp": "2024-12-30T23:39:57.652662100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100bb06d2": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100bb06d2"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100bb06d2"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100bb06d2",
        "firmwareVersion": "67.101.2",
        "modelId": "Hue white and color ambiance E26/E27/E14 (9290012573A)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100bb06d2/update_available",
          "light/0x0017880100bb06d2/light",
          "select/0x0017880100bb06d2/effect",
          "select/0x0017880100bb06d2/power_on_behavior",
          "sensor/0x0017880100bb06d2/last_seen",
          "sensor/0x0017880100bb06d2/linkquality",
          "sensor/0x0017880100bb06d2/power_on_behavior",
          "sensor/0x0017880100bb06d2/update_state",
          "update/0x0017880100bb06d2/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_back_top",
      "timestamp": "2024-12-30T23:39:57.652162700Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100bb9979": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100bb9979"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100bb9979"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100bb9979",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100bb9979/update_available",
          "light/0x0017880100bb9979/light",
          "select/0x0017880100bb9979/effect",
          "select/0x0017880100bb9979/power_on_behavior",
          "sensor/0x0017880100bb9979/last_seen",
          "sensor/0x0017880100bb9979/linkquality",
          "sensor/0x0017880100bb9979/power_on_behavior",
          "sensor/0x0017880100bb9979/update_state",
          "update/0x0017880100bb9979/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "PC Zimmer/pc_3",
      "timestamp": "2024-12-30T23:39:57.650165100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100bb9c20": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100bb9c20"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100bb9c20"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100bb9c20",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100bb9c20/update_available",
          "light/0x0017880100bb9c20/light",
          "select/0x0017880100bb9c20/effect",
          "select/0x0017880100bb9c20/power_on_behavior",
          "sensor/0x0017880100bb9c20/last_seen",
          "sensor/0x0017880100bb9c20/linkquality",
          "sensor/0x0017880100bb9c20/power_on_behavior",
          "sensor/0x0017880100bb9c20/update_state",
          "update/0x0017880100bb9c20/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/kitchen_3",
      "timestamp": "2024-12-30T23:39:57.651663500Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100bcf92d": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100bcf92d"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100bcf92d"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100bcf92d",
        "firmwareVersion": "67.101.2",
        "modelId": "Hue white and color ambiance E26/E27/E14 (9290012573A)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100bcf92d/update_available",
          "light/0x0017880100bcf92d/light",
          "select/0x0017880100bcf92d/effect",
          "select/0x0017880100bcf92d/power_on_behavior",
          "sensor/0x0017880100bcf92d/last_seen",
          "sensor/0x0017880100bcf92d/linkquality",
          "sensor/0x0017880100bcf92d/power_on_behavior",
          "sensor/0x0017880100bcf92d/update_state",
          "update/0x0017880100bcf92d/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_front_top",
      "timestamp": "2024-12-30T23:39:57.652662100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d0575a": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d0575a"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d0575a"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d0575a",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d0575a/update_available",
          "light/0x0017880100d0575a/light",
          "select/0x0017880100d0575a/effect",
          "select/0x0017880100d0575a/power_on_behavior",
          "sensor/0x0017880100d0575a/last_seen",
          "sensor/0x0017880100d0575a/linkquality",
          "sensor/0x0017880100d0575a/power_on_behavior",
          "sensor/0x0017880100d0575a/update_state",
          "update/0x0017880100d0575a/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/kitchen_4",
      "timestamp": "2024-12-30T23:39:57.652162700Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d05cc7": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d05cc7"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d05cc7"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d05cc7",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d05cc7/update_available",
          "light/0x0017880100d05cc7/light",
          "select/0x0017880100d05cc7/effect",
          "select/0x0017880100d05cc7/power_on_behavior",
          "sensor/0x0017880100d05cc7/last_seen",
          "sensor/0x0017880100d05cc7/linkquality",
          "sensor/0x0017880100d05cc7/power_on_behavior",
          "sensor/0x0017880100d05cc7/update_state",
          "update/0x0017880100d05cc7/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/kitchen_1",
      "timestamp": "2024-12-30T23:39:57.651163800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d0f589": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d0f589"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d0f589"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d0f589",
        "firmwareVersion": "67.101.2",
        "modelId": "Hue white and color ambiance E26/E27/E14 (9290012573A)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d0f589/update_available",
          "light/0x0017880100d0f589/light",
          "select/0x0017880100d0f589/effect",
          "select/0x0017880100d0f589/power_on_behavior",
          "sensor/0x0017880100d0f589/last_seen",
          "sensor/0x0017880100d0f589/linkquality",
          "sensor/0x0017880100d0f589/power_on_behavior",
          "sensor/0x0017880100d0f589/update_state",
          "update/0x0017880100d0f589/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_back_3",
      "timestamp": "2024-12-30T23:39:57.652662100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d20f1a": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d20f1a"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d20f1a"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d20f1a",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d20f1a/update_available",
          "light/0x0017880100d20f1a/light",
          "select/0x0017880100d20f1a/effect",
          "select/0x0017880100d20f1a/power_on_behavior",
          "sensor/0x0017880100d20f1a/last_seen",
          "sensor/0x0017880100d20f1a/linkquality",
          "sensor/0x0017880100d20f1a/power_on_behavior",
          "sensor/0x0017880100d20f1a/update_state",
          "update/0x0017880100d20f1a/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "PC Zimmer/pc_2",
      "timestamp": "2024-12-30T23:39:57.650666Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d20f2a": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d20f2a"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d20f2a"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d20f2a",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d20f2a/update_available",
          "light/0x0017880100d20f2a/light",
          "select/0x0017880100d20f2a/effect",
          "select/0x0017880100d20f2a/power_on_behavior",
          "sensor/0x0017880100d20f2a/last_seen",
          "sensor/0x0017880100d20f2a/linkquality",
          "sensor/0x0017880100d20f2a/power_on_behavior",
          "sensor/0x0017880100d20f2a/update_state",
          "update/0x0017880100d20f2a/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "PC Zimmer/pc_1",
      "timestamp": "2024-12-30T23:39:57.650666Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d21510": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d21510"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d21510"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d21510",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d21510/update_available",
          "light/0x0017880100d21510/light",
          "select/0x0017880100d21510/effect",
          "select/0x0017880100d21510/power_on_behavior",
          "sensor/0x0017880100d21510/last_seen",
          "sensor/0x0017880100d21510/linkquality",
          "sensor/0x0017880100d21510/power_on_behavior",
          "sensor/0x0017880100d21510/update_state",
          "update/0x0017880100d21510/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/kitchen_5",
      "timestamp": "2024-12-30T23:39:57.652162700Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d21779": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d21779"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d21779"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d21779",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d21779/update_available",
          "light/0x0017880100d21779/light",
          "select/0x0017880100d21779/effect",
          "select/0x0017880100d21779/power_on_behavior",
          "sensor/0x0017880100d21779/last_seen",
          "sensor/0x0017880100d21779/linkquality",
          "sensor/0x0017880100d21779/power_on_behavior",
          "sensor/0x0017880100d21779/update_state",
          "update/0x0017880100d21779/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/kitchen_2",
      "timestamp": "2024-12-30T23:39:57.651163800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d22fc5": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d22fc5"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d22fc5"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d22fc5",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d22fc5/update_available",
          "light/0x0017880100d22fc5/light",
          "select/0x0017880100d22fc5/effect",
          "select/0x0017880100d22fc5/power_on_behavior",
          "sensor/0x0017880100d22fc5/last_seen",
          "sensor/0x0017880100d22fc5/linkquality",
          "sensor/0x0017880100d22fc5/power_on_behavior",
          "sensor/0x0017880100d22fc5/update_state",
          "update/0x0017880100d22fc5/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Schlafzimmer/bedroom_4",
      "timestamp": "2024-12-30T23:39:57.653661200Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d2399f": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d2399f"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d2399f"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d2399f",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d2399f/update_available",
          "light/0x0017880100d2399f/light",
          "select/0x0017880100d2399f/effect",
          "select/0x0017880100d2399f/power_on_behavior",
          "sensor/0x0017880100d2399f/last_seen",
          "sensor/0x0017880100d2399f/linkquality",
          "sensor/0x0017880100d2399f/power_on_behavior",
          "sensor/0x0017880100d2399f/update_state",
          "update/0x0017880100d2399f/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Badezimmer/bathroom_2",
      "timestamp": "2024-12-30T23:39:57.651163800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d239f6": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d239f6"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d239f6"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d239f6",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d239f6/update_available",
          "light/0x0017880100d239f6/light",
          "select/0x0017880100d239f6/effect",
          "select/0x0017880100d239f6/power_on_behavior",
          "sensor/0x0017880100d239f6/last_seen",
          "sensor/0x0017880100d239f6/linkquality",
          "sensor/0x0017880100d239f6/power_on_behavior",
          "sensor/0x0017880100d239f6/update_state",
          "update/0x0017880100d239f6/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Badezimmer/bathroom_1",
      "timestamp": "2024-12-30T23:39:57.651163800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d23a3b": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d23a3b"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d23a3b"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d23a3b",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d23a3b/update_available",
          "light/0x0017880100d23a3b/light",
          "select/0x0017880100d23a3b/effect",
          "select/0x0017880100d23a3b/power_on_behavior",
          "sensor/0x0017880100d23a3b/last_seen",
          "sensor/0x0017880100d23a3b/linkquality",
          "sensor/0x0017880100d23a3b/power_on_behavior",
          "sensor/0x0017880100d23a3b/update_state",
          "update/0x0017880100d23a3b/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Schlafzimmer/bedroom_6",
      "timestamp": "2024-12-30T23:39:57.653162100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d40339": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d40339"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d40339"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d40339",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d40339/update_available",
          "light/0x0017880100d40339/light",
          "select/0x0017880100d40339/effect",
          "select/0x0017880100d40339/power_on_behavior",
          "sensor/0x0017880100d40339/last_seen",
          "sensor/0x0017880100d40339/linkquality",
          "sensor/0x0017880100d40339/power_on_behavior",
          "sensor/0x0017880100d40339/update_state",
          "update/0x0017880100d40339/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Schlafzimmer/bedroom_1",
      "timestamp": "2024-12-30T23:39:57.653661200Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d43a75": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d43a75"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d43a75"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d43a75",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d43a75/update_available",
          "light/0x0017880100d43a75/light",
          "select/0x0017880100d43a75/effect",
          "select/0x0017880100d43a75/power_on_behavior",
          "sensor/0x0017880100d43a75/last_seen",
          "sensor/0x0017880100d43a75/linkquality",
          "sensor/0x0017880100d43a75/power_on_behavior",
          "sensor/0x0017880100d43a75/update_state",
          "update/0x0017880100d43a75/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Schlafzimmer/bedroom_3",
      "timestamp": "2024-12-30T23:39:57.653661200Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d70845": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d70845"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d70845"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d70845",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d70845/update_available",
          "light/0x0017880100d70845/light",
          "select/0x0017880100d70845/effect",
          "select/0x0017880100d70845/power_on_behavior",
          "sensor/0x0017880100d70845/last_seen",
          "sensor/0x0017880100d70845/linkquality",
          "sensor/0x0017880100d70845/power_on_behavior",
          "sensor/0x0017880100d70845/update_state",
          "update/0x0017880100d70845/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "PC Zimmer/pc_4",
      "timestamp": "2024-12-30T23:39:57.650165100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d73434": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d73434"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d73434"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d73434",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d73434/update_available",
          "light/0x0017880100d73434/light",
          "select/0x0017880100d73434/effect",
          "select/0x0017880100d73434/power_on_behavior",
          "sensor/0x0017880100d73434/last_seen",
          "sensor/0x0017880100d73434/linkquality",
          "sensor/0x0017880100d73434/power_on_behavior",
          "sensor/0x0017880100d73434/update_state",
          "update/0x0017880100d73434/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Badezimmer/bathroom_3",
      "timestamp": "2024-12-30T23:39:57.651163800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d73466": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100d73466"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100d73466"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100d73466",
        "firmwareVersion": "67.108.5",
        "modelId": "Hue white and color ambiance GU10 (8718696485880)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100d73466/update_available",
          "light/0x0017880100d73466/light",
          "select/0x0017880100d73466/effect",
          "select/0x0017880100d73466/power_on_behavior",
          "sensor/0x0017880100d73466/last_seen",
          "sensor/0x0017880100d73466/linkquality",
          "sensor/0x0017880100d73466/power_on_behavior",
          "sensor/0x0017880100d73466/update_state",
          "update/0x0017880100d73466/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Schlafzimmer/bedroom_5",
      "timestamp": "2024-12-30T23:39:57.653162100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100e6dffe": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100e6dffe"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100e6dffe"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100e6dffe",
        "firmwareVersion": "67.101.2",
        "modelId": "Hue white and color ambiance E26/E27/E14 (9290012573A)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100e6dffe/update_available",
          "light/0x0017880100e6dffe/light",
          "select/0x0017880100e6dffe/effect",
          "select/0x0017880100e6dffe/power_on_behavior",
          "sensor/0x0017880100e6dffe/last_seen",
          "sensor/0x0017880100e6dffe/linkquality",
          "sensor/0x0017880100e6dffe/power_on_behavior",
          "sensor/0x0017880100e6dffe/update_state",
          "update/0x0017880100e6dffe/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_back_2",
      "timestamp": "2024-12-30T23:39:57.652662100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100e6e29c": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100e6e29c"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100e6e29c"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100e6e29c",
        "firmwareVersion": "67.101.2",
        "modelId": "Hue white and color ambiance E26/E27/E14 (9290012573A)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100e6e29c/update_available",
          "light/0x0017880100e6e29c/light",
          "select/0x0017880100e6e29c/effect",
          "select/0x0017880100e6e29c/power_on_behavior",
          "sensor/0x0017880100e6e29c/last_seen",
          "sensor/0x0017880100e6e29c/linkquality",
          "sensor/0x0017880100e6e29c/power_on_behavior",
          "sensor/0x0017880100e6e29c/update_state",
          "update/0x0017880100e6e29c/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_front_2",
      "timestamp": "2024-12-30T23:39:57.653162100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100e6e2ac": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100e6e2ac"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100e6e2ac"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100e6e2ac",
        "firmwareVersion": "67.101.2",
        "modelId": "Hue white and color ambiance E26/E27/E14 (9290012573A)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100e6e2ac/update_available",
          "light/0x0017880100e6e2ac/light",
          "select/0x0017880100e6e2ac/effect",
          "select/0x0017880100e6e2ac/power_on_behavior",
          "sensor/0x0017880100e6e2ac/last_seen",
          "sensor/0x0017880100e6e2ac/linkquality",
          "sensor/0x0017880100e6e2ac/power_on_behavior",
          "sensor/0x0017880100e6e2ac/update_state",
          "update/0x0017880100e6e2ac/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_front_3",
      "timestamp": "2024-12-30T23:39:57.653162100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100f8077f": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0017880100f8077f"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0017880100f8077f"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0017880100f8077f",
        "firmwareVersion": "67.101.2",
        "modelId": "Hue white and color ambiance E26/E27/E14 (9290012573A)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0017880100f8077f/update_available",
          "light/0x0017880100f8077f/light",
          "select/0x0017880100f8077f/effect",
          "select/0x0017880100f8077f/power_on_behavior",
          "sensor/0x0017880100f8077f/last_seen",
          "sensor/0x0017880100f8077f/linkquality",
          "sensor/0x0017880100f8077f/power_on_behavior",
          "sensor/0x0017880100f8077f/update_state",
          "update/0x0017880100f8077f/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_front_1",
      "timestamp": "2024-12-30T23:39:57.653162100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cba7c49": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x001788010cba7c49"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cba7c49"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x001788010cba7c49",
        "firmwareVersion": "1.122.2",
        "modelId": "Hue Iris (generation 2, black) (929002376201)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x001788010cba7c49/update_available",
          "light/0x001788010cba7c49/light",
          "scene/0x001788010cba7c49/scene_0",
          "scene/0x001788010cba7c49/scene_1",
          "select/0x001788010cba7c49/effect",
          "select/0x001788010cba7c49/power_on_behavior",
          "sensor/0x001788010cba7c49/last_seen",
          "sensor/0x001788010cba7c49/linkquality",
          "sensor/0x001788010cba7c49/power_on_behavior",
          "sensor/0x001788010cba7c49/update_state",
          "update/0x001788010cba7c49/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Schlafzimmer/bedroom_table",
      "timestamp": "2024-12-30T23:39:57.656160800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cba7c4c": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x001788010cba7c4c"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cba7c4c"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x001788010cba7c4c",
        "firmwareVersion": "1.122.2",
        "modelId": "Hue Iris (generation 2, black) (929002376201)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x001788010cba7c4c/update_available",
          "light/0x001788010cba7c4c/light",
          "select/0x001788010cba7c4c/effect",
          "select/0x001788010cba7c4c/power_on_behavior",
          "sensor/0x001788010cba7c4c/last_seen",
          "sensor/0x001788010cba7c4c/linkquality",
          "sensor/0x001788010cba7c4c/power_on_behavior",
          "sensor/0x001788010cba7c4c/update_state",
          "update/0x001788010cba7c4c/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_front_left",
      "timestamp": "2024-12-30T23:39:57.654659900Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cbcbeb6": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x001788010cbcbeb6"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cbcbeb6"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x001788010cbcbeb6",
        "firmwareVersion": "1.122.2",
        "modelId": "Hue Iris (generation 2, black) (929002376201)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x001788010cbcbeb6/update_available",
          "light/0x001788010cbcbeb6/light",
          "scene/0x001788010cbcbeb6/scene_0",
          "scene/0x001788010cbcbeb6/scene_1",
          "select/0x001788010cbcbeb6/effect",
          "select/0x001788010cbcbeb6/power_on_behavior",
          "sensor/0x001788010cbcbeb6/last_seen",
          "sensor/0x001788010cbcbeb6/linkquality",
          "sensor/0x001788010cbcbeb6/power_on_behavior",
          "sensor/0x001788010cbcbeb6/update_state",
          "update/0x001788010cbcbeb6/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_back_right",
      "timestamp": "2024-12-30T23:39:57.655662100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cbe2963": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x001788010cbe2963"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cbe2963"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x001788010cbe2963",
        "firmwareVersion": "1.122.2",
        "modelId": "Hue Iris (generation 2, black) (929002376201)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x001788010cbe2963/update_available",
          "light/0x001788010cbe2963/light",
          "select/0x001788010cbe2963/effect",
          "select/0x001788010cbe2963/power_on_behavior",
          "sensor/0x001788010cbe2963/last_seen",
          "sensor/0x001788010cbe2963/linkquality",
          "sensor/0x001788010cbe2963/power_on_behavior",
          "sensor/0x001788010cbe2963/update_state",
          "update/0x001788010cbe2963/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_front_right",
      "timestamp": "2024-12-30T23:39:57.654659900Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cbe299e": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x001788010cbe299e"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x001788010cbe299e"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x001788010cbe299e",
        "firmwareVersion": "1.122.2",
        "modelId": "Hue Iris (generation 2, black) (929002376201)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x001788010cbe299e/update_available",
          "light/0x001788010cbe299e/light",
          "scene/0x001788010cbe299e/scene_0",
          "scene/0x001788010cbe299e/scene_1",
          "select/0x001788010cbe299e/effect",
          "select/0x001788010cbe299e/power_on_behavior",
          "sensor/0x001788010cbe299e/last_seen",
          "sensor/0x001788010cbe299e/linkquality",
          "sensor/0x001788010cbe299e/power_on_behavior",
          "sensor/0x001788010cbe299e/update_state",
          "update/0x001788010cbe299e/update"
        ],
        "vendor": "Philips"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/livingroom_back_left",
      "timestamp": "2024-12-30T23:39:57.655662100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0c4314fffecbbebb": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x0c4314fffecbbebb"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x0c4314fffecbbebb"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x0c4314fffecbbebb",
        "firmwareVersion": "1.0.021",
        "modelId": "TRADFRI bulb GU10, color/white spectrum, 345/380 lm (LED1923R5)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0x0c4314fffecbbebb/update_available",
          "button/0x0c4314fffecbbebb/identify",
          "light/0x0c4314fffecbbebb/light",
          "select/0x0c4314fffecbbebb/effect",
          "select/0x0c4314fffecbbebb/identify",
          "select/0x0c4314fffecbbebb/power_on_behavior",
          "sensor/0x0c4314fffecbbebb/color_options",
          "sensor/0x0c4314fffecbbebb/last_seen",
          "sensor/0x0c4314fffecbbebb/linkquality",
          "sensor/0x0c4314fffecbbebb/power_on_behavior",
          "sensor/0x0c4314fffecbbebb/update_state",
          "update/0x0c4314fffecbbebb/update"
        ],
        "vendor": "IKEA"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Schlafzimmer/bedroom_2",
      "timestamp": "2024-12-30T23:39:57.653661200Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x14b457fffe2e8b69": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x14b457fffe2e8b69"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x14b457fffe2e8b69"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x14b457fffe2e8b69",
        "firmwareVersion": "2.0",
        "modelId": "LED candle bulb E14 470 lumen, dimmable, color, white 1800-6500K (HAL800)",
        "newStyleChannels": "true",
        "topics": [
          "light/0x14b457fffe2e8b69/light",
          "select/0x14b457fffe2e8b69/effect",
          "select/0x14b457fffe2e8b69/power_on_behavior",
          "sensor/0x14b457fffe2e8b69/last_seen",
          "sensor/0x14b457fffe2e8b69/linkquality",
          "sensor/0x14b457fffe2e8b69/power_on_behavior"
        ],
        "vendor": "Schwaiger"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "PC Zimmer/pc_table",
      "timestamp": "2024-12-30T23:39:57.648668500Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x90fd9ffffe6363a6": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0x90fd9ffffe6363a6"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0x90fd9ffffe6363a6"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0x90fd9ffffe6363a6",
        "firmwareVersion": "2.0",
        "modelId": "LED candle bulb E14 470 lumen, dimmable, color, white 1800-6500K (HAL800)",
        "newStyleChannels": "true",
        "topics": [
          "light/0x90fd9ffffe6363a6/light",
          "select/0x90fd9ffffe6363a6/effect",
          "select/0x90fd9ffffe6363a6/power_on_behavior",
          "sensor/0x90fd9ffffe6363a6/last_seen",
          "sensor/0x90fd9ffffe6363a6/linkquality",
          "sensor/0x90fd9ffffe6363a6/power_on_behavior"
        ],
        "vendor": "Schwaiger"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/kitchen_bar_top",
      "timestamp": "2024-12-30T23:39:57.648668500Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0xcc86ecfffeb797fd": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0xcc86ecfffeb797fd"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0xcc86ecfffeb797fd"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0xcc86ecfffeb797fd",
        "firmwareVersion": "11076801",
        "modelId": "Zigbee 4W MR16 Bulb RGB+CCT (pro) (GL-S-004P)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0xcc86ecfffeb797fd/update_available",
          "light/0xcc86ecfffeb797fd/light",
          "select/0xcc86ecfffeb797fd/effect",
          "sensor/0xcc86ecfffeb797fd/last_seen",
          "sensor/0xcc86ecfffeb797fd/linkquality",
          "sensor/0xcc86ecfffeb797fd/update_state",
          "update/0xcc86ecfffeb797fd/update"
        ],
        "vendor": "Gledopto"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/kitchen_bar_3",
      "timestamp": "2024-12-30T23:39:57.654659900Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0xcc86ecfffeb79834": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0xcc86ecfffeb79834"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0xcc86ecfffeb79834"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0xcc86ecfffeb79834",
        "firmwareVersion": "11076801",
        "modelId": "Zigbee 4W MR16 Bulb RGB+CCT (pro) (GL-S-004P)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0xcc86ecfffeb79834/update_available",
          "light/0xcc86ecfffeb79834/light",
          "select/0xcc86ecfffeb79834/effect",
          "sensor/0xcc86ecfffeb79834/last_seen",
          "sensor/0xcc86ecfffeb79834/linkquality",
          "sensor/0xcc86ecfffeb79834/update_state",
          "update/0xcc86ecfffeb79834/update"
        ],
        "vendor": "Gledopto"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/kitchen_bar_1",
      "timestamp": "2024-12-30T23:39:57.654659900Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0xcc86ecfffec724ef": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F0xcc86ecfffec724ef"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F0xcc86ecfffec724ef"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F0xcc86ecfffec724ef",
        "firmwareVersion": "11076801",
        "modelId": "Zigbee 4W MR16 Bulb RGB+CCT (pro) (GL-S-004P)",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/0xcc86ecfffec724ef/update_available",
          "light/0xcc86ecfffec724ef/light",
          "select/0xcc86ecfffec724ef/effect",
          "sensor/0xcc86ecfffec724ef/last_seen",
          "sensor/0xcc86ecfffec724ef/linkquality",
          "sensor/0xcc86ecfffec724ef/update_state",
          "update/0xcc86ecfffec724ef/update"
        ],
        "vendor": "Gledopto"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/kitchen_bar_2",
      "timestamp": "2024-12-30T23:39:57.655159700Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F1": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F1221051039810110150109113116116_5F1"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F1"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F1221051039810110150109113116116_5F1",
        "firmwareVersion": "Zigbee2MQTT 1.42.0",
        "modelId": "Group",
        "newStyleChannels": "true",
        "topics": [
          "light/1221051039810110150109113116116_1/light",
          "scene/1221051039810110150109113116116_1/scene_0",
          "scene/1221051039810110150109113116116_1/scene_1"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "System/group_all",
      "timestamp": "2024-12-30T23:39:57.656160800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F19": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F1221051039810110150109113116116_5F19"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F19"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F1221051039810110150109113116116_5F19",
        "firmwareVersion": "Zigbee2MQTT 1.42.0",
        "modelId": "Group",
        "newStyleChannels": "true",
        "topics": [
          "light/1221051039810110150109113116116_19/light",
          "scene/1221051039810110150109113116116_19/scene_0",
          "scene/1221051039810110150109113116116_19/scene_1"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Schlafzimmer/group_bedroom",
      "timestamp": "2024-12-30T23:39:57.656657900Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F21": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F1221051039810110150109113116116_5F21"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F21"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F1221051039810110150109113116116_5F21",
        "firmwareVersion": "Zigbee2MQTT 1.42.0",
        "modelId": "Group",
        "newStyleChannels": "true",
        "topics": [
          "light/1221051039810110150109113116116_21/light",
          "scene/1221051039810110150109113116116_21/scene_0",
          "scene/1221051039810110150109113116116_21/scene_1"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/group_livingroom",
      "timestamp": "2024-12-30T23:39:57.656657900Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F22": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F1221051039810110150109113116116_5F22"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F22"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F1221051039810110150109113116116_5F22",
        "firmwareVersion": "Zigbee2MQTT 1.42.0",
        "modelId": "Group",
        "newStyleChannels": "true",
        "topics": [
          "light/1221051039810110150109113116116_22/light",
          "scene/1221051039810110150109113116116_22/scene_0",
          "scene/1221051039810110150109113116116_22/scene_1"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "PC Zimmer/group_pc",
      "timestamp": "2024-12-30T23:39:57.657157100Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F29": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F1221051039810110150109113116116_5F29"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F29"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F1221051039810110150109113116116_5F29",
        "firmwareVersion": "Zigbee2MQTT 1.42.0",
        "modelId": "Group",
        "newStyleChannels": "true",
        "topics": [
          "light/1221051039810110150109113116116_29/light",
          "scene/1221051039810110150109113116116_29/scene_0",
          "scene/1221051039810110150109113116116_29/scene_1"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/group_livingroom_front",
      "timestamp": "2024-12-30T23:39:57.657658Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F30": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F1221051039810110150109113116116_5F30"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F30"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F1221051039810110150109113116116_5F30",
        "firmwareVersion": "Zigbee2MQTT 1.42.0",
        "modelId": "Group",
        "newStyleChannels": "true",
        "topics": [
          "light/1221051039810110150109113116116_30/light",
          "scene/1221051039810110150109113116116_30/scene_0",
          "scene/1221051039810110150109113116116_30/scene_1"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/group_livingroom_back",
      "timestamp": "2024-12-30T23:39:57.657658Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F31": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F1221051039810110150109113116116_5F31"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F31"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F1221051039810110150109113116116_5F31",
        "firmwareVersion": "Zigbee2MQTT 1.42.0",
        "modelId": "Group",
        "newStyleChannels": "true",
        "topics": [
          "light/1221051039810110150109113116116_31/light",
          "scene/1221051039810110150109113116116_31/scene_0",
          "scene/1221051039810110150109113116116_31/scene_1"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Wohnzimmer/group_livingroom_standing",
      "timestamp": "2024-12-30T23:39:57.658156800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F5": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F1221051039810110150109113116116_5F5"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F5"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F1221051039810110150109113116116_5F5",
        "firmwareVersion": "Zigbee2MQTT 1.42.0",
        "modelId": "Group",
        "newStyleChannels": "true",
        "topics": [
          "light/1221051039810110150109113116116_5/light",
          "scene/1221051039810110150109113116116_5/scene_0",
          "scene/1221051039810110150109113116116_5/scene_1"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Badezimmer/group_bathroom",
      "timestamp": "2024-12-30T23:39:57.656160800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F8": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5F1221051039810110150109113116116_5F8"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5F1221051039810110150109113116116_5F8"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5F1221051039810110150109113116116_5F8",
        "firmwareVersion": "Zigbee2MQTT 1.42.0",
        "modelId": "Group",
        "newStyleChannels": "true",
        "topics": [
          "light/1221051039810110150109113116116_8/light",
          "scene/1221051039810110150109113116116_8/scene_0",
          "scene/1221051039810110150109113116116_8/scene_1"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Küche/group_kitchen",
      "timestamp": "2024-12-30T23:39:57.656160800Z",
      "timeToLive": -1
    }
  },
  "mqtt:homeassistant:79310854e0:zigbee2mqtt_5Fbridge_5F0x00124b0024c12a85": {
    "class": "org.openhab.core.config.discovery.internal.DiscoveryResultImpl",
    "value": {
      "bridgeUID": {
        "segments": [
          "mqtt",
          "broker",
          "79310854e0"
        ],
        "uid": "mqtt:broker:79310854e0"
      },
      "thingUID": {
        "segments": [
          "mqtt",
          "homeassistant",
          "79310854e0",
          "zigbee2mqtt_5Fbridge_5F0x00124b0024c12a85"
        ],
        "uid": "mqtt:homeassistant:79310854e0:zigbee2mqtt_5Fbridge_5F0x00124b0024c12a85"
      },
      "thingTypeUID": {
        "segments": [
          "mqtt",
          "homeassistant"
        ],
        "uid": ""
      },
      "properties": {
        "basetopic": "homeassistant",
        "deviceId": "zigbee2mqtt_5Fbridge_5F0x00124b0024c12a85",
        "firmwareVersion": "1.42.0",
        "modelId": "Bridge",
        "newStyleChannels": "true",
        "topics": [
          "binary_sensor/1221051039810110150109113116116_0x00124b0024c12a85/connection_state",
          "binary_sensor/1221051039810110150109113116116_0x00124b0024c12a85/restart_required",
          "button/1221051039810110150109113116116_0x00124b0024c12a85/restart",
          "select/1221051039810110150109113116116_0x00124b0024c12a85/log_level",
          "sensor/1221051039810110150109113116116_0x00124b0024c12a85/coordinator_version",
          "sensor/1221051039810110150109113116116_0x00124b0024c12a85/network_map",
          "sensor/1221051039810110150109113116116_0x00124b0024c12a85/permit_join_timeout",
          "sensor/1221051039810110150109113116116_0x00124b0024c12a85/version",
          "switch/1221051039810110150109113116116_0x00124b0024c12a85/permit_join"
        ],
        "vendor": "Zigbee2MQTT"
      },
      "representationProperty": "deviceId",
      "flag": "NEW",
      "label": "Zigbee2MQTT Bridge",
      "timestamp": "2024-12-30T23:39:57.643671700Z",
      "timeToLive": -1
    }
  }
}

@ccutrer
Copy link
Contributor Author

ccutrer commented Dec 30, 2024

Oops. Maybe I should have been more clear. I'm looking for the JSON in MQTT at homeassistant/+/+/+/config, not the openHAB inbox JSON. You can use something like MQTT Explorer to find it, or the configuration for a channel on a thing that has actually been added to openHAB has it cached.

@TheNetStriker
Copy link
Contributor

@ccutrer Ok, I was able to export the MQTT config JSON topics via the mosquitto_sub command line. There are also some esphome devices in there. Maybe this also helps for the tests.

The output is to big to post here, so I uploaded it to pastebin: https://pastebin.com/Ne5uiKFn
The link will expire in one week.

cipianpascu pushed a commit to cipianpascu/openhab-addons that referenced this pull request Jan 2, 2025
As opposed to null name. In either case, it's not usable,
and we need to use our fallbacks.

Signed-off-by: Cody Cutrer <cody@cutrer.us>
Signed-off-by: Ciprian Pascu <contact@ciprianpascu.ro>
ccutrer added a commit to ccutrer/openhab-addons that referenced this pull request Jan 2, 2025
Re-fixes openhab#15427, regressed from openhab#17933

Signed-off-by: Cody Cutrer <cody@cutrer.us>
jlaur pushed a commit that referenced this pull request Jan 2, 2025
Re-fixes #15427, regressed from #17933

Signed-off-by: Cody Cutrer <cody@cutrer.us>
jlaur pushed a commit that referenced this pull request Jan 2, 2025
Re-fixes #15427, regressed from #17933

Signed-off-by: Cody Cutrer <cody@cutrer.us>
@openhab-bot
Copy link
Collaborator

This pull request has been mentioned on openHAB Community. There might be relevant details there:

https://community.openhab.org/t/suggestion-for-openhab-4-3-home-assistant-mqtt-scenes-in-single-channel/161226/10

chilobo pushed a commit to chilobo/openhab-addons that referenced this pull request Feb 10, 2025
As opposed to null name. In either case, it's not usable,
and we need to use our fallbacks.

Signed-off-by: Cody Cutrer <cody@cutrer.us>
Signed-off-by: Christian Koch <78686276+chilobo@users.noreply.github.com>
chilobo pushed a commit to chilobo/openhab-addons that referenced this pull request Feb 10, 2025
Re-fixes openhab#15427, regressed from openhab#17933

Signed-off-by: Cody Cutrer <cody@cutrer.us>
Signed-off-by: Christian Koch <78686276+chilobo@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug An unexpected problem or unintended behavior of an add-on patch A PR that has been cherry-picked to a patch release branch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[mqtt.homeassistant] Device with an empty component name has no channels after upgrading to OH 4.3.0
6 participants