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

Refactor unique id handling throughout the addon #179

Merged
merged 16 commits into from
May 5, 2021

Conversation

SweVictor
Copy link
Collaborator

Work in progress regarding changing unique id handling throughout the addon. Will affect internals, lookups, mqtt, break existing devices in HA and more.

Lots of discussion in #102

@SweVictor SweVictor changed the title Feature/id refactor Refactor unique id handling throughout the addon Mar 29, 2021
@SweVictor
Copy link
Collaborator Author

Work in DeviceRegistry (central repository for all entities in the addon) is started as of now. Main changes include

  • Use deviceId_output as the main unique key for outputs/loads
  • Simplify and mainly talk about outputs rather than devices. So DIM_02 should show up as 2 outputs, WPH-01 as 0. Rooms are also added as outputs if that config setting is enabled
  • Scenes will be continued to be handled separately

Currently the code is not intended to run, it's just posted here for code review purposes.

@SweVictor
Copy link
Collaborator Author

Version ready for initial dev testing. Expected to work mostly, but not well-tested. Scenes are moved to HA scenes rather than switches so currently they can't be listened to.

@SweVictor SweVictor added the testing wanted More users testing is needed label Apr 6, 2021
- Minor updates to other packages
- Relates to #181
@JohnLindahlTech
Copy link
Contributor

Version ready for initial dev testing. Expected to work mostly, but not well-tested. Scenes are moved to HA scenes rather than switches so currently they can't be listened to.

I use Plejd scenes in my automations, what does this comment actually mean for me to be able to continue using those?

@SweVictor
Copy link
Collaborator Author

I use Plejd scenes in my automations, what does this comment actually mean for me to be able to continue using those?

That is a very good question :)

Currently I don't see the scenes anywhere in HA, I can see them in MQTT Explorer. The idea is to move them from mqtt "switches" to mqtt "scenes", but for some reason they're not showing up.

Any ideas as to why?

Mqtt screenshot for overall topic structure
image

Light (working)

{
  "schema": "json",
  "name": "Kök bänk",
  "unique_id": "CD0C690DBCA9_0",
  "~": "homeassistant/light/plejd/CD0C690DBCA9_0",
  "state_topic": "~/state",
  "command_topic": "~/set",
  "availability_topic": "~/availability",
  "optimistic": false,
  "qos": 1,
  "retain": true,
  "brightness": true,
  "device": {
    "identifiers": "CD0C690DBCA9",
    "manufacturer": "Plejd",
    "model": "DIM-01",
    "name": "Kök bänk",
    "sw_version": "2.0"
  }
}

Scene (not working)

{
  "name": "Släck plejd 🌠",
  "~": "homeassistant/scene/plejd/8914a5e6-8791-4ea3-9130-7971957544f8",
  "command_topic": "~/set",
  "optimistic": false,
  "qos": 1,
  "retain": true,
  "device": {
    "identifiers": "8914a5e6-8791-4ea3-9130-7971957544f8",
    "manufacturer": "Plejd",
    "model": "Scene",
    "name": "Släck plejd 🌠"
  }
}

@SweVictor
Copy link
Collaborator Author

Alright - so - I reached out to the HA community at https://community.home-assistant.io/t/mqtt-scene-config-discovery-from-addon-not-working/297211

Possibly the wrong sub-forum, but either way - no replies for over a week.

Since I can't get scenes over mqtt to work at all I'll try reverting to using switches, hopefully in the next few days, unless I get some help from someone how to move forward.

@SweVictor
Copy link
Collaborator Author

@JohnPhoto and others - scenes should now work as before (registered as switches in mqtt)

@faanskit
Copy link
Contributor

Noteworthy evolution: With high probability, DAL-01 will be launched tomorrow. Both IOS and Android Apps are updated to support it since yesterday, and suppliers seems prepared.
It will be interesting to see how the protocol updates with it. Each DAL-01 seems to be able to feed 64 DALI loads, and it is certified for color control, though the datasheet only talks about tunable white lights.
This may be worth considering now when refactoring. I would expect DAL-01 to initially behave like DIM-02, but with a few more loads connected to it. I.e. outputSettings[deviceId[output]] will take values > 1.
Big question is how they will signal color on the BLE, should it become supported.

@SweVictor
Copy link
Collaborator Author

SweVictor commented Apr 22, 2021

This may be worth considering now when refactoring. I would expect DAL-01 to initially behave like DIM-02, but with a few more loads connected to it. I.e. outputSettings[deviceId[output]] will take values > 1.
Big question is how they will signal color on the BLE, should it become supported.

Hopefully the basic structure is similar (API-wise), BLE-wise the current limit of 255 devices seems like a very blocking thing...

Either way I think we should finish this PR first unless someone can check it with DAL-01 VERY quickly and report back that some changes are needed.

@faanskit
Copy link
Contributor

Since I can't get scenes over mqtt to work at all I'll try reverting to using switches, hopefully in the next few days, unless I get some help from someone how to move forward.

Tried to understand this. From my layman point of view, MQTT scenes are what HA performs TOWARDS a MQTT device that is able to carry out routines. Also, I think scenes are not the right way forward for "Plejd Scenes". Also, I think the Switch is not right.

Instead, my vote is on the device_trigger that you catch in an automation.

If I get this right, first you register your device_trigger in the registry:
<discovery_prefix>/device_automation/[<node_id>/]<object_id>/config
Then you publish on on the bus and create your automation accordingly.

What you publish, you also create an automation for it.

automation:
  trigger:
    - platform: mqtt
      topic: "scenario/mysbelysning"
      # Optional
      payload: "on"
  - data:
      entity_id:
      - light.ute_framsida
      - light.ute_baksida
    service: light.turn_on

I'll se if I can test this hypothesis with mosquitto_pub
/M

@SweVictor
Copy link
Collaborator Author

Tried to understand this. From my layman point of view, MQTT scenes are what HA performs TOWARDS a MQTT device that is able to carry out routines.

Yes - that's exactly what I tried to implement. The problem is that if I replace "switch" with "scene" in mqtt config message (from addon to HA) I can't see anything showing up in HA. No switch, no scene, no nothing. And I don't know how to debug that.

The revert that makes switches show up again is here c646bc5

/Victor

@faanskit
Copy link
Contributor

faanskit commented Apr 22, 2021

Yes - that's exactly what I tried to implement

I think you got it wrong. I have it working now with mosquitto_pub.

1.) Register the Device Trigger in the Device Registry:
mosquitto_pub -h 10.0.0.1 -u homeassistant -P <password> -p 1883 -t "homeassistant/device_automation/plejd/55/config" -m '{"automation_type":"trigger","topic":"homeassistant/device_automation/plejd/55/execute","type":"button_short_press","subtype":"turn_on","device":{"identifiers":"CD0C690DBCA9_0","manufacturer":"Plejd","model":"Scene","name":"MyScene"}}'

2.) Create an automation (I did it from the HA UI):

- id: '1619115366835'
  alias: PlejdScene
  description: ''
  trigger:
  - platform: device
    domain: mqtt
    device_id: 72f4620c4b5cf539a1b8a7f0384c1dc8
    type: button_short_press
    subtype: turn_on
    discovery_id: plejd 55
  condition: []
  action:
  - type: turn_on
    device_id: 67e678af86916120d64a38927d75cc62
    entity_id: light.dimmer
    domain: light
  mode: single

3.) Fire away
mosquitto_pub -h 10.0.0.1 -u homeassistant -P <password> -p 1883 -t "homeassistant/device_automation/plejd/55/execute" -m 'execute'

Thats it. When I publish "execute" my dimmer lights up, all according to the automation created.

NOTE:
a.) The topic /execute was made up by me, it is nowhere defined.
b.) When I publish the topic /execute a random message is needed, i just used execute there as well. You may want to register 'execute' as part of /config parameter payload. At least that is how I think it works :-)
c.) I recommend to use the predefined type and subtype which will allow for better integration in the UI.

A few screeshots attached:
1.) My device registry after /config
scene_1

2.) Information about the object in the device registry
scene_2

3.) The MQTT info in the registry
scene_3

BR, Marcus

@faanskit
Copy link
Contributor

...and...this is how the WPH-01 also should be implemented. As a device trigger.

@faanskit
Copy link
Contributor

NOTE!!!

This may not be the way to go for scenes. If we use device tracker for Plejd Scenes, you cannot runt the Plejd Scene from the Home Assistant UI. We don't want to loose that.

I would rather keep the Plejd Scenes as HA Switches and use Device Tracker for WPH-01.

@faanskit
Copy link
Contributor

faanskit commented Apr 22, 2021

...and while you poke in this...

Please add "unique_id" when Plejd Scenes are registered with /config
Without that it cannot be managed via the UI.
Removing stale configurations will be almost impossible.

/Marcus

@faanskit
Copy link
Contributor

faanskit commented Apr 23, 2021

Reg WPH-01 integration, did som more digging (sneak peaking at zigbee2mqtt).

The following MQTT works in the desired way. I.e. having all the buttons connected to ene entity in Home Assistant, with different actions.

mosquitto_pub -h 192.168.1.176 -u homeassistant -P <password> -p 1883 -t "homeassistant/device_automation/plejd/55_0/config" -m '{"automation_type":"trigger","payload":"0","topic":"homeassistant/plejd/55/action","type":"button_short_press","subtype":"button_1","device":{"identifiers":"CD0C690DBCA9","manufacturer":"Plejd","model":"WPH-01","name":"MyNop"}}'
mosquitto_pub -h 192.168.1.176 -u homeassistant -P <password> -p 1883 -t "homeassistant/device_automation/plejd/55_1/config" -m '{"automation_type":"trigger","payload":"1","topic":"homeassistant/plejd/55/action","type":"button_short_press","subtype":"button_2","device":{"identifiers":"CD0C690DBCA9","manufacturer":"Plejd","model":"WPH-01","name":"MyNop"}}'
mosquitto_pub -h 192.168.1.176 -u homeassistant -P <password> -p 1883 -t "homeassistant/plejd/55/action" -m '0'
mosquitto_pub -h 192.168.1.176 -u homeassistant -P <password> -p 1883 -t "homeassistant/plejd/55/action" -m '1'

A few IMPORTANT notes:
1.) When publishing /configure, it is important that <object_id> is unique. In the above example, I assumed that the WPH-01 was identified as 55 on the BLE bus. I added _0 and _1 respectively. E.g. homeassistant/device_automation/plejd/55_0/config
2.) The device identifiers must be the same for all buttons on the same WPH-01. E.g. CD0C690DBCA9
3. ) The name must be the same for all buttons on the same WPH-01. This is the Friendly Name in HA. E.g. MyNop
3.) The action can be the same, instead identified by the payload parameter.

@SweVictor
Copy link
Collaborator Author

This may not be the way to go for scenes. If we use device tracker for Plejd Scenes, you cannot runt the Plejd Scene from the Home Assistant UI. We don't want to loose that.

I would rather keep the Plejd Scenes as HA Switches and use Device Tracker for WPH-01.

Yes, exactly that. I would prefer

  • mqtt scene for triggering scenes FROM HA (rather than switch, which really is the wrong domain I think)
  • mqtt device trigger for sending info about triggered scenes TO HA (rather than setting and resetting the switch)

The problem is that I can't get the mqtt scene part to create any devices in HA. If you can make that work I'd be happy to try again.

@faanskit
Copy link
Contributor

faanskit commented May 5, 2021

Found some time to poll some logs.

Thanks. But in order to understand what causing this, I'd need to see the result of a silly log during startup. In particular, the response from Plejd API that starts like this:

2021-03-25 07:07:45 SLY [plejd-api] [
  {
    "site": {
      "siteId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx",
      "title": "---scrubbed---"
    },
    "plejdDevice": [
      "XXXXXXXXXXXX ",
      "XXXXXXXXXXXX ",
      "XXXXXXXXXXXX "
    ],
...

Before you publish this online you want to remove some information like cryptoKey, zipCode, city, longitude, latitude, country, email, username, title. There are multiple occurrences.

From the info provided I have good and bad news, The bad news is that we will not be able to capture turning the WRT-01 knob. The good news is that WRT-01 behaves just like the WPH-01.

This message 00011000162300af0a decodes likes this with current implementation:

0016 = Click command
0x23 = 35 = DeviceId in the BLE
00 = Button 0

In order to be able to implement support for WRT-01 as device_automation I need to see (at minimum) inputAddress[], inputSettings[], devices[], plejdDevice[] from your silly log for the WRT-01.

I would assume the inputAddress[] to look like this:

  "inputAddress": {
    "XXXXXXXXXXXX ": {
      "0": 35,
    },
  },

In the inputSettings, I am keen to see the value of buttonType, which likely is something different that DirectionUp/DirectionDown.

And in order to decode it, I need the hardwareId from plejdDevice.

@vBrolin
Copy link

vBrolin commented May 5, 2021

Here is the complete log from the startup.
D228A8639276 is the WRT
"sitePermission": {
"site": {
"previousOwners": [
x
x
x
],
"title": x,
"siteId": "x",
"version": 486,
"createdAt": x",
"updatedAt": "x",
"plejdMesh": {
"__type": "Pointer",
"className": "PlejdMesh",
"objectId": "lSFlnJyFki"
},
"astroTable": {
"sunrise": [
x
],
"sunset": [
x
]
},
"city": x
"coordinates": {
"__type": "GeoPoint",
"latitude": x
"longitude": x
},
"country": "Sverige",
"deviceAstroTable": {
"sunrise": [
x
],
"sunset": [
x
]
},
"zipCode": x,
"ACL": {},
"objectId": x
"__type": "Object",
"className": "Site"
},
"siteId": "x",
"user": {
"profileName": "HomeAssistant",
"isInstaller": true,
"email": x
"locale": "sv",
"username": x
"hasIntegration": false,
"_email_verify_token": x
"emailVerified": false,
"createdAt": "x",
"updatedAt": "x",
"profile": {
"__type": "Pointer",
"className": "UserProfile",
"objectId": x
},
"_failed_login_count": 0,
"ACL": {
x{
"read": true,
"write": true
}
},
"objectId": x
"__type": "Object",
"className": "_User"
},
"userId": x
"isOwner": true,
"isInstaller": false,
"isUser": false,
"locked": false,
"createdAt": "x
"updatedAt": "x",
"ACL": {},
"objectId": x
"__type": "Object",
"className": "SitePermission"
},
"inputAddress": {
"DB3D40475D0E": {
"0": 11,
"1": 11
},
"EAC126EBF76E": {
"0": 14,
"1": 15
},
"C2503522D140": {
"0": 17,
"1": 18
},
"F6E2CA3BE52E": {
"0": 21,
"1": 20
},
"E816D4D4C784": {
"0": 20,
"1": 26
},
"E3277CD9805B": {
"0": 28,
"1": 28
},
"C15C52AE29D7": {
"0": 30,
"1": 30
},
"E25D738BB870": {
"0": 23,
"1": 24
},
"CE19E3A2D0EE": {
"0": 31,
"1": 255
},
"C00A0EA25947": {
"0": 33,
"1": 33,
"2": 33
},
"FAAA22BEBEFD": {
"0": 255,
"1": 255,
"2": 255,
"3": 255
},
"D228A8639276": {
"0": 255
}
},
"outputAddress": {
"DB3D40475D0E": {
"0": 11
},
"EAC126EBF76E": {
"0": 14,
"1": 15
},
"C2503522D140": {
"0": 17,
"1": 18
},
"F6E2CA3BE52E": {
"0": 20,
"1": 21
},
"E816D4D4C784": {
"0": 26
},
"E3277CD9805B": {
"0": 28
},
"C15C52AE29D7": {
"0": 30
},
"E25D738BB870": {
"0": 23
},
"CE19E3A2D0EE": {
"0": 31
},
"C00A0EA25947": {
"0": 33
}
},
"deviceAddress": {
"DB3D40475D0E": 11,
"EAC126EBF76E": 14,
"C2503522D140": 17,
"F6E2CA3BE52E": 20,
"E816D4D4C784": 26,
"E3277CD9805B": 28,
"C15C52AE29D7": 30,
"E25D738BB870": 23,
"CE19E3A2D0EE": 31,
"C00A0EA25947": 33,
"FAAA22BEBEFD": 34,
"D228A8639276": 35
},
"outputGroups": {
"C00A0EA25947": {
"0": [
32,
33
]
},
"C15C52AE29D7": {
"0": [
29,
30
]
},
"C2503522D140": {
"0": [
16,
17,
24
],
"1": [
16,
18,
24
]
},
"CE19E3A2D0EE": {
"0": [
25,
31
]
},
"DB3D40475D0E": {
"0": [
10,
11
]
},
"E25D738BB870": {
"0": [
22,
23
]
},
"E3277CD9805B": {
"0": [
27,
28
]
},
"E816D4D4C784": {
"0": [
19,
26
]
},
"EAC126EBF76E": {
"0": [
12,
14
],
"1": [
13,
15
]
},
"F6E2CA3BE52E": {
"0": [
19,
20
],
"1": [
19,
21
]
}
},
"roomAddress": {
"31773fe6-454f-4da9-8f41-c2bc65bd6ad6": 10,
"1ba0fceb-59ed-48b4-8f20-bcbe5804fc92": 12,
"83fbaf50-456c-42cf-8dd6-7c39170e8e1b": 13,
"59a0c8e5-d8d3-4e3b-9bdf-ade60be1ede0": 16,
"656865c2-b260-4416-995d-f5f75a43c3cd": 19,
"56e1e3be-e144-411d-931e-53fe8a2f7f64": 22,
"d7e19746-b2b0-41b0-9fb4-4effd764112c": 27,
"8fcb49ed-5d7f-4229-93c1-553454d59f32": 29,
"320a52a9-91dc-48aa-9f11-eb82369e150e": 25,
"5581371b-678d-4464-abfb-934fcf865557": 32
},
"sceneIndex": {
"a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1": 1,
"0126fbeb-9953-4e9a-9d40-54dcded80d6f": 2,
"d82e0c31-e894-4366-a3e2-55fe1386e8c3": 3,
"cc6dd227-8b8c-4350-afb1-83547c4abd72": 5,
"e7da4130-0152-4cda-be42-453cc4beb34e": 4,
"3988c101-cd02-4057-a5bc-2f8399a551c4": 6,
"087dcea7-522d-4a20-8125-53093d07968c": 7,
"dfdd7155-0792-4684-b3b8-3c6cceb301a4": 8,
"35a28061-5838-4a4d-91ca-ddfb25682854": 9,
"95a71255-6dc3-45f1-8f39-7d7273efbdb5": 10,
"4282344f-8636-489f-9007-367ce954b95f": 11
},
"images": {
"31773fe6-454f-4da9-8f41-c2bc65bd6ad6": "https://cloud.plejd.com/parse/files/zHtVqXt8k4yFyk2QGmgp48D9xZr2G94xWYnF4dak/bcc8b8087eba0b22b83b28964d424cb8_31773fe6-454f-4da9-8f41-c2bc65bd6ad6_image.jpg"
},
"deviceLimit": 80
}
2021-05-05 09:02:48 INF [plejd-api] Saving cached copy
2021-05-05 09:02:48 INF [plejd-api] Getting devices from site details response...
2021-05-05 09:02:48 INF [plejd-api] No Plejd gateway found on site
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":11,"deviceId":"DB3D40475D0E","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Fjärrvärmestyrning","output":0,"roomId":"31773fe6-454f-4da9-8f41-c2bc65bd6ad6","type":"light","typeName":"CTR-01","version":"2.1","uniqueId":"DB3D40475D0E_0"}. 1 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 31773fe6-454f-4da9-8f41-c2bc65bd6ad6: ["DB3D40475D0E_0"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":14,"deviceId":"EAC126EBF76E","dimmable":false,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Frikyla Nedervåning","output":0,"roomId":"1ba0fceb-59ed-48b4-8f20-bcbe5804fc92","type":"switch","typeName":"REL-02","version":"1.0.7","uniqueId":"EAC126EBF76E_0"}. 2 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 1ba0fceb-59ed-48b4-8f20-bcbe5804fc92: ["EAC126EBF76E_0"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":15,"deviceId":"EAC126EBF76E","dimmable":false,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Frikyla Övervåning","output":1,"roomId":"83fbaf50-456c-42cf-8dd6-7c39170e8e1b","type":"light","typeName":"REL-02","version":"1.0.7","uniqueId":"EAC126EBF76E_1"}. 3 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 83fbaf50-456c-42cf-8dd6-7c39170e8e1b: ["EAC126EBF76E_1"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":18,"deviceId":"C2503522D140","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Spotlights Kök","output":1,"roomId":"59a0c8e5-d8d3-4e3b-9bdf-ade60be1ede0","type":"light","typeName":"DIM-02","version":"2.2","uniqueId":"C2503522D140_1"}. 4 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 59a0c8e5-d8d3-4e3b-9bdf-ade60be1ede0: ["C2503522D140_1"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":17,"deviceId":"C2503522D140","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Spotskena Kök","output":0,"roomId":"59a0c8e5-d8d3-4e3b-9bdf-ade60be1ede0","type":"light","typeName":"DIM-02","version":"2.2","uniqueId":"C2503522D140_0"}. 5 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 59a0c8e5-d8d3-4e3b-9bdf-ade60be1ede0: ["C2503522D140_1","C2503522D140_0"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":20,"deviceId":"F6E2CA3BE52E","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Matbord","output":0,"roomId":"656865c2-b260-4416-995d-f5f75a43c3cd","type":"light","typeName":"DIM-02","version":"2.4.3","uniqueId":"F6E2CA3BE52E_0"}. 6 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 656865c2-b260-4416-995d-f5f75a43c3cd: ["F6E2CA3BE52E_0"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":21,"deviceId":"F6E2CA3BE52E","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Spotlights Ingång","output":1,"roomId":"656865c2-b260-4416-995d-f5f75a43c3cd","type":"light","typeName":"DIM-02","version":"2.4.3","uniqueId":"F6E2CA3BE52E_1"}. 7 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 656865c2-b260-4416-995d-f5f75a43c3cd: ["F6E2CA3BE52E_0","F6E2CA3BE52E_1"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":26,"deviceId":"E816D4D4C784","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Taklampa Soffa","output":0,"roomId":"656865c2-b260-4416-995d-f5f75a43c3cd","type":"light","typeName":"DIM-01","version":"2.2.1","uniqueId":"E816D4D4C784_0"}. 8 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 656865c2-b260-4416-995d-f5f75a43c3cd: ["F6E2CA3BE52E_0","F6E2CA3BE52E_1","E816D4D4C784_0"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":28,"deviceId":"E3277CD9805B","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Sovrum Tak","output":0,"roomId":"d7e19746-b2b0-41b0-9fb4-4effd764112c","type":"light","typeName":"DIM-01","version":"2.2.1","uniqueId":"E3277CD9805B_0"}. 9 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room d7e19746-b2b0-41b0-9fb4-4effd764112c: ["E3277CD9805B_0"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":30,"deviceId":"C15C52AE29D7","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Hall","output":0,"roomId":"8fcb49ed-5d7f-4229-93c1-553454d59f32","type":"light","typeName":"DIM-01","version":"2.2.1","uniqueId":"C15C52AE29D7_0"}. 10 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 8fcb49ed-5d7f-4229-93c1-553454d59f32: ["C15C52AE29D7_0"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":23,"deviceId":"E25D738BB870","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Spotlights Korridor","output":0,"roomId":"56e1e3be-e144-411d-931e-53fe8a2f7f64","type":"light","typeName":"DIM-01","version":"2.2.1","uniqueId":"E25D738BB870_0"}. 11 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 56e1e3be-e144-411d-931e-53fe8a2f7f64: ["E25D738BB870_0"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":31,"deviceId":"CE19E3A2D0EE","dimmable":false,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Frikylekrets","output":0,"roomId":"320a52a9-91dc-48aa-9f11-eb82369e150e","type":"switch","typeName":"CTR-01","version":"2.1","uniqueId":"CE19E3A2D0EE_0"}. 12 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 320a52a9-91dc-48aa-9f11-eb82369e150e: ["CE19E3A2D0EE_0"]
2021-05-05 09:02:48 VRB [device-registry] Added/updated output device: {"bleOutputAddress":33,"deviceId":"C00A0EA25947","dimmable":true,"hiddenFromRoomList":false,"hiddenFromIntegrations":false,"name":"Ljudtest","output":0,"roomId":"5581371b-678d-4464-abfb-934fcf865557","type":"light","typeName":"CTR-01","version":"2.1","uniqueId":"C00A0EA25947_0"}. 13 output devices in total.
2021-05-05 09:02:48 VRB [device-registry] Added device to room 5581371b-678d-4464-abfb-934fcf865557: ["C00A0EA25947_0"]
2021-05-05 09:02:48 VRB [plejd-api] No outputSettings found for Test (FAAA22BEBEFD), assuming output 0
2021-05-05 09:02:48 VRB [plejd-api] No outputSettings found for Test (D228A8639276), assuming output 0
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":1,"dimmable":false,"hiddenFromSceneList":false,"name":"Allt av","state":false,"type":"scene","typeName":"Scene","uniqueId":"a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1"}. 1 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":2,"dimmable":false,"hiddenFromSceneList":false,"name":"Spotlights Hall på","state":false,"type":"scene","typeName":"Scene","uniqueId":"0126fbeb-9953-4e9a-9d40-54dcded80d6f"}. 2 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":3,"dimmable":false,"hiddenFromSceneList":false,"name":"Mys","state":false,"type":"scene","typeName":"Scene","uniqueId":"d82e0c31-e894-4366-a3e2-55fe1386e8c3"}. 3 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":5,"dimmable":false,"hiddenFromSceneList":false,"name":"Rullgardin","state":false,"type":"scene","typeName":"Scene","uniqueId":"cc6dd227-8b8c-4350-afb1-83547c4abd72"}. 4 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":4,"dimmable":false,"hiddenFromSceneList":false,"name":"Play/Pause Kök","state":false,"type":"scene","typeName":"Scene","uniqueId":"e7da4130-0152-4cda-be42-453cc4beb34e"}. 5 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":6,"dimmable":false,"hiddenFromSceneList":false,"name":"Next song Kök","state":false,"type":"scene","typeName":"Scene","uniqueId":"3988c101-cd02-4057-a5bc-2f8399a551c4"}. 6 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":7,"dimmable":false,"hiddenFromSceneList":false,"name":"Bilstart","state":false,"type":"scene","typeName":"Scene","uniqueId":"087dcea7-522d-4a20-8125-53093d07968c"}. 7 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":8,"dimmable":false,"hiddenFromSceneList":false,"name":"Synka allt ljud","state":false,"type":"scene","typeName":"Scene","uniqueId":"dfdd7155-0792-4684-b3b8-3c6cceb301a4"}. 8 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":9,"dimmable":false,"hiddenFromSceneList":false,"name":"Previous Song Kök","state":false,"type":"scene","typeName":"Scene","uniqueId":"35a28061-5838-4a4d-91ca-ddfb25682854"}. 9 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":10,"dimmable":false,"hiddenFromSceneList":false,"name":"Ekot","state":false,"type":"scene","typeName":"Scene","uniqueId":"95a71255-6dc3-45f1-8f39-7d7273efbdb5"}. 10 scenes in total.
2021-05-05 09:02:48 VRB [device-registry] Added/updated scene: {"bleOutputAddress":11,"dimmable":false,"hiddenFromSceneList":false,"name":"x","state":false,"type":"scene","typeName":"Scene","uniqueId":"4282344f-8636-489f-9007-367ce954b95f"}. 11 scenes in total.
2021-05-05 09:02:48 INF [plejd-mqtt] Initializing MQTT connection for Plejd addon
2021-05-05 09:02:48 VRB [plejd-ble] cleanup() - Clearing ping interval and clock update timer
2021-05-05 09:02:48 VRB [plejd-ble] Removing listeners to write events, bus events and objectManager...
2021-05-05 09:02:48 INF [plejd-ble] init()
2021-05-05 09:02:48 VRB [plejd-ble] Managed paths[
"/org/bluez",
"/org/bluez/hci0",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char002b",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char002b/desc002e",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char002b/desc002d",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0027",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0027/desc002a",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0027/desc0029",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0023",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0023/desc0026",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0023/desc0025",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001f",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001f/desc0022",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001f/desc0021",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001c",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001c/desc001e",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0019",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0019/desc001b",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0015",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0015/desc0018",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0015/desc0017",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0011",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0011/desc0014",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0011/desc0013",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000d",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000d/desc0010",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000d/desc000f",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000a",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000a/desc000c",
"/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0008"
]
2021-05-05 09:02:48 DBG [plejd-ble] Found BLE interface 'org.bluez.Adapter1' at /org/bluez/hci0
2021-05-05 09:02:48 INF [plejd-mqtt] Connected to MQTT.
2021-05-05 09:02:48 VRB [plejd-ble] Powering on BLE adapter and waiting 5 seconds
2021-05-05 09:02:48 VRB [plejd-main] connected to mqtt.
2021-05-05 09:02:48 INF [plejd-mqtt] Sending discovery for 13 Plejd output devices
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Fjärrvärmestyrning
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered CTR-01 (light) named Fjärrvärmestyrning (11 : DB3D40475D0E_0).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Frikyla Nedervåning
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered REL-02 (switch) named Frikyla Nedervåning (14 : EAC126EBF76E_0).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Frikyla Övervåning
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered REL-02 (light) named Frikyla Övervåning (15 : EAC126EBF76E_1).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Spotlights Kök
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered DIM-02 (light) named Spotlights Kök (18 : C2503522D140_1).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Spotskena Kök
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered DIM-02 (light) named Spotskena Kök (17 : C2503522D140_0).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Matbord
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered DIM-02 (light) named Matbord (20 : F6E2CA3BE52E_0).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Spotlights Ingång
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered DIM-02 (light) named Spotlights Ingång (21 : F6E2CA3BE52E_1).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Taklampa Soffa
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered DIM-01 (light) named Taklampa Soffa (26 : E816D4D4C784_0).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Sovrum Tak
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered DIM-01 (light) named Sovrum Tak (28 : E3277CD9805B_0).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Hall
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered DIM-01 (light) named Hall (30 : C15C52AE29D7_0).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Spotlights Korridor
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered DIM-01 (light) named Spotlights Korridor (23 : E25D738BB870_0).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Frikylekrets
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered CTR-01 (switch) named Frikylekrets (31 : CE19E3A2D0EE_0).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Ljudtest
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered CTR-01 (light) named Ljudtest (33 : C00A0EA25947_0).
2021-05-05 09:02:48 INF [plejd-mqtt] Sending discovery for 11 Plejd scene devices
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Allt av
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Allt av (1 : a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Spotlights Hall på
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Spotlights Hall på (2 : 0126fbeb-9953-4e9a-9d40-54dcded80d6f).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Mys
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Mys (3 : d82e0c31-e894-4366-a3e2-55fe1386e8c3).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Rullgardin
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Rullgardin (5 : cc6dd227-8b8c-4350-afb1-83547c4abd72).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Play/Pause Kök
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Play/Pause Kök (4 : e7da4130-0152-4cda-be42-453cc4beb34e).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Next song Kök
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Next song Kök (6 : 3988c101-cd02-4057-a5bc-2f8399a551c4).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Bilstart
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Bilstart (7 : 087dcea7-522d-4a20-8125-53093d07968c).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Synka allt ljud
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Synka allt ljud (8 : dfdd7155-0792-4684-b3b8-3c6cceb301a4).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Previous Song Kök
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Previous Song Kök (9 : 35a28061-5838-4a4d-91ca-ddfb25682854).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for Ekot
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named Ekot (10 : 95a71255-6dc3-45f1-8f39-7d7273efbdb5).
2021-05-05 09:02:48 DBG [plejd-mqtt] Sending discovery for X
2021-05-05 09:02:48 INF [plejd-mqtt] Discovered Scene (scene) named X (11 : 4282344f-8636-489f-9007-367ce954b95f).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/DB3D40475D0E_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device DB3D40475D0E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Fjärrvärmestyrning (DB3D40475D0E_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/DB3D40475D0E_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device DB3D40475D0E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Fjärrvärmestyrning (DB3D40475D0E_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/DB3D40475D0E_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device DB3D40475D0E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Fjärrvärmestyrning (DB3D40475D0E_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_1/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Spotlights Kök (C2503522D140_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_1/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Spotlights Kök (C2503522D140_1). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_1/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Spotlights Kök (C2503522D140_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_1/set
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Got mqtt SET command for light, Spotlights Kök (C2503522D140_1): {"state": "OFF"}
2021-05-05 09:02:48 INF [device-comm] Plejd got turn off command for Spotlights Kök (C2503522D140_1)
2021-05-05 09:02:48 DBG [device-comm] Queueing turn off C2503522D140_1
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Spotskena Kök (C2503522D140_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Spotskena Kök (C2503522D140_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Spotskena Kök (C2503522D140_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_0/set
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Got mqtt SET command for light, Spotskena Kök (C2503522D140_0): {"state": "ON", "brightness": 107}
2021-05-05 09:02:48 INF [device-comm] Plejd got turn on command for Spotskena Kök (C2503522D140_0), brightness 107
2021-05-05 09:02:48 DBG [device-comm] Queueing C2503522D140_0 set brightness to 107
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Matbord (F6E2CA3BE52E_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Matbord (F6E2CA3BE52E_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Matbord (F6E2CA3BE52E_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_1/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Spotlights Ingång (F6E2CA3BE52E_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_1/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Spotlights Ingång (F6E2CA3BE52E_1). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_1/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Spotlights Ingång (F6E2CA3BE52E_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E816D4D4C784_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E816D4D4C784_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Taklampa Soffa (E816D4D4C784_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E816D4D4C784_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E816D4D4C784_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Taklampa Soffa (E816D4D4C784_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E816D4D4C784_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E816D4D4C784_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Taklampa Soffa (E816D4D4C784_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E3277CD9805B_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E3277CD9805B_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Sovrum Tak (E3277CD9805B_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E3277CD9805B_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E3277CD9805B_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Sovrum Tak (E3277CD9805B_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E3277CD9805B_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E3277CD9805B_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Sovrum Tak (E3277CD9805B_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C15C52AE29D7_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C15C52AE29D7_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Hall (C15C52AE29D7_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C15C52AE29D7_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C15C52AE29D7_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Hall (C15C52AE29D7_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C15C52AE29D7_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C15C52AE29D7_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Hall (C15C52AE29D7_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C15C52AE29D7_0/set
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C15C52AE29D7_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Got mqtt SET command for light, Hall (C15C52AE29D7_0): {"state": "OFF"}
2021-05-05 09:02:48 INF [device-comm] Plejd got turn off command for Hall (C15C52AE29D7_0)
2021-05-05 09:02:48 DBG [device-comm] Queueing turn off C15C52AE29D7_0
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E25D738BB870_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E25D738BB870_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Spotlights Korridor (E25D738BB870_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E25D738BB870_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E25D738BB870_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Spotlights Korridor (E25D738BB870_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E25D738BB870_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E25D738BB870_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Spotlights Korridor (E25D738BB870_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/CE19E3A2D0EE_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Frikylekrets (CE19E3A2D0EE_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/CE19E3A2D0EE_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Frikylekrets (CE19E3A2D0EE_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/CE19E3A2D0EE_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Frikylekrets (CE19E3A2D0EE_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/CE19E3A2D0EE_0/set
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Got mqtt SET command for light, Frikylekrets (CE19E3A2D0EE_0): {"state": "OFF"}
2021-05-05 09:02:48 INF [device-comm] Plejd got turn off command for Frikylekrets (CE19E3A2D0EE_0)
2021-05-05 09:02:48 DBG [device-comm] Queueing turn off CE19E3A2D0EE_0
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/EAC126EBF76E_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Frikyla Nedervåning (EAC126EBF76E_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/EAC126EBF76E_1/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Frikyla Övervåning (EAC126EBF76E_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/EAC126EBF76E_1/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Frikyla Övervåning (EAC126EBF76E_1). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C00A0EA25947_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C00A0EA25947_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Ljudtest (C00A0EA25947_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C00A0EA25947_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C00A0EA25947_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for light, Ljudtest (C00A0EA25947_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C00A0EA25947_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C00A0EA25947_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for light, Ljudtest (C00A0EA25947_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C00A0EA25947_0/set
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C00A0EA25947_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Got mqtt SET command for light, Ljudtest (C00A0EA25947_0): {"state": "ON", "brightness": 25}
2021-05-05 09:02:48 INF [device-comm] Plejd got turn on command for Ljudtest (C00A0EA25947_0), brightness 25
2021-05-05 09:02:48 DBG [device-comm] Queueing C00A0EA25947_0 set brightness to 25
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/EAC126EBF76E_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for switch, Frikyla Nedervåning (EAC126EBF76E_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/EAC126EBF76E_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for switch, Frikyla Nedervåning (EAC126EBF76E_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/EAC126EBF76E_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for switch, Frikyla Nedervåning (EAC126EBF76E_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/EAC126EBF76E_1/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for switch, Frikyla Övervåning (EAC126EBF76E_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/EAC126EBF76E_1/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for switch, Frikyla Övervåning (EAC126EBF76E_1). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/EAC126EBF76E_1/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for switch, Frikyla Övervåning (EAC126EBF76E_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/CE19E3A2D0EE_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for switch, Frikylekrets (CE19E3A2D0EE_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/CE19E3A2D0EE_0/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for switch, Frikylekrets (CE19E3A2D0EE_0). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/CE19E3A2D0EE_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for switch, Frikylekrets (CE19E3A2D0EE_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/CE19E3A2D0EE_0/set
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Got mqtt SET command for switch, Frikylekrets (CE19E3A2D0EE_0): OFF
2021-05-05 09:02:48 VRB [plejd-mqtt] Updating state for Frikylekrets: false
2021-05-05 09:02:48 INF [device-comm] Plejd got turn off command for Frikylekrets (CE19E3A2D0EE_0)
2021-05-05 09:02:48 DBG [device-comm] Queueing turn off CE19E3A2D0EE_0
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Allt av (a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Allt av (a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/0126fbeb-9953-4e9a-9d40-54dcded80d6f/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 0126fbeb-9953-4e9a-9d40-54dcded80d6f from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Spotlights Hall på (0126fbeb-9953-4e9a-9d40-54dcded80d6f).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/0126fbeb-9953-4e9a-9d40-54dcded80d6f/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 0126fbeb-9953-4e9a-9d40-54dcded80d6f from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Spotlights Hall på (0126fbeb-9953-4e9a-9d40-54dcded80d6f). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/d82e0c31-e894-4366-a3e2-55fe1386e8c3/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene d82e0c31-e894-4366-a3e2-55fe1386e8c3 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Mys (d82e0c31-e894-4366-a3e2-55fe1386e8c3).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/d82e0c31-e894-4366-a3e2-55fe1386e8c3/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene d82e0c31-e894-4366-a3e2-55fe1386e8c3 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Mys (d82e0c31-e894-4366-a3e2-55fe1386e8c3). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/571381dc-211e-406c-aa2c-cd1a7aac0804/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 571381dc-211e-406c-aa2c-cd1a7aac0804 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, (571381dc-211e-406c-aa2c-cd1a7aac0804).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/571381dc-211e-406c-aa2c-cd1a7aac0804/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 571381dc-211e-406c-aa2c-cd1a7aac0804 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, (571381dc-211e-406c-aa2c-cd1a7aac0804). online
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/cc6dd227-8b8c-4350-afb1-83547c4abd72/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene cc6dd227-8b8c-4350-afb1-83547c4abd72 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Rullgardin (cc6dd227-8b8c-4350-afb1-83547c4abd72).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/cc6dd227-8b8c-4350-afb1-83547c4abd72/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene cc6dd227-8b8c-4350-afb1-83547c4abd72 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Rullgardin (cc6dd227-8b8c-4350-afb1-83547c4abd72). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/e7da4130-0152-4cda-be42-453cc4beb34e/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene e7da4130-0152-4cda-be42-453cc4beb34e from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Play/Pause Kök (e7da4130-0152-4cda-be42-453cc4beb34e).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/e7da4130-0152-4cda-be42-453cc4beb34e/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene e7da4130-0152-4cda-be42-453cc4beb34e from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Play/Pause Kök (e7da4130-0152-4cda-be42-453cc4beb34e). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/3988c101-cd02-4057-a5bc-2f8399a551c4/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 3988c101-cd02-4057-a5bc-2f8399a551c4 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Next song Kök (3988c101-cd02-4057-a5bc-2f8399a551c4).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/3988c101-cd02-4057-a5bc-2f8399a551c4/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 3988c101-cd02-4057-a5bc-2f8399a551c4 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Next song Kök (3988c101-cd02-4057-a5bc-2f8399a551c4). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/087dcea7-522d-4a20-8125-53093d07968c/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 087dcea7-522d-4a20-8125-53093d07968c from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Bilstart (087dcea7-522d-4a20-8125-53093d07968c).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/087dcea7-522d-4a20-8125-53093d07968c/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 087dcea7-522d-4a20-8125-53093d07968c from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Bilstart (087dcea7-522d-4a20-8125-53093d07968c). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/5cdb9fdf-85e8-4b39-9fc6-3b0b9145b670/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 5cdb9fdf-85e8-4b39-9fc6-3b0b9145b670 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, (5cdb9fdf-85e8-4b39-9fc6-3b0b9145b670).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/5cdb9fdf-85e8-4b39-9fc6-3b0b9145b670/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 5cdb9fdf-85e8-4b39-9fc6-3b0b9145b670 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, (5cdb9fdf-85e8-4b39-9fc6-3b0b9145b670). online
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/dfdd7155-0792-4684-b3b8-3c6cceb301a4/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene dfdd7155-0792-4684-b3b8-3c6cceb301a4 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Synka allt ljud (dfdd7155-0792-4684-b3b8-3c6cceb301a4).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/dfdd7155-0792-4684-b3b8-3c6cceb301a4/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene dfdd7155-0792-4684-b3b8-3c6cceb301a4 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Synka allt ljud (dfdd7155-0792-4684-b3b8-3c6cceb301a4). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/35a28061-5838-4a4d-91ca-ddfb25682854/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 35a28061-5838-4a4d-91ca-ddfb25682854 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Previous Song Kök (35a28061-5838-4a4d-91ca-ddfb25682854).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/35a28061-5838-4a4d-91ca-ddfb25682854/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 35a28061-5838-4a4d-91ca-ddfb25682854 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Previous Song Kök (35a28061-5838-4a4d-91ca-ddfb25682854). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/95a71255-6dc3-45f1-8f39-7d7273efbdb5/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 95a71255-6dc3-45f1-8f39-7d7273efbdb5 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Ekot (95a71255-6dc3-45f1-8f39-7d7273efbdb5).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/95a71255-6dc3-45f1-8f39-7d7273efbdb5/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 95a71255-6dc3-45f1-8f39-7d7273efbdb5 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, Ekot (95a71255-6dc3-45f1-8f39-7d7273efbdb5). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/4282344f-8636-489f-9007-367ce954b95f/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 4282344f-8636-489f-9007-367ce954b95f from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, x (4282344f-8636-489f-9007-367ce954b95f).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/4282344f-8636-489f-9007-367ce954b95f/availability
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 4282344f-8636-489f-9007-367ce954b95f from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt availability command for scene, x (4282344f-8636-489f-9007-367ce954b95f). offline
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/0126fbeb-9953-4e9a-9d40-54dcded80d6f_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 0126fbeb-9953-4e9a-9d40-54dcded80d6f_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (0126fbeb-9953-4e9a-9d40-54dcded80d6f_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/d82e0c31-e894-4366-a3e2-55fe1386e8c3_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device d82e0c31-e894-4366-a3e2-55fe1386e8c3_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (d82e0c31-e894-4366-a3e2-55fe1386e8c3_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/cc6dd227-8b8c-4350-afb1-83547c4abd72_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device cc6dd227-8b8c-4350-afb1-83547c4abd72_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (cc6dd227-8b8c-4350-afb1-83547c4abd72_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/e7da4130-0152-4cda-be42-453cc4beb34e_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device e7da4130-0152-4cda-be42-453cc4beb34e_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (e7da4130-0152-4cda-be42-453cc4beb34e_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/3988c101-cd02-4057-a5bc-2f8399a551c4_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 3988c101-cd02-4057-a5bc-2f8399a551c4_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (3988c101-cd02-4057-a5bc-2f8399a551c4_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/087dcea7-522d-4a20-8125-53093d07968c_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 087dcea7-522d-4a20-8125-53093d07968c_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (087dcea7-522d-4a20-8125-53093d07968c_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/5cdb9fdf-85e8-4b39-9fc6-3b0b9145b670_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 5cdb9fdf-85e8-4b39-9fc6-3b0b9145b670_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (5cdb9fdf-85e8-4b39-9fc6-3b0b9145b670_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/dfdd7155-0792-4684-b3b8-3c6cceb301a4_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device dfdd7155-0792-4684-b3b8-3c6cceb301a4_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (dfdd7155-0792-4684-b3b8-3c6cceb301a4_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/35a28061-5838-4a4d-91ca-ddfb25682854_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 35a28061-5838-4a4d-91ca-ddfb25682854_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (35a28061-5838-4a4d-91ca-ddfb25682854_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/95a71255-6dc3-45f1-8f39-7d7273efbdb5_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 95a71255-6dc3-45f1-8f39-7d7273efbdb5_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (95a71255-6dc3-45f1-8f39-7d7273efbdb5_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/4282344f-8636-489f-9007-367ce954b95f_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 4282344f-8636-489f-9007-367ce954b95f_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (4282344f-8636-489f-9007-367ce954b95f_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/DB3D40475D0E_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device DB3D40475D0E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Fjärrvärmestyrning (DB3D40475D0E_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/EAC126EBF76E_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for switch, Frikyla Nedervåning (EAC126EBF76E_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/EAC126EBF76E_1/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device EAC126EBF76E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Frikyla Övervåning (EAC126EBF76E_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_1/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Spotlights Kök (C2503522D140_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C2503522D140_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Spotskena Kök (C2503522D140_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Matbord (F6E2CA3BE52E_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_1/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Spotlights Ingång (F6E2CA3BE52E_1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E816D4D4C784_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E816D4D4C784_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Taklampa Soffa (E816D4D4C784_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E3277CD9805B_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E3277CD9805B_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Sovrum Tak (E3277CD9805B_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C15C52AE29D7_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C15C52AE29D7_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Hall (C15C52AE29D7_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E25D738BB870_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device E25D738BB870_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Spotlights Korridor (E25D738BB870_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/CE19E3A2D0EE_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for switch, Frikylekrets (CE19E3A2D0EE_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C00A0EA25947_0/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device C00A0EA25947_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for light, Ljudtest (C00A0EA25947_0).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Allt av (a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/0126fbeb-9953-4e9a-9d40-54dcded80d6f/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 0126fbeb-9953-4e9a-9d40-54dcded80d6f from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Spotlights Hall på (0126fbeb-9953-4e9a-9d40-54dcded80d6f).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/0126fbeb-9953-4e9a-9d40-54dcded80d6f_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 0126fbeb-9953-4e9a-9d40-54dcded80d6f_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (0126fbeb-9953-4e9a-9d40-54dcded80d6f_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/d82e0c31-e894-4366-a3e2-55fe1386e8c3/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene d82e0c31-e894-4366-a3e2-55fe1386e8c3 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Mys (d82e0c31-e894-4366-a3e2-55fe1386e8c3).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/d82e0c31-e894-4366-a3e2-55fe1386e8c3_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device d82e0c31-e894-4366-a3e2-55fe1386e8c3_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (d82e0c31-e894-4366-a3e2-55fe1386e8c3_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/cc6dd227-8b8c-4350-afb1-83547c4abd72/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene cc6dd227-8b8c-4350-afb1-83547c4abd72 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Rullgardin (cc6dd227-8b8c-4350-afb1-83547c4abd72).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/cc6dd227-8b8c-4350-afb1-83547c4abd72_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device cc6dd227-8b8c-4350-afb1-83547c4abd72_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (cc6dd227-8b8c-4350-afb1-83547c4abd72_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/e7da4130-0152-4cda-be42-453cc4beb34e/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene e7da4130-0152-4cda-be42-453cc4beb34e from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Play/Pause Kök (e7da4130-0152-4cda-be42-453cc4beb34e).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/e7da4130-0152-4cda-be42-453cc4beb34e_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device e7da4130-0152-4cda-be42-453cc4beb34e_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (e7da4130-0152-4cda-be42-453cc4beb34e_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/3988c101-cd02-4057-a5bc-2f8399a551c4/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 3988c101-cd02-4057-a5bc-2f8399a551c4 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Next song Kök (3988c101-cd02-4057-a5bc-2f8399a551c4).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/3988c101-cd02-4057-a5bc-2f8399a551c4_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 3988c101-cd02-4057-a5bc-2f8399a551c4_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (3988c101-cd02-4057-a5bc-2f8399a551c4_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/087dcea7-522d-4a20-8125-53093d07968c/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 087dcea7-522d-4a20-8125-53093d07968c from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Bilstart (087dcea7-522d-4a20-8125-53093d07968c).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/087dcea7-522d-4a20-8125-53093d07968c_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 087dcea7-522d-4a20-8125-53093d07968c_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (087dcea7-522d-4a20-8125-53093d07968c_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/dfdd7155-0792-4684-b3b8-3c6cceb301a4/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene dfdd7155-0792-4684-b3b8-3c6cceb301a4 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Synka allt ljud (dfdd7155-0792-4684-b3b8-3c6cceb301a4).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/dfdd7155-0792-4684-b3b8-3c6cceb301a4_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device dfdd7155-0792-4684-b3b8-3c6cceb301a4_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (dfdd7155-0792-4684-b3b8-3c6cceb301a4_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/35a28061-5838-4a4d-91ca-ddfb25682854/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 35a28061-5838-4a4d-91ca-ddfb25682854 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Previous Song Kök (35a28061-5838-4a4d-91ca-ddfb25682854).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/35a28061-5838-4a4d-91ca-ddfb25682854_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 35a28061-5838-4a4d-91ca-ddfb25682854_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (35a28061-5838-4a4d-91ca-ddfb25682854_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/95a71255-6dc3-45f1-8f39-7d7273efbdb5/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 95a71255-6dc3-45f1-8f39-7d7273efbdb5 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, Ekot (95a71255-6dc3-45f1-8f39-7d7273efbdb5).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/95a71255-6dc3-45f1-8f39-7d7273efbdb5_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 95a71255-6dc3-45f1-8f39-7d7273efbdb5_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (95a71255-6dc3-45f1-8f39-7d7273efbdb5_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/4282344f-8636-489f-9007-367ce954b95f/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting scene 4282344f-8636-489f-9007-367ce954b95f from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for scene, x (4282344f-8636-489f-9007-367ce954b95f).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/device_automation/plejd/4282344f-8636-489f-9007-367ce954b95f_trigger/config
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device 4282344f-8636-489f-9007-367ce954b95f_trigger from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt config command for device_automation, (4282344f-8636-489f-9007-367ce954b95f_trigger).
2021-05-05 09:02:48 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/CE19E3A2D0EE_0/state
2021-05-05 09:02:48 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:48 VRB [plejd-mqtt] Sent mqtt state command for switch, Frikylekrets (CE19E3A2D0EE_0).
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/DB3D40475D0E_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device DB3D40475D0E_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Fjärrvärmestyrning (DB3D40475D0E_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/EAC126EBF76E_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device EAC126EBF76E_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for switch, Frikyla Nedervåning (EAC126EBF76E_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/EAC126EBF76E_1/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device EAC126EBF76E_1 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Frikyla Övervåning (EAC126EBF76E_1). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_1/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device C2503522D140_1 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Spotlights Kök (C2503522D140_1). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C2503522D140_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device C2503522D140_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Spotskena Kök (C2503522D140_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Matbord (F6E2CA3BE52E_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/F6E2CA3BE52E_1/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device F6E2CA3BE52E_1 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Spotlights Ingång (F6E2CA3BE52E_1). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E816D4D4C784_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device E816D4D4C784_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Taklampa Soffa (E816D4D4C784_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E3277CD9805B_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device E3277CD9805B_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Sovrum Tak (E3277CD9805B_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C15C52AE29D7_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device C15C52AE29D7_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Hall (C15C52AE29D7_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/E25D738BB870_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device E25D738BB870_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Spotlights Korridor (E25D738BB870_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/switch/plejd/CE19E3A2D0EE_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device CE19E3A2D0EE_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for switch, Frikylekrets (CE19E3A2D0EE_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/light/plejd/C00A0EA25947_0/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting device C00A0EA25947_0 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for light, Ljudtest (C00A0EA25947_0). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Allt av (a4b79bb3-b4bf-4c9f-af70-b0b232d70ed1). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/0126fbeb-9953-4e9a-9d40-54dcded80d6f/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene 0126fbeb-9953-4e9a-9d40-54dcded80d6f from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Spotlights Hall på (0126fbeb-9953-4e9a-9d40-54dcded80d6f). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/d82e0c31-e894-4366-a3e2-55fe1386e8c3/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene d82e0c31-e894-4366-a3e2-55fe1386e8c3 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Mys (d82e0c31-e894-4366-a3e2-55fe1386e8c3). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/cc6dd227-8b8c-4350-afb1-83547c4abd72/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene cc6dd227-8b8c-4350-afb1-83547c4abd72 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Rullgardin (cc6dd227-8b8c-4350-afb1-83547c4abd72). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/e7da4130-0152-4cda-be42-453cc4beb34e/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene e7da4130-0152-4cda-be42-453cc4beb34e from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Play/Pause Kök (e7da4130-0152-4cda-be42-453cc4beb34e). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/3988c101-cd02-4057-a5bc-2f8399a551c4/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene 3988c101-cd02-4057-a5bc-2f8399a551c4 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Next song Kök (3988c101-cd02-4057-a5bc-2f8399a551c4). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/087dcea7-522d-4a20-8125-53093d07968c/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene 087dcea7-522d-4a20-8125-53093d07968c from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Bilstart (087dcea7-522d-4a20-8125-53093d07968c). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/dfdd7155-0792-4684-b3b8-3c6cceb301a4/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene dfdd7155-0792-4684-b3b8-3c6cceb301a4 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Synka allt ljud (dfdd7155-0792-4684-b3b8-3c6cceb301a4). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/35a28061-5838-4a4d-91ca-ddfb25682854/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene 35a28061-5838-4a4d-91ca-ddfb25682854 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Previous Song Kök (35a28061-5838-4a4d-91ca-ddfb25682854). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/95a71255-6dc3-45f1-8f39-7d7273efbdb5/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene 95a71255-6dc3-45f1-8f39-7d7273efbdb5 from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, Ekot (95a71255-6dc3-45f1-8f39-7d7273efbdb5). online
2021-05-05 09:02:50 VRB [plejd-mqtt] Received mqtt message on homeassistant/scene/plejd/4282344f-8636-489f-9007-367ce954b95f/availability
2021-05-05 09:02:50 VRB [plejd-mqtt] Getting scene 4282344f-8636-489f-9007-367ce954b95f from registry
2021-05-05 09:02:50 VRB [plejd-mqtt] Sent mqtt availability command for scene, x (4282344f-8636-489f-9007-367ce954b95f). online
2021-05-05 09:02:53 VRB [plejd-ble] Iterating 32 BLE managedObjects looking for org.bluez.Device1
2021-05-05 09:02:53 VRB [plejd-ble] Found /org/bluez/hci0/dev_DB_3D_40_47_5D_0E
2021-05-05 09:02:53 INF [plejd-ble] disconnecting /org/bluez/hci0/dev_DB_3D_40_47_5D_0E. This can take up to 180 seconds
2021-05-05 09:02:55 VRB [plejd-ble] Removing /org/bluez/hci0/dev_DB_3D_40_47_5D_0E from adapter.
2021-05-05 09:02:55 VRB [plejd-ble] All active BLE device connections cleaned up.
2021-05-05 09:02:55 VRB [plejd-ble] Got adapter undefined
2021-05-05 09:02:55 VRB [plejd-ble] Setting up interfacesAdded subscription and discovery filter
2021-05-05 09:02:55 VRB [plejd-ble] Starting BLE discovery... This can take up to 180 seconds.
2021-05-05 09:02:55 VRB [plejd-ble] Started BLE discovery
2021-05-05 09:02:55 INF [plejd-ble] BLE init done, waiting for devices.
2021-05-05 09:02:55 INF [plejd-main] Main init done
2021-05-05 09:02:55 INF [plejd-main] main() finished
2021-05-05 09:02:56 SLY [plejd-ble] Interface added /org/bluez/hci0/dev_DB_3D_40_47_5D_0E, inspecting...
2021-05-05 09:02:56 DBG [plejd-ble] Found Plejd service on /org/bluez/hci0/dev_DB_3D_40_47_5D_0E
2021-05-05 09:02:56 DBG [plejd-ble] initDiscoveredPlejdDevice(). Got /org/bluez/hci0/dev_DB_3D_40_47_5D_0E device
2021-05-05 09:02:56 DBG [plejd-ble] Inspecting /org/bluez/hci0/dev_DB_3D_40_47_5D_0E
2021-05-05 09:02:56 DBG [plejd-ble] Discovered /org/bluez/hci0/dev_DB_3D_40_47_5D_0E with rssi -74 dBm, name undefined
2021-05-05 09:02:57 INF [plejd-ble] Device discovery done, found 1 Plejd devices
2021-05-05 09:02:57 VRB [plejd-ble] Inspecting /org/bluez/hci0/dev_DB_3D_40_47_5D_0E
2021-05-05 09:02:57 INF [plejd-ble] Connecting to /org/bluez/hci0/dev_DB_3D_40_47_5D_0E
2021-05-05 09:02:58 VRB [plejd-ble] Connected. Waiting for timeout before reading characteristics...
2021-05-05 09:03:00 INF [plejd-ble] onDeviceConnected()
2021-05-05 09:03:00 DBG [plejd-ble] Device /org/bluez/hci0/dev_DB_3D_40_47_5D_0E, {"deviceId":"DB3D40475D0E","siteId":"8c8aa54c-5476-49da-b0f9-9f3e5a84c0ee","title":"Fjärrvärmestyrning","traits":11,"hiddenFromRoomList":false,"roomId":"31773fe6-454f-4da9-8f41-c2bc65bd6ad6","createdAt":"2019-10-16T20:19:59.198Z","updatedAt":"2021-03-06T08:20:39.187Z","hiddenFromIntegrations":false,"outputType":"LIGHT","ACL":{},"objectId":"iaqWJ0Tvrn","__type":"Object","className":"Device"}
2021-05-05 09:03:00 VRB [plejd-ble] Iterating connected devices looking for org.bluez.GattCharacteristic1
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez: ["org.freedesktop.DBus.Introspectable","org.bluez.AgentManager1","org.bluez.ProfileManager1"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0: ["org.freedesktop.DBus.Introspectable","org.bluez.Adapter1","org.freedesktop.DBus.Properties","org.bluez.GattManager1","org.bluez.LEAdvertisingManager1","org.bluez.Media1"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E: ["org.freedesktop.DBus.Introspectable","org.bluez.Device1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009: ["org.freedesktop.DBus.Introspectable","org.bluez.GattService1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char002b: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char002b/desc002e: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char002b/desc002d: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0027: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0027/desc002a: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0027/desc0029: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0023: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0023/desc0026: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0023/desc0025: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001f: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001f/desc0022: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001f/desc0021: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001c: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001c/desc001e: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0019: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0019/desc001b: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0015: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0015/desc0018: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0015/desc0017: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0011: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0011/desc0014: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0011/desc0013: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000d: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000d/desc0010: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000d/desc000f: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000a: ["org.freedesktop.DBus.Introspectable","org.bluez.GattCharacteristic1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000a/desc000c: ["org.freedesktop.DBus.Introspectable","org.bluez.GattDescriptor1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Interfaces /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0008: ["org.freedesktop.DBus.Introspectable","org.bluez.GattService1","org.freedesktop.DBus.Properties"]
2021-05-05 09:03:00 VRB [plejd-ble] Characteristics found: ["/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char002b","/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0027","/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0023","/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001f","/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char001c","/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0019","/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0015","/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char0011","/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000d","/org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009/char000a"]
2021-05-05 09:03:00 VRB [plejd-ble] Trying 10 characteristics on /org/bluez/hci0/dev_DB_3D_40_47_5D_0E/service0009...
2021-05-05 09:03:00 VRB [plejd-ble] found PING characteristic.
2021-05-05 09:03:00 VRB [plejd-ble] found AUTH characteristic.
2021-05-05 09:03:00 VRB [plejd-ble] found LAST_DATA characteristic.
2021-05-05 09:03:00 VRB [plejd-ble] found DATA characteristic.
2021-05-05 09:03:00 INF [plejd-ble] Connected device is a Plejd device with the right characteristics.
2021-05-05 09:03:00 INF [plejd-ble] authenticate()
2021-05-05 09:03:00 DBG [plejd-ble] Sending challenge to device
2021-05-05 09:03:00 DBG [plejd-ble] Reading response from device
2021-05-05 09:03:01 DBG [plejd-ble] Responding to authenticate
2021-05-05 09:03:01 VRB [plejd-ble] Stopping discovery...
2021-05-05 09:03:01 VRB [plejd-ble] Stopped BLE discovery
2021-05-05 09:03:01 INF [plejd-ble] BLE Connected to undefined
2021-05-05 09:03:01 INF [plejd-ble] Requesting current Plejd time...
2021-05-05 09:03:01 VRB [plejd-ble] Sending 5 byte(s) of data to Plejd. 000102001b

@faanskit
Copy link
Contributor

faanskit commented May 5, 2021

Here is the complete log from the startup.

Some vital part are missing. There must be information before the first row of your post. I'm missing inputSettings[], devices[], plejdDevice[].

Please include from this line:

2021-03-25 07:07:45 DBG [plejd-api] sending POST to https://cloud.plejd.com/parse/functions/getSiteList
2021-03-25 07:07:45 INF [plejd-api] Got site list response with 2: ---scrubbed---, ---scrubbed---
2021-03-25 07:07:45 SLY [plejd-api] All sites found:
2021-03-25 07:07:45 SLY [plejd-api] [
  {

Another humble request. Either post the log as a an attached file or use Ctrl-e (Insert code). The indentations helps readability.

Sorry for pushing for more and more; but what was provided so far will not allow me to add support fot WRT-01 or identify why your device appears as Light instead of relay.

/Marcus

@SweVictor
Copy link
Collaborator Author

Thanks @vBrolin . Very many discussions in parallel now. As stated, I will "soon" merge this, so

  • Please move discussions about device automation (event stream from WPH/WRT devices) to Added support for WRT-10 as a Device Automation #187
  • If there still is an issue for device class (light/switch) for the two channels on REL-02 I'd be happy to look at a log (here or in new issue). The log posted does not, however, contain the lists for ´devices, plejdDevices andoutputSettings`, so unfortunately I'm no wiser despite the long log posted.

@vBrolin
Copy link

vBrolin commented May 5, 2021

REL-02.txt
Had to change scrollback, the log is huge. Hopefully this contains everything.

@faanskit
Copy link
Contributor

faanskit commented May 5, 2021

Had to change scrollback, the log is huge. Hopefully this contains everything.

Perfect. Thanks.

On the RELAY/LIGHT issue, the plugin does what it is supposed to do. Plejd are for some strange reason reporting EAC126EBF76E as LIGHT in its response:

      "deviceId": "EAC126EBF76E",
      "title": "Frikyla Nedervåning",
      "outputType": "RELAY",
      "deviceId": "EAC126EBF76E",
      "title": "Frikyla Övervåning",
      "outputType": "LIGHT",

When looking at outputSettings[], they are almost identical. The only thing one can suspect is that Frikyla Övervåning was at some point defined as some kind of dimmable device, possibly a 0-10V system?

Frikyla Nedervåning

      "deviceId": "EAC126EBF76E",
      "dimMin": -2,
      "dimMax": -2,
      "dimStart": -2,

Frikyla Övervåning

      "dimMin": 0,
      "dimMax": 100,
      "dimStart": 0,

I think this is a bug on Plejds side.

The only thing I can think of is to remove the device from Plejd and re-install it again.
As requested by @SweVictor the discussion on WRT-01 will continue in the other thread.

/Marcus

@vBrolin
Copy link

vBrolin commented May 5, 2021

It's probably as you say, some sort of bug.
Both outputs have the exact same configuration, and have had since start, the REL-02 does not have a 0-10V output, so it has no dimming.

I readded the device and it imports correct now.
Thanks for checking, let's blame Plejd for this one :)

@SweVictor
Copy link
Collaborator Author

Alright! Thanks both - I'm calling it and merging this to develop so we can move on to the next PR!

@SweVictor SweVictor closed this May 5, 2021
@SweVictor SweVictor reopened this May 5, 2021
@SweVictor SweVictor merged commit 34cb7b3 into develop May 5, 2021
@vBrolin
Copy link

vBrolin commented May 5, 2021

As for updating instructions, you can just go to Integrations->MQTT-Devices, Go into each device and remove it and it will remove the entities to, it might be a quicker and easier way to do it for most

@SweVictor SweVictor deleted the feature/id-refactor branch May 5, 2021 11:42
@faanskit
Copy link
Contributor

faanskit commented May 7, 2021

Hey,

Though this PR is closed, I found one thing that may require fixing. Maybe it is like this by design, but I do have an issue with mu installation that may be related to this implementation. Not sure.

I think device.identifiers should benefit from being unique. As you can see in this log, they have the same identifiers set:

homeassistant/light/plejd/D670E6FE619D_0/config {"name":"Dimmer_2_1","unique_id":"D670E6FE619D_0","~":"homeassistant/light/plejd/D670E6FE619D_0","state_topic":"~/state","command_topic":"~/set","availability_topic":"~/availability","optimistic":false,"qos":1,"retain":true,"device":{"identifiers":"D670E6FE619D","manufacturer":"Plejd","model":"DIM-02","name":"Dimmer_2_1","sw_version":"2.4.3"},"brightness":true,"schema":"json"}
homeassistant/light/plejd/D670E6FE619D_1/config {"name":"Dimmer_2_2","unique_id":"D670E6FE619D_1","~":"homeassistant/light/plejd/D670E6FE619D_1","state_topic":"~/state","command_topic":"~/set","availability_topic":"~/availability","optimistic":false,"qos":1,"retain":true,"device":{"identifiers":"D670E6FE619D","manufacturer":"Plejd","model":"DIM-02","name":"Dimmer_2_2","sw_version":"2.4.3"},"brightness":false,"schema":"json"}

It may be my installation, but nowadays only on of the DIM-02 outpus appaer in the list:
enheter

Still, both of them are available. And, as seen in the following pictures - they are identified as related:
dim_1dim_2

@SweVictor
Copy link
Collaborator Author

Hmm... My thinking is that device should point to the physical Plejd device and entity point to the functionality of that device.

I guess you're saying that since you mostly "think" about loads, it might make sense to add individual devices instead. However, from a physical perspective it's reasonable it's one device (physical) with two entities (outputs).

Do you feel the same way given a future where we can get info about commands sent as well? From my perspective it makes sense to have one DIM_02 with two Light entities, one device_automation and possibly something else...

@faanskit
Copy link
Contributor

faanskit commented May 7, 2021

Hmm... My thinking is that device should point to the physical Plejd device and entity point to the functionality of that device.

I'm not sure about this one. Your reasoning makes sense. But, when you add area into the equation, it becomes problematic.

The different outputs from a DIM-02/REL-02 can be in different rooms. And a room is proposed (in a coming PR) to be connected to an area in Home Assistant.

When I send suggested_areas with different rooms, one of the DIM-02 devices looks to be corrupt. When sending this:

homeassistant/light/plejd/D670E6FE619D_0/config {"name":"Dimmer_2_1","unique_id":"D670E6FE619D_0","~":"homeassistant/light/plejd/D670E6FE619D_0","state_topic":"~/state","command_topic":"~/set","availability_topic":"~/availability","optimistic":false,"qos":1,"retain":true,"device":{"identifiers":"D670E6FE619D","manufacturer":"Plejd","model":"DIM-02","name":"Dimmer_2_1","suggested_area":"Kontor","sw_version":"2.4.3"},"brightness":true,"schema":"json"}
homeassistant/light/plejd/D670E6FE619D_1/config {"name":"Dimmer_2_2","unique_id":"D670E6FE619D_1","~":"homeassistant/light/plejd/D670E6FE619D_1","state_topic":"~/state","command_topic":"~/set","availability_topic":"~/availability","optimistic":false,"qos":1,"retain":true,"device":{"identifiers":"D670E6FE619D","manufacturer":"Plejd","model":"DIM-02","name":"Dimmer_2_2","suggested_area":"Toalett","sw_version":"2.4.3"},"brightness":false,"schema":"json"}

The implemetation in Home Assistan incorrectly assigns Dimmer_2_2 to the same one as Dimmer_2_1. I suspect this is because they share the same device.identifiers.

I will test this hypothesis.

@faanskit
Copy link
Contributor

faanskit commented May 7, 2021

...and a picture of that...
enheter_2

@faanskit
Copy link
Contributor

faanskit commented May 7, 2021

Yup, can confirm this as a required change. When instead using device.uniqueId as device.identifiers it works as expected.

homeassistant/light/plejd/D670E6FE619D_0/config {"name":"Dimmer_2_1","unique_id":"D670E6FE619D_0","~":"homeassistant/light/plejd/D670E6FE619D_0","state_topic":"~/state","command_topic":"~/set","availability_topic":"~/availability","optimistic":false,"qos":1,"retain":true,"device":{"identifiers":"D670E6FE619D_0","manufacturer":"Plejd","model":"DIM-02","name":"Dimmer_2_1","suggested_area":"Kontor","sw_version":"2.4.3"},"brightness":true,"schema":"json"}
homeassistant/light/plejd/D670E6FE619D_1/config {"name":"Dimmer_2_2","unique_id":"D670E6FE619D_1","~":"homeassistant/light/plejd/D670E6FE619D_1","state_topic":"~/state","command_topic":"~/set","availability_topic":"~/availability","optimistic":false,"qos":1,"retain":true,"device":{"identifiers":"D670E6FE619D_1","manufacturer":"Plejd","model":"DIM-02","name":"Dimmer_2_2","suggested_area":"Toalett","sw_version":"2.4.3"},"brightness":false,"schema":"json"}

My Ui now defaults to this:
lovlace

And Dimmer_2_2 appeared again:
enheter_3

Will you fix, or shall I add the change to the coming PR for suggested_area? This change will be a prerequisite for that PR.

@SweVictor
Copy link
Collaborator Author

Well. Device key in mqtt discovery does not support unique_id as far as I can see. And the device (physical) is actually the same, so I still think it's reasonable to group under the same device in HA (unless convinced otherwise).
https://www.home-assistant.io/integrations/light.mqtt/#device

Rooms I don't think is good enough of a reason. HA already supports adding entities to other rooms than the device they belong to:

image

@faanskit
Copy link
Contributor

faanskit commented May 7, 2021

Ok, this will finally be a matter of opinion then.

This effectively means than hassio-plejd will not support suggested_area as documented here.

That unlike Bond, Hue, Hunter Douglas PowerView, Lutron Caséta, Netatmo, Nexia, NuHeat, Roku, Sonos, Tado, Universal Devices ISY994. Ref. https://www.home-assistant.io/blog/2021/03/03/release-20213/#suggested-areas

Trust me that a few people I supported lately are confused when all devices with the same name does not show up and will be equally confused when N devices of the same name appears.

I do believe that suggested_area is a good addition. That is my matter of oppinion.

@faanskit
Copy link
Contributor

faanskit commented May 7, 2021

One more thing:

I consider that the standpoint you have is not fully compatible with the information model from Plejd. This is why you have multiple entries in devices[] in siteInfo for DIM-02 and REL-02. But hey, the information model is a bit wierd. Looks like it was created before REL-02/DIM-02 were even thought of.

It is not possible to name devices in Plejd. It is only possible to name outputs. A DIM-02 and a REL-02 will therefore have two names. Which is the right one to use in HA? Right now it is randomly picked. First come, first served.

@faanskit faanskit mentioned this pull request May 7, 2021
@faanskit
Copy link
Contributor

faanskit commented May 7, 2021

So, I revered back to Devloper branch to document the current as-is behavior. In my humble opinion, this needs a change.

In summary

Works as expected (+): 3
Improper behavior (-): 7

Enough evidence has been provided to consider a remedy. See details.

Details

  1. All DIM-02 outputs shall be available as lights
    Expected behavior: Both available as lights
    Seen behavior: Works as expected (+)
    Evidence:
    lights

  2. DIM-02 Appears ONLY as one Device, having the name of the "last" MQTT /config
    Expected behavior: Both outputs should be available
    Seen behavior: Only one of the outputs are available (-)
    Evidence:
    enheter

  3. When creating automations with the wizard, only the "last" MQTT DIM-02 device is selectable in the Automation Trigger dropdown for Devices
    Expected behavior: Both should be selectable
    Seen behavior: Only one of the outputs are available (-)
    Evidence:
    automation_trigger

  4. When creating automations with the wizard, only the "last" MQTT DIM-02 device is selectable in the conditions dropdown for Devices
    Expected behavior: Both should be selectable
    Seen behavior: Only one of the outputs are available (-)
    Evidence:
    villkor

  5. When creating automations with the wizard, only the "last" MQTT DIM-02 device is selectable in the Automation Actions dropdown for Devices
    Expected behavior: Both should be selectable
    Seen behavior: Only one of the outputs are available (-)
    Evidence:
    automation_actions

  6. When creating scenarios with the wizard, only the "last" MQTT DIM-02 device is selectable in Devices to be included dropdown for Devices
    Expected behavior: Both should be selectable
    Seen behavior: Only one of the outputs are available (-)
    Evidence:
    scen_1

  7. When creating scenarios with the wizard, both DIM-02 device is selectable in entity not belonging to a devices
    Expected behavior: Both should be selectable
    Seen behavior: Both are selectable (+)
    Evidence:
    scen_2

  8. When creating scripts with the wizard, only the "last" MQTT DIM-02 device is selectable in Devices to be included dropdown for Devices
    Expected behavior: Both should be selectable
    Seen behavior: Only one of the outputs are available (-)
    Evidence:
    script_1

  9. It is possible to manually set an area for a device
    Expected behavior: Both available for area selection
    Seen behavior: Both are selectable (+)
    manual_area

  10. Hassio Integration to support suggested_area
    Expected behavior: Implementation of MQTT suggested_area possible without side-effects
    Seen behavior: Both is not possible (-)
    Evidence:
    Refactor unique id handling throughout the addon #179 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
testing wanted More users testing is needed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants