sidoh / esp8266_milight_hub

Replacement for a Milight/LimitlessLED hub hosted on an ESP8266
MIT License
945 stars 219 forks source link

Lost settings after update from 1.10.1 to 1.10.2 #523

Closed ReinierGielen closed 4 years ago

ReinierGielen commented 5 years ago

After updating to 1.10.2 with web UI all settings are gone. And uploading the backuped settings give a succes message, but there are still no settings

Steps to reproduce

Started with version 1.10.1 In web UI did "check for updates" Clicked download firmware. Updated through webUI Settings are gone. Through web UI tried Restore settings without result.

Expected behavior

After an update setrtings should automatically be restored. After a restore the stored settings should be rerstored.

Firmware version

Stared with 1.10.1 now 1.10.2

ReinierGielen commented 5 years ago

I think the request payload is missing in the restore request

sidoh commented 5 years ago

Sounds an awful lot like you uploaded a binary compiled for a different platform. My guess is you're on a d1_mini and you uploaded d1_mini_pro or something like that.

sidoh commented 5 years ago

I think the request payload is missing in the restore request

It's not, but it might look that way if the ESP8266 is crashing, which might happen if SPIFFS gets resized without a format. This would happen if you upload the wrong binary.

ReinierGielen commented 5 years ago

Ik uploaded the nodemcuv2 binary. Ik have a nodemcuv3. This worked fine on previous updates

sidoh commented 5 years ago

The only change in 1.10.2 is trivial and wouldn't have caused this kind of behavior:

The only time I've seen the behavior you're describing is when you upload a binary compiled with a ldscript different than the one you had previously. ldscripts are responsible for partitioning the onboard flash into program and SPIFFS space.

You can try wiping the device with esptool.py erase_flash and re-uploading from scratch. This will probably fix it.

If you can find a reliable way to reproduce this I'm happy to look into it. But I flashed my milight hub install with 1.10.2 last night and haven't had any problems.

poudenes commented 5 years ago

update here went ok as well.. first backup my settings for "In case"

morrisb74 commented 5 years ago

Mine lost the mqtt username. But was easily fixed when I found out.

On Thu, 19 Sep 2019, 12:37 poudenes, notifications@github.com wrote:

update here went ok as well.. first backup my settings for "In case"

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/sidoh/esp8266_milight_hub/issues/523?email_source=notifications&email_token=AABBSBWPLQPE2KEXS2K452DQKNI5XA5CNFSM4IYC5JU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7DAQZQ#issuecomment-533071974, or mute the thread https://github.com/notifications/unsubscribe-auth/AABBSBRL34P7RJXYVB7XZCDQKNI5XANCNFSM4IYC5JUQ .

ReinierGielen commented 5 years ago

I re-flashed my nodemcu with physical connection. It started fine. Updates over the web UI also work fine.

The only thing is restoring the backuped settings from web UI is not working in any version.

Is there another way to restore backedup settings ?

Additional information. When I manually re-enter settings like id, password and mqtt settings and saver them they are stored. But when I then restore a backup ( hoping all my devices will be restored ) all settings are ERASED !!!

The content of the settings file: {"admin_username":"User","admin_password":"Password","ce_pin":4,"csn_pin":15,"reset_pin":0,"led_pin":-2,"radio_interface_type":"nRF24","packet_repeats":50,"http_repeat_factor":1,"auto_restart_period":0,"mqtt_server":"192.168.0.107:1883","mqtt_username":"mqtt","mqtt_password":"mqtt","mqtt_topic_pattern":"milight/:device_id/:device_type/:group_id","mqtt_update_topic_pattern":"milight/updates/:device_id/:device_type/:group_id","mqtt_state_topic_pattern":"milight/states/:device_id/:device_type/:group_id","mqtt_client_status_topic":"","simple_mqtt_client_status":true,"discovery_port":48899,"listen_repeats":3,"state_flush_interval":10000,"mqtt_state_rate_limit":500,"packet_repeat_throttle_sensitivity":0,"packet_repeat_throttle_threshold":200,"packet_repeat_minimum":3,"enable_automatic_mode_switching":false,"led_mode_wifi_config":"Fast toggle","led_mode_wifi_failed":"On","led_mode_operating":"Slow blip","led_mode_packet":"Flicker","led_mode_packet_count":3,"hostname":"milight-hub","rf24_power_level":"MAX","rf24_listen_channel":"LOW","wifi_static_ip":"","wifi_static_ip_gateway":"","wifi_static_ip_netmask":"","packet_repeats_per_loop":10,"home_assistant_discovery_prefix":"homeassistant","wifi_mode":"n","rf24_channels":["LOW","MID","HIGH"],"device_ids":[1,2,3,4,5],"gateway_configs":[],"group_state_fields":["state","brightness","mode","color_temp","bulb_mode","computed_color"],"group_id_aliases":{"Bureau":["rgb_cct",3,3],"Eetkamer":["rgb_cct",3,1],"Gang-Alles":["rgb_cct",5,0],"Gang1":["rgb_cct",5,1],"Gang2":["rgb_cct",5,2],"Gang3":["rgb_cct",5,3],"Gang4":["rgb_cct",5,4],"Keuken-Alles":["rgb_cct",4,0],"Keuken-Eiland":["rgb_cct",4,1],"Keuken-Gootsteen":["rgb_cct",4,3],"Keuken-Kasten":["rgb_cct",4,4],"Keuken-Robin":["rgb_cct",4,2],"Woonkamer-Alles":["rgb_cct",3,0],"Woonkamer-Links":["rgb_cct",2,0],"Woonkamer-Rechts":["rgb_cct",1,0],"Woonkamer1":["rgb_cct",1,1],"Woonkamer2":["rgb_cct",1,2],"Woonkamer3":["rgb_cct",1,3],"Woonkamer4":["rgb_cct",1,4],"Woonkamer5":["rgb_cct",2,1],"Woonkamer6":["rgb_cct",2,2],"Woonkamer7":["rgb_cct",2,3],"Woonkamer8":["rgb_cct",2,4],"Zitkamer":["rgb_cct",3,2]}}

sidoh commented 5 years ago

Hmm... this should definitely work. There's a test for it. The web UI is definitely calling the correct API endpoint.

I also just tried doing it through the UI myself, and it seems to be working fine:

2019-09-19 12 00 45

Are you able to check if there's anything interesting going on in serial logs when you try to restore settings?

ReinierGielen commented 5 years ago

Which logs are you referring to

sidoh commented 5 years ago

Serial logs. You can access them with pio device monitor while the ESP8266 is plugged into USB.

ReinierGielen commented 5 years ago

I managed to restore the system by manually inputting the data from the settings file. I don't have pio device monitor installed but I'll attempt to retreive the logs. I will not make another attempt to use the restore option as this erases the settings and upsets my wife.

Except for the restore your project works briljantly

sidoh commented 5 years ago

it shouldn't really matter, but what browser are you using?

sidoh commented 5 years ago

definitely understand not wanting to screw up your setup. anything you can do to help me replicate the problem is much appreciated. I've tested on two separate setups on both Firefox and Chrome and haven't been able to reproduce. :(

ReinierGielen commented 5 years ago

I am using chrome. I'll be carefull doing the next update. At least I now know how to restore the backup. Read the JSON and type it in manually. That is alricht if it does not happen to often. ;-)

sidoh commented 5 years ago

I'm reasonably sure there's something kind of screwy about your ESP8266, although I'm not sure what. Have you used it for anything else before?

Would really like to reproduce the issue -- should never happen.

ReinierGielen commented 5 years ago

No nothing before. I have purchased it for this goal. Can it be that is a nodemcu V3 and the build is for a V2 ? Or maybe the Chinese send me a cheap clone .

sidoh commented 5 years ago

v2 and v3 are both fine. it's possible, but the only way in which i think it'd matter is if you have less than 4MB of flash. You can inspect this with esptool.py flash_id:

$ esptool.py flash_id
esptool.py v2.7
Found 2 serial ports
Serial port /dev/cu.usbserial-1443230
Connecting....
Detecting chip type... ESP8266
Chip is ESP8266EX
Features: WiFi
Crystal is 26MHz
MAC: 2c:3a:e8:2e:fd:b3
Uploading stub...
Running stub...
Stub running...
Manufacturer: c8
Device: 4016
Detected flash size: 4MB
Hard resetting via RTS pin...

anyway --

If you're willing to try one more potentially destructive thing, here's a suggestion that might narrow it down:

  1. You can back up and restore your entire ESP8266 image using esptool.py. Here's a tutorial. Hopefully this would avoid you losing your settings again.
  2. Erase the entire image with esptool.py erase_flash
  3. Re-setup the wifi
  4. Try restoring settings (also watch serial logs with pio device monitor to see if anything interesting shows up

If this works like I suspect it will, you'll have restored settings and no manual re-entry required. If it doesn't, you can restore your backed up flash image using the process mentioned in (1).

ReinierGielen commented 5 years ago

Do you have a windows 10 version of the eptool.py ?

sidoh commented 5 years ago

It's just a python library, it'll work on windows. (just install with pip)

MunkeyBalls commented 5 years ago

Not having exactly the same issue (restore works), but since 10.0.1 I'm having a problem that might be related so I'll chime in anyway.

Since 10.0.1 I notice that I am losing settings after being up and running a for a while (few hours/day). The first time I had to run around the house, re-pair all the bulbs, but luckily was smart enough to take a backup. In probably less than a day, settings were gone again. Restoring the backup luckily works. I've tried restoring a few times, but always ended up losing my settings after a while.

I've tried redownloading/reflashing the image a few times. Also used the esptool to erase_flash thinking something might have gotten left over, but nothing worked. In the end flashed back to 10.0.0-dev4 and all is working again. It's been up and running for around a week.

Loving the new MQTT Hass discovery and aliases btw, great addition! I will try and flash 10.0.2 to see if I am still having the same problem.

On a totally unrelated note.. Would it be possible to add something to prevent the hub from (re)-pairing a bulb when someone flips the power switch at the same time another light gets a message to turn on/off ? I've noticed after a while some bulbs seem to merge with others, so 1 lightId all of a sudden controls multiple lights. Usually happens with the bulbs which are used with a wall switch, that get tied to bulbs which are triggered by PIR switches.

sidoh commented 5 years ago

That's bizarre. Is there any part of your setup that is automatically updating settings? Is it possible for you to capture some serial logs while running a problematic version? Might help reveal what's going on.

On a totally unrelated note.. Would it be possible to add something to prevent the hub from (re)-pairing a bulb when someone flips the power switch at the same time another light gets a message to turn on/off ? I've noticed after a while some bulbs seem to merge with others, so 1 lightId all of a sudden controls multiple lights. Usually happens with the bulbs which are used with a wall switch, that get tied to bulbs which are triggered by PIR switches.

It's silly, but bulb pair packets are the same as ON commands. So as long as something is sending ON commands at the same time that you're physically flipping power on, there's no way to prevent the bulbs from interpreting that as a pair command.

MunkeyBalls commented 5 years ago

That's bizarre. Is there any part of your setup that is automatically updating settings? Is it possible for you to capture some serial logs while running a problematic version? Might help reveal what's going on.

So after about day on 10.0.2 the settings disappeared again.

Can I build my own version with the debug flags enabled, or do I need to hook it up to nodeMCU to the PC and monitor it that way (which would be a pain since it only happens after about a day).

In the meantime I'll have a look at "esptool.py flash_id" to see if there's something funny about this nodeMCU. Weird thing is, the old version works fine, so it must be due to something added between 10.0.0-dev4 and 10.0.1

About the settings, not sure what could be updating my settings? I'm using the homeassistant discovery and topic / state patterns. I also have aliasses set up for my devices. This is the same setup (and settings.json I restored) I've been using on the older build which works fine.

image

On a totally unrelated note.. Would it be possible to add something to prevent the hub from (re)-pairing a bulb when someone flips the power switch at the same time another light gets a message to turn on/off ? I've noticed after a while some bulbs seem to merge with others, so 1 lightId all of a sudden controls multiple lights. Usually happens with the bulbs which are used with a wall switch, that get tied to bulbs which are triggered by PIR switches.

It's silly, but bulb pair packets are the same as ON commands. So as long as something is sending ON commands at the same time that you're physically flipping power on, there's no way to prevent the bulbs from interpreting that as a pair command.

I was already afraid it'd be something like this. Gives me a bad excuse to go all out on the PIR sensors where I don't have them yet and add electroshock to the physical switches to discourage usage :)

MunkeyBalls commented 5 years ago

Here's esptool.py flash_id output, nothing odd there I think

Found 1 serial ports
Serial port COM4
Connecting....
Detecting chip type... ESP8266
Chip is ESP8266EX
Features: WiFi
Crystal is 26MHz
MAC: 84:f3:eb:1a:c7:31
Uploading stub...
Running stub...
Stub running...
Manufacturer: 68
Device: 4016
Detected flash size: 4MB
Hard resetting via RTS pin...
sidoh commented 5 years ago

Thanks for all of that detail. Great -- serial logs with debug flags would be super useful. Appreciate the effort!

ReinierGielen commented 5 years ago

It happend tot me too. For the first time suddenly all settings are gone.

ReinierGielen commented 5 years ago

Strangest thing, not the same settings file is loaded in exactly the same way all messages look the same. But now it is actually working

sidoh commented 5 years ago

There's definitely something screwy going on with SPIFFS. I'm starting to suspect something in the compile toolchain changed the ldscript without telling me. Could've been a platformio upgrade or something.

Doesn't really explain the behavior where it works for a while and then doesn't, though...

MunkeyBalls commented 5 years ago

The version I built from source is still running after 2 days. Could it maybe be something with the binaries?

sidoh commented 5 years ago

Yeah, potentially. Can you paste pio --version?

The output of pio run -e nodemcuv2 --verbose would be helpful as well.

Thanks for your help.

MunkeyBalls commented 5 years ago

Never mind, settings were gone again this morning. I'll have to figure out first how to monitor serial from the pi though before I can get you any logs.

sidoh commented 5 years ago

periodic output of /about might be interesting as well.

MunkeyBalls commented 5 years ago

This is after restoring the backup, I'm guessing the free_heap is what you want me to keep an eye on?

{"firmware":"milight-hub","version":"1.10.3","ip_address":"192.168.2.51","reset_reason":"Exception","variant":"nodemcuv2","free_heap":16736,"arduino_version":"2_4_2","queue_stats":{"length":0,"dropped_packets":0}}
MunkeyBalls commented 5 years ago

Currently rolling back to older versions to try and figure out on which release exactly the issue got introduced.

Running now on 1.10.0-dev.7

sidoh commented 5 years ago

yeah, exactly. I think my idle free heap is ~17 KB, so yours looks fine there. Possible you're using some feature that I don't normally use that leaks memory.

output of /settings would be helpful too (make sure to sensor passwords)

this is meaningful as well:

"reset_reason":"Exception"

sidoh commented 5 years ago

Oops, submitted that earlier than I meant to. {"reset_reason":"Exception"} means something is crashing, so Serial output would likely be interesting. Can't think of a reason that would clear settings, though.

MunkeyBalls commented 5 years ago

Hooked up the nodemcu with latest version to a pi and its logging to file with all the debug flags enabled. If it fails again hopefully I can catch the log.

sidoh commented 5 years ago

Excellent. Thanks for your help.

MunkeyBalls commented 5 years ago

Here's my settings btw

{"admin_username":"","admin_password":"","ce_pin":4,"csn_pin":15,"reset_pin":0,"led_pin":-2,"radio_interface_type":"nRF24","packet_repeats":50,"http_repeat_factor":1,"auto_restart_period":0,"mqtt_server":"192.168.2.52","mqtt_username":"","mqtt_password":"","mqtt_topic_pattern":"milight/commands/:device_id/:device_type/:group_id","mqtt_update_topic_pattern":"","mqtt_state_topic_pattern":"milight/state/:device_id/:device_type/:group_id","mqtt_client_status_topic":"milight/client_status","simple_mqtt_client_status":true,"discovery_port":48899,"listen_repeats":0,"state_flush_interval":10000,"mqtt_state_rate_limit":900,"packet_repeat_throttle_sensitivity":0,"packet_repeat_throttle_threshold":200,"packet_repeat_minimum":3,"enable_automatic_mode_switching":false,"led_mode_wifi_config":"Off","led_mode_wifi_failed":"Off","led_mode_operating":"Off","led_mode_packet":"Off","led_mode_packet_count":3,"hostname":"milight-hub","rf24_power_level":"MAX","rf24_listen_channel":"LOW","wifi_static_ip":"","wifi_static_ip_gateway":"","wifi_static_ip_netmask":"","packet_repeats_per_loop":10,"home_assistant_discovery_prefix":"homeassistant","wifi_mode":"n","default_transition_period":500,"rf24_channels":["LOW","MID","HIGH"],"device_ids":[1,2,3,4,5,6,7,8],"gateway_configs":[],"group_state_fields":["state","brightness","mode","color_temp","bulb_mode","computed_color","effect"],"group_id_aliases":{"bathroom_milight_fut105":["rgb_cct",3,1],"bedroom_milight_fut105":["rgb_cct",4,1],"deathstar_milight_fut016":["rgbw",5,1],"dinner_table_milight":["rgb_cct",2,1],"kitchen2":["cct",7,1],"kitchen3":["cct",8,1],"kitchen_milight_mr16_1":["cct",6,1],"peoplecave_milight_fut105":["rgb_cct",1,1]}}

Just checked the /about again, free heap is a lot lower and there's a new exception type.

{"firmware":"milight-hub","version":"unknown","ip_address":"192.168.2.51","reset_reason":"Software Watchdog","variant":"nodemcuv2","free_heap":7968,"arduino_version":"2_4_2","queue_stats":{"length":0,"dropped_packets":0}}
sidoh commented 5 years ago

definitely looks like a memory leak of some kind. Did you happen to catch serial logs? WDT reset is watchdog timer reset. It means some blocking code runs for too long and the system gets hard reset. With this software, it's usually the nRF library busy waiting for an SPI response, usually due to spotty wiring connections. But it's possible it's memory related.

If you're able to find some set of actions that trigger the memory to go down consistently, that would be most helpful.

I was pretty lazy with the queued packet code. It creates a lot of objects, but they're shared_ptrs, so should be getting cleaned up.

MunkeyBalls commented 5 years ago

Seems like my log file is being overwritten ever 30 or so minutes, but I think I managed to catch a crash. Settings are still there though.

Log ``` 09/28/2019 23:17:22 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:17:22 MqttClient - device 0001, group 1 09/28/2019 23:17:53 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:17:53 MqttClient - device 0001, group 1 09/28/2019 23:18:13 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:18:13 MqttClient - device 0001, group 1 09/28/2019 23:18:13 Enqueuing packet 09/28/2019 23:18:13 Switching to next packet, 1 packets in queue 09/28/2019 23:18:13 Sending packet (10 repeats): 09/28/2019 23:18:13 00 DB E1 24 66 CA A6 66 A4 09/28/2019 23:18:13 Elapsed: 47 09/28/2019 23:18:13 Sending packet (10 repeats): 09/28/2019 23:18:13 00 DB E1 24 66 CA A6 66 A4 09/28/2019 23:18:13 Elapsed: 45 09/28/2019 23:18:13 Sending packet (10 repeats): 09/28/2019 23:18:13 00 DB E1 24 66 CA A6 66 A4 09/28/2019 23:18:13 Elapsed: 46 09/28/2019 23:18:13 Sending packet (10 repeats): 09/28/2019 23:18:13 00 DB E1 24 66 CA A6 66 A4 09/28/2019 23:18:13 Elapsed: 49 09/28/2019 23:18:13 Sending packet (10 repeats): 09/28/2019 23:18:13 00 DB E1 24 66 CA A6 66 A4 09/28/2019 23:18:13 Elapsed: 46 09/28/2019 23:18:13 Patching existing state with: {"state":"OFF"} 09/28/2019 23:18:13 GroupState::patch: State changed: {"state":"OFF"} 09/28/2019 23:18:13 Raw data: 40000000 70000000 09/28/2019 23:18:13 Patching existing state with: : {"state":"OFF"} 09/28/2019 23:18:13 Raw data: 40000000 70000000 09/28/2019 23:18:13 09/28/2019 23:18:13 Patching existing state with: : {"state":"OFF"} 09/28/2019 23:18:13 Raw data: 40000000 70000000 09/28/2019 23:18:13 09/28/2019 23:18:14 Clearing fields. Current state: {} 09/28/2019 23:18:14 Raw data: 00000000 00000000 09/28/2019 23:18:14 Other state: {"state":"OFF"} 09/28/2019 23:18:14 Raw data: 40000000 70000000 09/28/2019 23:18:14 Result: {} 09/28/2019 23:18:14 Raw data: 00000000 00000000 09/28/2019 23:18:14 MqttClient - publishing update to milight/state/0x1/rgb_cct/1 09/28/2019 23:21:32 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:21:32 MqttClient - device 0001, group 1 09/28/2019 23:21:32 Enqueuing packet 09/28/2019 23:21:32 Flushing dirty state for 0x0001 / 1 / rgb_cct 09/28/2019 23:21:32 Switching to next packet, 1 packets in queue 09/28/2019 23:21:32 Sending packet (10 repeats): 09/28/2019 23:21:32 00 DB E1 24 66 D1 A7 66 A8 09/28/2019 23:21:32 Elapsed: 49 09/28/2019 23:21:32 Sending packet (10 repeats): 09/28/2019 23:21:32 00 DB E1 24 66 D1 A7 66 A8 09/28/2019 23:21:32 Elapsed: 47 09/28/2019 23:21:32 Sending packet (10 repeats): 09/28/2019 23:21:32 00 DB E1 24 66 D1 A7 66 A8 09/28/2019 23:21:33 Elapsed: 46 09/28/2019 23:21:33 Sending packet (10 repeats): 09/28/2019 23:21:33 00 DB E1 24 66 D1 A7 66 A8 09/28/2019 23:21:33 Elapsed: 46 09/28/2019 23:21:33 Sending packet (10 repeats): 09/28/2019 23:21:33 00 DB E1 24 66 D1 A7 66 A8 09/28/2019 23:21:33 Elapsed: 46 09/28/2019 23:21:33 Patching existing state with: {"state":"ON"} 09/28/2019 23:21:33 GroupState::patch: State changed: {"state":"ON"} 09/28/2019 23:21:33 Raw data: 40000001 70000000 09/28/2019 23:21:33 Patching existing state with: : {"state":"ON"} 09/28/2019 23:21:33 Raw data: 40000001 70000000 09/28/2019 23:21:33 09/28/2019 23:21:33 Patching existing state with: : {"state":"ON"} 09/28/2019 23:21:33 Raw data: 40000001 70000000 09/28/2019 23:21:33 09/28/2019 23:21:33 Clearing fields. Current state: {} 09/28/2019 23:21:33 Raw data: 00000000 00000000 09/28/2019 23:21:33 Other state: {"state":"ON"} 09/28/2019 23:21:33 Raw data: 40000001 70000000 09/28/2019 23:21:33 Result: {} 09/28/2019 23:21:33 Raw data: 00000000 00000000 09/28/2019 23:21:33 MqttClient - publishing update to milight/state/0x1/rgb_cct/1 09/28/2019 23:22:01 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:22:01 MqttClient - device 0001, group 1 09/28/2019 23:22:01 Flushing dirty state for 0x0001 / 1 / rgb_cct 09/28/2019 23:22:37 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:22:37 MqttClient - device 0001, group 1 09/28/2019 23:23:03 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:23:03 MqttClient - device 0001, group 1 09/28/2019 23:23:34 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:23:34 MqttClient - device 0001, group 1 09/28/2019 23:24:06 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:24:06 MqttClient - device 0001, group 1 09/28/2019 23:24:36 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:24:36 MqttClient - device 0001, group 1 09/28/2019 23:25:07 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:25:07 MqttClient - device 0001, group 1 09/28/2019 23:25:38 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:25:38 MqttClient - device 0001, group 1 09/28/2019 23:26:09 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:26:09 MqttClient - device 0001, group 1 09/28/2019 23:26:40 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:26:40 MqttClient - device 0001, group 1 09/28/2019 23:27:11 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:27:11 MqttClient - device 0001, group 1 09/28/2019 23:27:42 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:27:42 MqttClient - device 0001, group 1 09/28/2019 23:28:13 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:28:13 MqttClient - device 0001, group 1 09/28/2019 23:28:45 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:28:45 MqttClient - device 0001, group 1 09/28/2019 23:29:15 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:29:15 MqttClient - device 0001, group 1 09/28/2019 23:29:47 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:29:47 MqttClient - device 0001, group 1 09/28/2019 23:30:19 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:30:19 MqttClient - device 0001, group 1 09/28/2019 23:30:49 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:30:49 MqttClient - device 0001, group 1 09/28/2019 23:31:19 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:31:19 MqttClient - device 0001, group 1 09/28/2019 23:31:50 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:31:50 MqttClient - device 0001, group 1 09/28/2019 23:32:21 MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 09/28/2019 23:32:21 MqttClient - device 0001, group 1 09/28/2019 23:32:43 MqttClient - connecting 09/28/2019 23:32:44 MqttClient - subscribing to topic: milight/commands/+/+/+ 09/28/2019 23:32:44 MqttClient - Successfully connected to MQTT server 09/28/2019 23:32:44 HomeAssistantDiscoveryClient: Sending discoverable devices... 09/28/2019 23:32:44 09/28/2019 23:32:44 Exception (29): 09/28/2019 23:32:44 epc1=0x4022c4e3 epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000000 depc=0x00000000 09/28/2019 23:32:44 09/28/2019 23:32:44 ctx: cont 09/28/2019 23:32:44 sp: 3ffffbd0 end: 3fffffd0 offset: 01a0 09/28/2019 23:32:44 09/28/2019 23:32:44 >>>stack>>> 09/28/2019 23:32:44 3ffffd70: 3ffe9141 00000003 00000000 40241aa2 09/28/2019 23:32:44 3ffffd80: 3ffffe50 3ffffe40 0000000c 3fff5308 09/28/2019 23:32:44 3ffffd90: 3fff4a44 3fff5308 3ffffe9c 40234e4c 09/28/2019 23:32:44 3ffffda0: 3ffffe51 4bc6a7f0 7ffffffe ffff0208 09/28/2019 23:32:44 3ffffdb0: 3ffffe50 7fffffff 3ffffefc 3fff1f60 09/28/2019 23:32:44 3ffffdc0: 3fff1f60 00001325 00001325 00000047 09/28/2019 23:32:44 3ffffdd0: c026e397 3fffbe3c 00000041 401004e4 09/28/2019 23:32:44 3ffffde0: 00000010 00000010 00000041 00000047 09/28/2019 23:32:45 3ffffdf0: 4026e398 3fffbe3c 00000000 4022c612 09/28/2019 23:32:45 3ffffe00: 3ffffeb0 3ffffe80 00000008 7fffffff 09/28/2019 23:32:45 3ffffe10: 00000010 3ffffe9c 00000047 00000046 09/28/2019 23:32:45 3ffffe20: 3fff1d5c 00000008 3fffbe3c 4022ac14 09/28/2019 23:32:45 3ffffe30: 656d6f48 69737341 6e617473 73694474 09/28/2019 23:32:45 3ffffe40: 65766f63 6c437972 746e6569 6461203a 09/28/2019 23:32:45 3ffffe50: 676e6964 73696420 65766f63 6c626172 09/28/2019 23:32:45 3ffffe60: 65642065 65636976 696b203a 00686374 09/28/2019 23:32:45 3ffffe70: 3ffffeb0 3ffffe80 00000008 3fff5308 09/28/2019 23:32:45 3ffffe80: 3fffff80 00000000 3fff3684 0000ff00 09/28/2019 23:32:45 3ffffe90: 00ff0000 ff000000 3ffffef0 4022b691 09/28/2019 23:32:45 3ffffea0: 4026e398 00000047 3ffffe80 3ffffeb0 09/28/2019 23:32:45 3ffffeb0: 3ffe91fc 3ffffed4 3fffff08 3fff5308 09/28/2019 23:32:45 3ffffec0: 3fffff80 3ffffef0 3fff1d5c 40228eb3 09/28/2019 23:32:45 3ffffed0: 00827554 00000000 00000000 00000000 09/28/2019 23:32:45 3ffffee0: 00000000 00000000 00000000 4020b420 09/28/2019 23:32:45 3ffffef0: 3fffba7c 0000000f 00000002 3fffba34 09/28/2019 23:32:45 3fffff00: 0000003f 00000038 3fffff30 00000002 09/28/2019 23:32:45 3fffff10: 00000000 3ffffed4 00000000 3ffffed4 09/28/2019 23:32:46 3fffff20: 00000000 3ffffed4 00000000 3ffffed4 09/28/2019 23:32:46 3fffff30: 3ffffef0 00000000 00000000 4022a7f7 09/28/2019 23:32:46 3fffff40: 3fff3684 001ac731 3fff14ac 00000000 09/28/2019 23:32:46 3fffff50: 3fffff80 3fff15cc 3fff1d5c 3fff1e1c 09/28/2019 23:32:46 3fffff60: 3fffff80 3fff15cc 3fff52ec 40228f6e 09/28/2019 23:32:46 3fffff70: 3fff4a5c 3fff4b44 3fff14ac 40208032 09/28/2019 23:32:46 3fffff80: 3fff14ac 3fff4a44 3fff4a5c 402328a0 09/28/2019 23:32:46 3fffff90: 3fff4a5c 3fff4b44 3fff4a44 4022a1c4 09/28/2019 23:32:46 3fffffa0: 3fffdad0 00000000 3fff1e16 40209670 09/28/2019 23:32:46 3fffffb0: 3fffdad0 00000000 3fff1e16 4022c330 09/28/2019 23:32:46 3fffffc0: feefeffe feefeffe 3ffe872c 40100721 09/28/2019 23:32:46 <<>>stack>>> 09/28/2019 23:33:09 3ffffda0: 3ffffe51 00000011 7ffffffe ffff0208 09/28/2019 23:33:09 3ffffdb0: 3ffffe50 7fffffff 3ffffefc 3fff1f60 09/28/2019 23:33:09 3ffffdc0: 3fff1f60 000007da 000007da 4010020c 09/28/2019 23:33:09 3ffffdd0: 4026e380 0000024c 3fff63e4 401006dc 09/28/2019 23:33:09 3ffffde0: 3fff7f04 000001e0 00000018 4022c1d4 09/28/2019 23:33:09 3ffffdf0: 4026e380 3fff810c 3fff63e4 4022c62a 09/28/2019 23:33:09 3ffffe00: 3ffffeb0 3ffffe80 00000008 0000024c 09/28/2019 23:33:09 3ffffe10: 3fff1d5c 00000008 3fff810c 4022a80c 09/28/2019 23:33:09 3ffffe20: 3fff1d5c 00000008 3fff810c 4022ac2c 09/28/2019 23:33:09 3ffffe30: 6f742020 3a636970 6d6f6820 73736165 09/28/2019 23:33:09 3ffffe40: 61747369 6c2f746e 74686769 6c696d2f 09/28/2019 23:33:09 3ffffe50: 74686769 6275685f 3537315f 39323934 09/28/2019 23:33:09 3ffffe60: 6267722f 7463635f 3178305f 002f315f 09/28/2019 23:33:10 3ffffe70: 3ffffeb0 3ffffe80 00000008 3fff53d0 09/28/2019 23:33:10 3ffffe80: 3fffff80 00000000 3fff639c 3fff7f04 09/28/2019 23:33:10 3ffffe90: 3fff77d8 00000057 3fffff08 40215eba 09/28/2019 23:33:10 3ffffea0: 4026e380 0000024d 3ffffe80 3ffffeb0 09/28/2019 23:33:10 3ffffeb0: 3fffff80 3fff7d0c 3fffff08 3fff53d0 09/28/2019 23:33:10 3ffffec0: 3fffff80 3ffffef0 3fff1d5c 40228ebf 09/28/2019 23:33:10 3ffffed0: ffffffff 3fff7afc 3fff7c33 3fff7d0c 09/28/2019 23:33:10 3ffffee0: 3fff7efc 3fff7eec 3fff7d0c 00000020 09/28/2019 23:33:10 3ffffef0: 3fff7f04 000001ff 000001fd 3fff639c 09/28/2019 23:33:10 3fffff00: 0000003f 0000003c 3fffff30 000001e4 09/28/2019 23:33:10 3fffff10: 3fff7ddc 3ffffed4 3fff7e7c 3ffffed4 09/28/2019 23:33:10 3fffff20: 3fff7ddc 3ffffed4 3fff7e7c 3ffffed4 09/28/2019 23:33:10 3fffff30: 3ffffef0 00000000 4bc6a7f0 4022a7f7 09/28/2019 23:33:10 3fffff40: 3fff538c 001ac731 3fff14ac 00000000 09/28/2019 23:33:10 3fffff50: 3fffff80 3fff15cc 3fff1d5c 3fff1e1c 09/28/2019 23:33:10 3fffff60: 3fffff80 3fff15cc 3fff53b4 40228f6e 09/28/2019 23:33:10 3fffff70: 3fff460c 3fff46f4 3fff14ac 40208032 09/28/2019 23:33:10 3fffff80: 3fff14ac 3fff45f4 3fff460c 402328a0 09/28/2019 23:33:10 3fffff90: 3fff460c 3fff46f4 3fff45f4 4022a1c4 09/28/2019 23:33:11 3fffffa0: 3fffdad0 00000000 3fff1e16 40209670 09/28/2019 23:33:11 3fffffb0: 3fffdad0 00000000 3fff1e16 4022c330 09/28/2019 23:33:11 3fffffc0: feefeffe feefeffe 3ffe872c 40100721 09/28/2019 23:33:11 <<
sidoh commented 5 years ago

thank you!

Looks like the WDT reset is just because the Serial debug logs for the discovery client take too long to print. Just changed the baudrate from the default (9600) to 115200 and that went away. Could you do that as well? Look for Serial.begin(9600) in main.cpp. You'll need to start serial logs with pio device monitor -b 115200 as well.

Was initially suspecting that the leak was in the discovery client, but doesn't seem to be the case. Set this up:

Heap trend with successive MQTT server reboots

``` $ for i in $(seq 1 100); do docker start mosquitto>/dev/null; curl -s 10.133.8.194/about | jq '.free_heap'; sleep 10; docker stop mosquitto>/dev/null; done 16248 16168 16432 16592 16424 15504 16328 16328 16248 15920 16328 16424 16424 16424 16096 16248 16248 15328 16328 16328 16480 16096 15176 16248 15936 16264 16328 16424 16424 16480 15768 15408 16328 16328 16384 16328 14736 16096 16248 16304 16248 15408 16328 16000 16368 16328 16264 16320 16248 15408 16328 16328 16384 16328 15408 16328 16248 16248 16344 16328 16096 15768 16328 15504 16424 16424 15824 16328 14736 16328 16264 16304 16328 15504 16368 16368 16424 16328 15176 16248 16120 16488 16328 15504 16424 16096 16032 16328 15352 16272 16272 ```

There's no downwards trend. There are a few times when it dips into the 14Ks, but it pops back up. So it's at least not this alone.

You might try tossing tee on your command to log to a file if your scrollback buffer is eating logs. I'm using:

pio device monitor -b 115200 | tee -a pio_log.txt

something interesting from your logs -- it looks like you've got some kind of scheduled command being sent roughly every minute to 0x1,rgb_cct,1. is this expected?

sidoh commented 5 years ago

Added a heap monitor to HomeAssistant:

- name: "ESP8266 Milight Hub - Free Heap"
  platform: rest
  resource: http://10.133.8.158/about
  value_template: '{{ value_json.free_heap }}'
  unit_of_measurement: 'Bytes'
MunkeyBalls commented 5 years ago

I was using a python script to read the serial output, after I changed to baud 115200 I started getting the folowing error:

SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)

I noticed the same error when trying to read the device with

pio device monitor -b 115200 | tee -a pio_log.txt

Worked my way around it with a try / catch and it's working, but the output is unreadable at times.

09/29/2019 23:22:35 : {0
09/29/2019 23:22:36 w d09/29/2019 23:23:06 MqttClient - Got message on topic: milight/commands/0x3/rgb_cct/1
09/29/2019 23:23:06 MqttClient - device 0003, group 1
09/29/2019 23:23:06 Enqueuing packet
09/29/2019 23:23:06 Enqueuing packet
09/29/2019 23:23:06 Switching to next packet, 2 (10 repeats): 
09/29/2019 23:23:06 00 DB E1 22 63 F6repeats): 
09/29/2019 23:23:06 00 DB66 BF 
09/29/2019 23:23:06 repeats): 
09/29/2019 23:23:06 
09/29/2019 23:23:06 re66Elre66Elre66Elre66Elre66Eltaou{}Pa{}
09/29/2019 23:23:06 : {0
09/29/2019 23:23:07 w 09/29/2019 23:23:37 c: 1
09/29/2019 23:23:37 moa:is":80ti"c00. 00"bawt:00e 
09/29/2019 23:23:37 Pa{}
09/29/2019 23:23:37 : {0
09/29/2019 23:24:08 1
09/29/2019 23:24:08 00e 
09/29/2019 23:24:08 66Elre66Elre66Elre66Elre66Eltate wiou{}Pa{}
09/29/2019 23:24:08 0
09/29/2019 23:24:09 at0000w 09/29/2019 23:24:39 MqttCc:1
09/29/2019 23:24:39 66Elrep66Elare6Elapsed: 50
09/29/2019 23:24:39 Sending packet (10 repeats): 
09/29/2019 23:24:39 is":80ti"c00. 000"bawt:00e 
09/29/2019 23:24:39 Elre66Elre66Elare66Eltaou{}Pat{}
09/29/2019 23:24:39 : {0
09/29/2019 23:24:40 at0000w d09/29/2019 23:25:10 1
09/29/2019 23:25:10 awt:00e 
09/29/2019 23:25:10 Elataou{}Pa{}
09/29/2019 23:25:10 0
09/29/2019 23:25:11 w 

Probably some settings in my script, but I didn't find a magic combination yet

ser = serial.Serial(
 port='/dev/ttyUSB0',
 baudrate = 115200,
 parity=serial.PARITY_NONE,
 stopbits=serial.STOPBITS_ONE,
 bytesize=serial.EIGHTBITS,
 timeout=1
)
counter=0

The heap monitor is great idea, I'll keep an eye on the graph and hope I can read the log around those times.

sidoh commented 5 years ago

You might try passing -p /dev/ttyUSB0. I'm guessing that PlatformIO is using the same Serial library under the hood considering it's Python, so it should, in theory, work :)

Here's the full command I'm using:

$ pio device monitor -b 115200 | ts '[%Y-%m-%d %H:%M:%S]' | tee -a /tmp/pio_logs.txt
--- Miniterm on /dev/cu.usbserial-1443230  115200,8,N,1 ---
--- Quit: Ctrl+C | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
[2019-09-29 16:45:54] MqttClient - connecting
[2019-09-29 16:45:54] ERROR: Failed to connect to MQTT server
[2019-09-29 16:45:59] MqttClient - connecting
[2019-09-29 16:45:59] ERROR: Failed to connect to MQTT server

ts is from moreutils, in case it's helpful.

thanks again for your help!

MunkeyBalls commented 5 years ago

This is what I mean, notice the missing characters and finally just crashing altogether.

dietpi@DietPi:~$ pio device monitor -b 115200 | ts '[%Y-%m-%d %H:%M:%S]' | tee -a /tmp/pio_logs.txt
--- Miniterm on /dev/ttyUSB0  115200,8,N,1 ---
--- Quit: Ctrl+C | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
[2019-09-30 08:07:39] qc1
[2019-09-30 08:07:39] MqttClient - device 0003, gup
[2019-09-30 08:07:39] Fhing dirty state for 0x0003  ExeDEreats):
[2019-09-30 08:07:39] 00 DB E1 22 63 E1 5D 6lrts):

--- exit ---
Exception in thread rx:
Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner
    self.run()
  File "/usr/lib/python2.7/threading.py", line 754, in run
    self.__target(*self.__args, **self.__kwargs)
  File "/usr/local/lib/python2.7/dist-packages/serial/tools/miniterm.py", line 445, in reader
    data = self.serial.read(self.serial.in_waiting or 1)
  File "/usr/local/lib/python2.7/dist-packages/serial/serialposix.py", line 501, in read
    'device reports readiness to read but returned no data '
SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)

Update: I'm pretty sure I tried this before, but I killed the other logging process (as the error informs me to) and now it seems to be working. Still having the occasional unreadable line, but it looks a lot better. I'll keep you posted.

MunkeyBalls commented 5 years ago

something interesting from your logs -- it looks like you've got some kind of scheduled command being sent roughly every minute to 0x1,rgb_cct,1. is this expected?

That would probably be flux https://www.home-assistant.io/components/flux/

sidoh commented 5 years ago

Ah, got it. Yeah, Serial only works with one connection.

Ok, cool. Thanks again.

MunkeyBalls commented 5 years ago

It crashed again shortly after, seems like the connection isn't really stable. Trying to make something in bash with your command to keep retrying.

Think I have something working by just putting it in a while loop, still strange it's disconnecting now. Maybe the power from the raspberry pi isn't sufficient?

MunkeyBalls commented 5 years ago

Here's how the heap size graph is looking currently. Stable when nothing is happening, but a a huge dip when I started playing around with the lights / serial log.

image

Log ``` [2019-09-30 08:05:04] MClient - Got message on topi:light/commands/0x3/rgb_cct/MqttClient - device 0003, grou Fshing dirty state for 0x0003 Equeuing packet [2019-09-30 08:05:04] Switching to ne packet, 2 packets in queue [2019-09-30 08:05:04] Seding packet (10 repeats): [2019-09-30 08:05:04] 00 B 22 63 E1 70 66 00 [2019-09-30 08:05:04] Eapsed: 46 [2019-09-30 08:05:04] Sending packet (10 reats): [2019-09-30 08:05:04] 00 DB E1 22 63 E1 70 6 00 [2019-09-30 08:05:04] Eapsed: 45 [2019-09-30 08:05:04] Sending packet (10 reats): [2019-09-30 08:05:04] 00 DB E1 22 63 E1 70 600 [2019-09-30 08:05:04] led: 53 [2019-09-30 08:05:04] Sending packet (10 ets): [2019-09-30 08:05:04] 00 DB E1 22 63 E1 70 600 [2019-09-30 08:05:04] ad: 46 [2019-09-30 08:05:04] Sending packet (10 rpeats): [2019-09-30 08:05:04] 00 DB E1 22 63 E1 70 600 [2019-09-30 08:05:04] Epsed: 47 [2019-09-30 08:05:04] Patching existing ste with: {"hue":25} [2019-09-30 08:05:04] GroupStatepatch: State changed: {"bulb_me":"color","hue":25} [2019-09-30 08:05:04] Raw data 88001200 30000800 [2019-09-30 08:05:04] Patching exiing state with: : {"bulb_mode""color","hue":25} [2019-09-30 08:05:04] Raw data: 881200 30000800 [2019-09-30 08:05:04] [2019-09-30 08:05:04] Patching existg state with: : {"bulb_mode":"lor","hue":25} [2019-09-30 08:05:04] Raw data: 8800200 30000800 [2019-09-30 08:05:04] [2019-09-30 08:05:04] Clearing fields rrent state: {} [2019-09-30 08:05:04] Raw data: 0000000 00000000 [2019-09-30 08:05:04] Other state: {"ulb_mode":"color","hue":25} [2019-09-30 08:05:04] Rwta: 88001200 30000800 [2019-09-30 08:05:04] Resul: [2019-09-30 08:05:04] Raw data: 00000000 0000000 [2019-09-30 08:05:04] MqttClient - publishing updateto milight/state/0x3/rgb_cct/1 [2019-09-30 08:05:04] whing to next packet, 1 packe in queue [2019-09-30 08:05:04] Sending packet (10 repeats): [2019-09-30 08:05:04] 00 DB E1 22 61 C4 71 nacket (10 epe [2019-09-30 08:05:04] 00 DB E1 22 61 C4 71 6 [2019-09-30 08:05:04] Epsed: 48 [2019-09-30 08:05:04] Sending packet (10 e): [2019-09-30 08:05:04] 00 DB E1 22 61 C4 71 6 [2019-09-30 08:05:04] Epsed: 47 [2019-09-30 08:05:04] Sending packet (10 rpeats): [2019-09-30 08:05:04] 00 DB E1 22 61 C4 71 6C2 [2019-09-30 08:05:04] led: 46 [2019-09-30 08:05:04] Sending packet (10 es): [2019-09-30 08:05:04] 00 DB E1 22 61 C4 71 62 [2019-09-30 08:05:04] ld: 52 [2019-09-30 08:05:04] Patching existing stwith: {"saturation":15} [2019-09-30 08:05:04] Grotate::patch: State changed: }Raw data: 000F0000 30000100 [2019-09-30 08:05:04] aing existing state with: : {Raw data: 000F0000 30000100 [2019-09-30 08:05:04] Patching existing state with: : [2019-09-30 08:05:04] Raw data: 000F0000 30000100 [2019-09-30 08:05:04] Clearing fields. Current sta: {} [2019-09-30 08:05:04] Raw data: 00000000 00000Other state: {} [2019-09-30 08:05:04] Raw data: 00000 30000100 [2019-09-30 08:05:04] Result: {} [2019-09-30 08:05:05] Ra 00000000 00000000 [2019-09-30 08:05:09] qient - publishing update toilight/state/0x3/rgb_cct/1 [2019-09-30 08:05:09] ning packet [2019-09-30 08:05:09] Switching to nepacket, 1 packets in queue [2019-09-30 08:05:09] Snpacket (10 repeats): [2019-09-30 08:05:09] 00 D1 22 63 DE 6E 66 FB [2019-09-30 08:05:09] Esed: 48 [2019-09-30 08:05:09] Sending packet (10 rats): [2019-09-30 08:05:09] 00 DB E1 22 63 DE 6E 6 [2019-09-30 08:05:09] ld: 45 [2019-09-30 08:05:09] Sending packet (10 es): [2019-09-30 08:05:09] 00 DB E1 22 63 DE 6E 6FB [2019-09-30 08:05:09] Epsed: 46 [2019-09-30 08:05:09] Sending packet (10 rs): [2019-09-30 08:05:09] 00 DB E1 22 63 DE 6E 6 FEpsed: 45 [2019-09-30 08:05:09] Sending packet (10 rs): [2019-09-30 08:05:09] 00 DB E1 22 63 DE 6E 6 [2019-09-30 08:05:09] Epsed: 47 [2019-09-30 08:05:09] Patching existing sa{"hue":27} [2019-09-30 08:05:09] GroupState State changed: {"bulb_olor","hue":27} [2019-09-30 08:05:09] Raw data8001300 30000800 [2019-09-30 08:05:09] Patching exs state with: : {"bulb_mode"olor","hue":27} [2019-09-30 08:05:09] Raw data: 88300 30000800 [2019-09-30 08:05:09] [2019-09-30 08:05:09] Patching existing state with: : {"bulb_mode":nelds. Current state: {} [2019-09-30 08:05:09] Raw data: 00 00000000 [2019-09-30 08:05:09] Other state: {"b_mode":"color","hue":27} [2019-09-30 08:05:09] Raata: 88001300 30000800 [2019-09-30 08:05:13] Resul:Raw data: 00000000 0000000MqttClient - publishing updat milight/state/0x3/rgb_cct/1Mlient - Got message on topi:ilight/commands/0x1/rgb_cct/MqttClient - device 0001, grou neuing packet [2019-09-30 08:05:13] Enqueuing pack Switching to next packet, 2 ats in queue [2019-09-30 08:05:13] Sending packet 1repeats): [2019-09-30 08:05:13] 00 DB E1 24 63 E1 6 FD [2019-09-30 08:05:13] led: 47 [2019-09-30 08:05:13] Sending packet (10 ets): [2019-09-30 08:05:13] 00 DB E1 24 63 E1 6F 6 [2019-09-30 08:05:13] led: 45 [2019-09-30 08:05:13] Sending packet (10 es): [2019-09-30 08:05:13] 00 DB E1 24 63 E1 6F 6FD [2019-09-30 08:05:13] ld: 47 [2019-09-30 08:05:13] Sending packet (10 rts): [2019-09-30 08:05:13] 00 DB E1 24 63 E1 6F 6 [2019-09-30 08:05:13] ld: 46 [2019-09-30 08:05:13] Sending packet (10 e): [2019-09-30 08:05:13] 00 DB E1 24 63 E1 6F 6 [2019-09-30 08:05:13] ld: 46 [2019-09-30 08:05:13] Patching existing sath: {"hue":25} [2019-09-30 08:05:13] GroupStat:ch: State changed: {"bulb_o"color","hue":25} [2019-09-30 08:05:13] Raw data88001200 30000800 [2019-09-30 08:05:13] Patching exs state with: : {"bulb_mode:or","hue":25} [2019-09-30 08:05:13] Raw data: 8000 30000800 [2019-09-30 08:05:13] [2019-09-30 08:05:13] Patching exist state with: : {"bulb_mode":"olor","hue":25} [2019-09-30 08:05:13] Raw data: 8801 30000800 [2019-09-30 08:05:13] [2019-09-30 08:05:13] Clearing fields.urrent state: {} [2019-09-30 08:05:13] Raw data: 000 00000000 [2019-09-30 08:05:13] Other state: {bmode":"color","hue":25} [2019-09-30 08:05:13] Rwa: 88001200 30000800 [2019-09-30 08:05:13] Resul: [2019-09-30 08:05:13] Raw data: 00000000 0000000MqttClient - publishing updateo milight/state/0x1/rgb_cct/1 [2019-09-30 08:05:13] whing to next packet, 1 packein queue [2019-09-30 08:05:13] Sending packet (10 rats): [2019-09-30 08:05:13] 00 DB E1 24 61 BB 6C 6 [2019-09-30 08:05:13] Epsed: 49 [2019-09-30 08:05:13] Sending packet (10 es): [2019-09-30 08:05:13] 00 DB E1 24 61 BB 6C 6 [2019-09-30 08:05:13] ld: 46 [2019-09-30 08:05:13] Sending packet (10 es): [2019-09-30 08:05:13] 00 DB E1 24 61 BB 6C 66 [2019-09-30 08:05:13] Epsed: 47 [2019-09-30 08:05:13] Sending packet (10 es): [2019-09-30 08:05:13] 00 DB E1 24 61 BB 6C 6 C6 [2019-09-30 08:05:13] ld: 46 [2019-09-30 08:05:13] Sending packet (10 rats): [2019-09-30 08:05:13] 00 DB E1 24 61 BB 6C 6 [2019-09-30 08:05:13] Epsed: 49 [2019-09-30 08:05:13] Patching existing stwith: {"saturation":10} [2019-09-30 08:05:13] Grute::patch: State changed: }Raw data: 000A0000 30000100 [2019-09-30 08:05:13] Ptching existing state with: : { [2019-09-30 08:05:13] Raw data: 000A0000 30000100 [2019-09-30 08:05:13] [2019-09-30 08:05:13] ching existing state with: [2019-09-30 08:05:13] Raw data: 000A0000 3000010 [2019-09-30 08:05:13] Clearing fields. Current stt} [2019-09-30 08:05:13] Raw data: 00000000 00000 [2019-09-30 08:05:13] Other state: {} [2019-09-30 08:05:13] Raw data: 00000 30000100 [2019-09-30 08:05:13] Result: {} [2019-09-30 08:05:18] Ra a: 00000000 00000000 [2019-09-30 08:05:18] Eeuing packet [2019-09-30 08:05:18] Switching to nxcket, 1 packets in queue [2019-09-30 08:05:18] Seing packet (10 repeats): [2019-09-30 08:05:18] 00 D E1 24 63 E1 6D 66 FB [2019-09-30 08:05:18] Epsed: 50 [2019-09-30 08:05:18] Sending packet (10 rats): [2019-09-30 08:05:18] 00 DB E1 24 63 E1 6D 6 [2019-09-30 08:05:18] l: 46 [2019-09-30 08:05:18] Sending packet (10 p: [2019-09-30 08:05:18] 00 DB E1 24 63 E1 6D [2019-09-30 08:05:18] Epsed: 46 [2019-09-30 08:05:18] Sending packet (10 p: [2019-09-30 08:05:18] 00 DB E1 24 63 E1 6D [2019-09-30 08:05:18] a: 45 [2019-09-30 08:05:18] Sending packet (10 p): [2019-09-30 08:05:18] 00 DB E1 24 63 E1 6D 6FB [2019-09-30 08:05:18] ad: 49 [2019-09-30 08:05:18] Patching existing st with: {"hue":25} [2019-09-30 08:05:18] GroupStat:h: State changed: {"bulb_o"color","hue":25} [2019-09-30 08:05:18] Raw dat:001200 30000800 [2019-09-30 08:05:18] Patching exs state with: : {"bulb_mode:lor","hue":25} [2019-09-30 08:05:18] Raw data: 80200 30000800 [2019-09-30 08:05:18] [2019-09-30 08:05:18] Patching exisitate with: : {"bulb_mode":cr","hue":25} [2019-09-30 08:05:18] Raw data: 88010 30000800 [2019-09-30 08:05:18] [2019-09-30 08:05:18] Clearing fields rrent state: {} [2019-09-30 08:05:18] Raw data: 0000 00000000 [2019-09-30 08:05:18] Other state: {bb_mode":"color","hue":25} [2019-09-30 08:05:18] Rwa: 88001200 30000800 [2019-09-30 08:05:18] Resul:} [2019-09-30 08:05:18] Raw data: 00000000 0000000MqttClient - publishing updateo milight/state/0x1/rgb_cct/1 [2019-09-30 08:05:35] q: [2019-09-30 08:05:35] lng dirty state for 0x0003 1gb_cct [2019-09-30 08:05:35] Enqueuing packet [2019-09-30 08:05:35] qing packet [2019-09-30 08:05:35] Switching to ne packet, 2 packets in queue [2019-09-30 08:05:35] Sdpacket (10 repeats): [2019-09-30 08:05:35] 00 B2 63 E1 5A 66 FA [2019-09-30 08:05:35] l: 48 [2019-09-30 08:05:35] Sending packet (10 e): [2019-09-30 08:05:35] 00 DB E1 22 63 E1 5A 6 [2019-09-30 08:05:35] ld: 46 [2019-09-30 08:05:35] Sending packet (10 rts): [2019-09-30 08:05:35] 00 DB E1 22 63 E1 5A 6A [2019-09-30 08:05:35] Epsed: 46 [2019-09-30 08:05:35] Sending packet (10 p): [2019-09-30 08:05:35] 00 DB E1 22 63 E1 5A 6 [2019-09-30 08:05:35] ld: 46 [2019-09-30 08:05:35] Sending packet (10 rats): [2019-09-30 08:05:35] 00 DB E1 22 63 E1 5A [2019-09-30 08:05:35] ld: 46 [2019-09-30 08:05:35] Patching existing sth: {"hue":25} [2019-09-30 08:05:35] GroupStateatch: State changed: {"bulb_dcolor","hue":25} [2019-09-30 08:05:35] Raw data88001200 30000800 [2019-09-30 08:05:35] Patching extstate with: : {"bulb_mode"r","hue":25} [2019-09-30 08:05:35] Raw data: 881200 30000800 [2019-09-30 08:05:35] [2019-09-30 08:05:35] Patching exisiate with: : {"bulb_mode":c,"hue":25} [2019-09-30 08:05:35] Raw data: 880000 30000800 [2019-09-30 08:05:35] [2019-09-30 08:05:35] Clearing fields.Current state: {} [2019-09-30 08:05:35] Raw data: 00000 00000000 [2019-09-30 08:05:35] Other state: {umode":"color","hue":25} [2019-09-30 08:05:35] Radata: 88001200 30000800 [2019-09-30 08:05:35] Result} [2019-09-30 08:05:35] Raw data: 00000000 0000000MqttClient - publishing updateo milight/state/0x3/rgb_cct/1 [2019-09-30 08:05:35] wing to next packet, 1 packtin queue [2019-09-30 08:05:35] Sending packet (10 reats): [2019-09-30 08:05:35] 00 DB E1 22 61 C4 5B [2019-09-30 08:05:35] ld: 47 [2019-09-30 08:05:35] Sending packet (10 p: [2019-09-30 08:05:35] 00 DB E1 22 61 C4 5B 6C [2019-09-30 08:05:35] ld: 47 [2019-09-30 08:05:35] Sending packet (10 e): [2019-09-30 08:05:35] 00 DB E1 22 61 C4 5B 6 [2019-09-30 08:05:35] Epsed: 48 [2019-09-30 08:05:35] Sending packet (10 es): [2019-09-30 08:05:35] 00 DB E1 22 61 C4 5B 6 [2019-09-30 08:05:35] ld: 46 [2019-09-30 08:05:35] Sending packet (10 reats): [2019-09-30 08:05:35] 00 DB E1 22 61 C4 5B 6 [2019-09-30 08:05:35] Epsed: 46 [2019-09-30 08:05:35] Patching existing sawith: {"saturation":15} [2019-09-30 08:05:35] Grue::patch: State changed: { [2019-09-30 08:05:35] Raw data: 000F0000 30000100 [2019-09-30 08:05:35] aing existing state with: : { [2019-09-30 08:05:35] Raw data: 000F0000 30000100 [2019-09-30 08:05:35] [2019-09-30 08:05:35] ching existing state with: :} [2019-09-30 08:05:35] Raw data: 000F0000 30000100 [2019-09-30 08:05:35] Clearing fields. Current stt} [2019-09-30 08:05:35] Raw data: 00000000 00000Other state: {} [2019-09-30 08:05:35] Raw data: 0000 30000100 [2019-09-30 08:05:35] Result: {} [2019-09-30 08:05:35] Ra ta: 00000000 00000000 [2019-09-30 08:05:40] MtClient - publishing update t ight/state/0x3/rgb_cct/1 [2019-09-30 08:05:40] nng packet [2019-09-30 08:05:40] Switching to nxket, 1 packets in queue [2019-09-30 08:05:40] Snpacket (10 repeats): [2019-09-30 08:05:40] 00 B22 63 DE 58 66 E5 [2019-09-30 08:05:40] Epsed: 47 [2019-09-30 08:05:40] Sending packet (10 ets): [2019-09-30 08:05:40] 00 DB E1 22 63 DE 58 6 [2019-09-30 08:05:40] ld: 46 [2019-09-30 08:05:40] Sending packet (10 e00 DB E1 22 63 DE 58 6E5 [2019-09-30 08:05:40] l [2019-09-30 08:05:40] Sending packet (10 p00 DB E1 22 63 DE 58 [2019-09-30 08:05:40] Epsed: 50 [2019-09-30 08:05:40] Sending packet (10 e00 DB E1 22 63 DE 58 [2019-09-30 08:05:40] Eed: 46 [2019-09-30 08:05:40] Patching existing st: {"hue":27} [2019-09-30 08:05:40] GroupStatetch: State changed: {"bulb_m":"color","hue":27} [2019-09-30 08:05:40] Raw dat:0 30000800 [2019-09-30 08:05:40] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:05:40] Raw data: 88300 30000800 [2019-09-30 08:05:40] [2019-09-30 08:05:40] Patching exisibulb_mode":w: 88000 30000800 [2019-09-30 08:05:40] [2019-09-30 08:05:40] Clearing fields tate: {} [2019-09-30 08:05:40] Raw data: 00000000 [2019-09-30 08:05:40] Other state: {u:"color","hue":27} [2019-09-30 08:05:40] R 001300 30000800 [2019-09-30 08:05:40] Resul aw data: 00000000 0000000MqttClient - publishing updat [2019-09-30 08:07:39] qc1 [2019-09-30 08:07:39] MqttClient - device 0003, gup [2019-09-30 08:07:39] Fhing dirty state for 0x0003 ExeDEreats): [2019-09-30 08:07:39] 00 DB E1 22 63 E1 5D 6lrts): [2019-09-30 08:07:39] 00 DB E1 22 63 E1 5D 6Ee6Er6Et::patch: State changed: {"bum:s:8i"1.0"w:0e[2019-09-30 08:12:27] Er6Eh[2019-09-30 08:12:57] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:12:57] MqttClient - device 0001, group 1 [2019-09-30 08:13:28] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:13:28] MqttClient - device 0001, group 1 [2019-09-30 08:13:59] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:13:59] MqttClient - device 0001, group 1 [2019-09-30 08:14:04] Unhandled websocket event: 10 [2019-09-30 08:14:04] Flushing dirty state for 0x0003 / 1 / rgb_cct [2019-09-30 08:14:09] Enqueuing packet [2019-09-30 08:14:09] Switching to next packet, 1 packets in queue [2019-09-30 08:14:09] Sending packet (10 repeats): [2019-09-30 08:14:09] 00 DB E1 24 66 CA BA 66 B8 [2019-09-30 08:14:09] Elapsed: 47 [2019-09-30 08:14:09] Sending packet (10 repeats): [2019-09-30 08:14:09] 00 DB E1 24 66 CA BA 66 B8 [2019-09-30 08:14:09] Elapsed: 46 [2019-09-30 08:14:09] Sending packet (10 repeats): [2019-09-30 08:14:09] 00 DB E1 24 66 CA BA 66 B8 [2019-09-30 08:14:09] Elapsed: 48 [2019-09-30 08:14:09] Sending packet (10 repeats): [2019-09-30 08:14:09] 00 DB E1 24 66 CA BA 66 B8 [2019-09-30 08:14:09] Elapsed: 49 [2019-09-30 08:14:09] Sending packet (10 repeats): [2019-09-30 08:14:09] 00 DB E1 24 66 CA BA 66 B8 [2019-09-30 08:14:09] Elapsed: 46 [2019-09-30 08:14:09] Patching existing state with: {"state":"OFF"} [2019-09-30 08:14:09] GroupState::patch: State changed: {"state":"OFF"} [2019-09-30 08:14:09] Raw data: 40000000 70000000 [2019-09-30 08:14:09] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:09] Raw data: 40000000 70000000 [2019-09-30 08:14:09] [2019-09-30 08:14:09] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:09] Raw data: 40000000 70000000 [2019-09-30 08:14:09] [2019-09-30 08:14:09] Clearing fields. Current state: {} [2019-09-30 08:14:09] Raw data: 00000000 00000000 [2019-09-30 08:14:09] Other state: {"state":"OFF"} [2019-09-30 08:14:09] Raw data: 40000000 70000000 [2019-09-30 08:14:09] Result: {} [2019-09-30 08:14:09] Raw data: 00000000 00000000 [2019-09-30 08:14:09] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:14:20] Enqueuing packet [2019-09-30 08:14:20] Switching to next packet, 1 packets in queue [2019-09-30 08:14:20] Sending packet (10 repeats): [2019-09-30 08:14:20] 00 DB E1 24 66 D1 BB 66 CC [2019-09-30 08:14:20] Elapsed: 46 [2019-09-30 08:14:20] Sending packet (10 repeats): [2019-09-30 08:14:20] 00 DB E1 24 66 D1 BB 66 CC [2019-09-30 08:14:20] Elapsed: 51 [2019-09-30 08:14:20] Sending packet (10 repeats): [2019-09-30 08:14:20] 00 DB E1 24 66 D1 BB 66 CC [2019-09-30 08:14:20] Elapsed: 50 [2019-09-30 08:14:20] Sending packet (10 repeats): [2019-09-30 08:14:20] 00 DB E1 24 66 D1 BB 66 CC [2019-09-30 08:14:20] Elapsed: 46 [2019-09-30 08:14:20] Sending packet (10 repeats): [2019-09-30 08:14:20] 00 DB E1 24 66 D1 BB 66 CC [2019-09-30 08:14:20] Elapsed: 46 [2019-09-30 08:14:20] Patching existing state with: {"state":"ON"} [2019-09-30 08:14:20] GroupState::patch: State changed: {"state":"ON"} [2019-09-30 08:14:20] Raw data: 40000001 70000000 [2019-09-30 08:14:20] Patching existing state with: : {"state":"ON"} [2019-09-30 08:14:20] Raw data: 40000001 70000000 [2019-09-30 08:14:20] [2019-09-30 08:14:20] Patching existing state with: : {"state":"ON"} [2019-09-30 08:14:20] Raw data: 40000001 70000000 [2019-09-30 08:14:20] [2019-09-30 08:14:20] Clearing fields. Current state: {} [2019-09-30 08:14:20] Raw data: 00000000 00000000 [2019-09-30 08:14:20] Other state: {"state":"ON"} [2019-09-30 08:14:20] Raw data: 40000001 70000000 [2019-09-30 08:14:20] Result: {} [2019-09-30 08:14:20] Raw data: 00000000 00000000 [2019-09-30 08:14:21] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:14:21] Enqueuing packet [2019-09-30 08:14:21] Switching to next packet, 1 packets in queue [2019-09-30 08:14:21] Sending packet (10 repeats): [2019-09-30 08:14:21] 00 DB E1 24 66 CA B8 66 B6 [2019-09-30 08:14:22] Elapsed: 48 [2019-09-30 08:14:22] Sending packet (10 repeats): [2019-09-30 08:14:22] 00 DB E1 24 66 CA B8 66 B6 [2019-09-30 08:14:22] Elapsed: 52 [2019-09-30 08:14:22] Sending packet (10 repeats): [2019-09-30 08:14:22] 00 DB E1 24 66 CA B8 66 B6 [2019-09-30 08:14:22] Elapsed: 46 [2019-09-30 08:14:22] Sending packet (10 repeats): [2019-09-30 08:14:22] 00 DB E1 24 66 CA B8 66 B6 [2019-09-30 08:14:22] Elapsed: 46 [2019-09-30 08:14:22] Sending packet (10 repeats): [2019-09-30 08:14:22] 00 DB E1 24 66 CA B8 66 B6 [2019-09-30 08:14:22] Elapsed: 49 [2019-09-30 08:14:22] Patching existing state with: {"state":"OFF"} [2019-09-30 08:14:22] GroupState::patch: State changed: {"state":"OFF"} [2019-09-30 08:14:22] Raw data: 40000000 70000000 [2019-09-30 08:14:22] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:22] Raw data: 40000000 70000000 [2019-09-30 08:14:22] [2019-09-30 08:14:22] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:22] Raw data: 40000000 70000000 [2019-09-30 08:14:22] [2019-09-30 08:14:22] Clearing fields. Current state: {} [2019-09-30 08:14:22] Raw data: 00000000 00000000 [2019-09-30 08:14:22] Other state: {"state":"OFF"} [2019-09-30 08:14:22] Raw data: 40000000 70000000 [2019-09-30 08:14:22] Result: {} [2019-09-30 08:14:22] Raw data: 00000000 00000000 [2019-09-30 08:14:22] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:14:23] Enqueuing packet [2019-09-30 08:14:23] Switching to next packet, 1 packets in queue [2019-09-30 08:14:23] Sending packet (10 repeats): [2019-09-30 08:14:23] 00 DB E1 24 66 D1 B9 66 CA [2019-09-30 08:14:23] Elapsed: 48 [2019-09-30 08:14:23] Sending packet (10 repeats): [2019-09-30 08:14:23] 00 DB E1 24 66 D1 B9 66 CA [2019-09-30 08:14:23] Elapsed: 46 [2019-09-30 08:14:23] Sending packet (10 repeats): [2019-09-30 08:14:23] 00 DB E1 24 66 D1 B9 66 CA [2019-09-30 08:14:23] Elapsed: 46 [2019-09-30 08:14:23] Sending packet (10 repeats): [2019-09-30 08:14:23] 00 DB E1 24 66 D1 B9 66 CA [2019-09-30 08:14:23] Elapsed: 46 [2019-09-30 08:14:23] Sending packet (10 repeats): [2019-09-30 08:14:23] 00 DB E1 24 66 D1 B9 66 CA [2019-09-30 08:14:23] Elapsed: 47 [2019-09-30 08:14:23] Patching existing state with: {"state":"ON"} [2019-09-30 08:14:23] GroupState::patch: State changed: {"state":"ON"} [2019-09-30 08:14:23] Raw data: 40000001 70000000 [2019-09-30 08:14:23] Patching existing state with: : {"state":"ON"} [2019-09-30 08:14:23] Raw data: 40000001 70000000 [2019-09-30 08:14:23] [2019-09-30 08:14:23] Patching existing state with: : {"state":"ON"} [2019-09-30 08:14:23] Raw data: 40000001 70000000 [2019-09-30 08:14:23] [2019-09-30 08:14:23] Clearing fields. Current state: {} [2019-09-30 08:14:23] Raw data: 00000000 00000000 [2019-09-30 08:14:23] Other state: {"state":"ON"} [2019-09-30 08:14:23] Raw data: 40000001 70000000 [2019-09-30 08:14:23] Result: {} [2019-09-30 08:14:23] Raw data: 00000000 00000000 [2019-09-30 08:14:23] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:14:24] Enqueuing packet [2019-09-30 08:14:24] Switching to next packet, 1 packets in queue [2019-09-30 08:14:24] Sending packet (10 repeats): [2019-09-30 08:14:24] 00 DB E1 24 66 CA B6 66 B4 [2019-09-30 08:14:24] Elapsed: 48 [2019-09-30 08:14:24] Sending packet (10 repeats): [2019-09-30 08:14:24] 00 DB E1 24 66 CA B6 66 B4 [2019-09-30 08:14:24] Elapsed: 46 [2019-09-30 08:14:24] Sending packet (10 repeats): [2019-09-30 08:14:24] 00 DB E1 24 66 CA B6 66 B4 [2019-09-30 08:14:24] Elapsed: 46 [2019-09-30 08:14:24] Sending packet (10 repeats): [2019-09-30 08:14:24] 00 DB E1 24 66 CA B6 66 B4 [2019-09-30 08:14:24] Elapsed: 46 [2019-09-30 08:14:24] Sending packet (10 repeats): [2019-09-30 08:14:24] 00 DB E1 24 66 CA B6 66 B4 [2019-09-30 08:14:24] Elapsed: 49 [2019-09-30 08:14:24] Patching existing state with: {"state":"OFF"} [2019-09-30 08:14:24] GroupState::patch: State changed: {"state":"OFF"} [2019-09-30 08:14:24] Raw data: 40000000 70000000 [2019-09-30 08:14:24] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:24] Raw data: 40000000 70000000 [2019-09-30 08:14:24] [2019-09-30 08:14:24] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:24] Raw data: 40000000 70000000 [2019-09-30 08:14:24] [2019-09-30 08:14:24] Clearing fields. Current state: {} [2019-09-30 08:14:24] Raw data: 00000000 00000000 [2019-09-30 08:14:24] Other state: {"state":"OFF"} [2019-09-30 08:14:24] Raw data: 40000000 70000000 [2019-09-30 08:14:24] Result: {} [2019-09-30 08:14:24] Raw data: 00000000 00000000 [2019-09-30 08:14:24] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:14:25] Enqueuing packet [2019-09-30 08:14:25] Switching to next packet, 1 packets in queue [2019-09-30 08:14:25] Sending packet (10 repeats): [2019-09-30 08:14:25] 00 DB E1 24 66 D1 B7 66 B8 [2019-09-30 08:14:25] Elapsed: 48 [2019-09-30 08:14:25] Sending packet (10 repeats): [2019-09-30 08:14:25] 00 DB E1 24 66 D1 B7 66 B8 [2019-09-30 08:14:25] Elapsed: 46 [2019-09-30 08:14:25] Sending packet (10 repeats): [2019-09-30 08:14:25] 00 DB E1 24 66 D1 B7 66 B8 [2019-09-30 08:14:25] Elapsed: 46 [2019-09-30 08:14:25] Sending packet (10 repeats): [2019-09-30 08:14:25] 00 DB E1 24 66 D1 B7 66 B8 [2019-09-30 08:14:25] Elapsed: 46 [2019-09-30 08:14:25] Sending packet (10 repeats): [2019-09-30 08:14:25] 00 DB E1 24 66 D1 B7 66 B8 [2019-09-30 08:14:25] Elapsed: 46 [2019-09-30 08:14:25] Patching existing state with: {"state":"ON"} [2019-09-30 08:14:25] GroupState::patch: State changed: {"state":"ON"} [2019-09-30 08:14:25] Raw data: 40000001 70000000 [2019-09-30 08:14:25] Patching existing state with: : {"state":"ON"} [2019-09-30 08:14:25] Raw data: 40000001 70000000 [2019-09-30 08:14:25] [2019-09-30 08:14:25] Patching existing state with: : {"state":"ON"} [2019-09-30 08:14:25] Raw data: 40000001 70000000 [2019-09-30 08:14:25] [2019-09-30 08:14:25] Clearing fields. Current state: {} [2019-09-30 08:14:25] Raw data: 00000000 00000000 [2019-09-30 08:14:25] Other state: {"state":"ON"} [2019-09-30 08:14:25] Raw data: 40000001 70000000 [2019-09-30 08:14:25] Result: {} [2019-09-30 08:14:25] Raw data: 00000000 00000000 [2019-09-30 08:14:25] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:14:26] Enqueuing packet [2019-09-30 08:14:26] Switching to next packet, 1 packets in queue [2019-09-30 08:14:26] Sending packet (10 repeats): [2019-09-30 08:14:26] 00 DB E1 24 66 CA B4 66 B2 [2019-09-30 08:14:26] Elapsed: 46 [2019-09-30 08:14:26] Sending packet (10 repeats): [2019-09-30 08:14:26] 00 DB E1 24 66 CA B4 66 B2 [2019-09-30 08:14:26] Elapsed: 49 [2019-09-30 08:14:26] Sending packet (10 repeats): [2019-09-30 08:14:26] 00 DB E1 24 66 CA B4 66 B2 [2019-09-30 08:14:26] Elapsed: 51 [2019-09-30 08:14:26] Sending packet (10 repeats): [2019-09-30 08:14:26] 00 DB E1 24 66 CA B4 66 B2 [2019-09-30 08:14:26] Elapsed: 46 [2019-09-30 08:14:26] Sending packet (10 repeats): [2019-09-30 08:14:26] 00 DB E1 24 66 CA B4 66 B2 [2019-09-30 08:14:26] Elapsed: 46 [2019-09-30 08:14:26] Patching existing state with: {"state":"OFF"} [2019-09-30 08:14:26] GroupState::patch: State changed: {"state":"OFF"} [2019-09-30 08:14:26] Raw data: 40000000 70000000 [2019-09-30 08:14:26] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:26] Raw data: 40000000 70000000 [2019-09-30 08:14:26] [2019-09-30 08:14:26] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:26] Raw data: 40000000 70000000 [2019-09-30 08:14:26] [2019-09-30 08:14:26] Clearing fields. Current state: {} [2019-09-30 08:14:26] Raw data: 00000000 00000000 [2019-09-30 08:14:26] Other state: {"state":"OFF"} [2019-09-30 08:14:26] Raw data: 40000000 70000000 [2019-09-30 08:14:26] Result: {} [2019-09-30 08:14:26] Raw data: 00000000 00000000 [2019-09-30 08:14:26] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:14:27] Enqueuing packet [2019-09-30 08:14:27] Switching to next packet, 1 packets in queue [2019-09-30 08:14:27] Sending packet (10 repeats): [2019-09-30 08:14:27] 00 DB E1 24 66 D1 B5 66 B6 [2019-09-30 08:14:27] Elapsed: 47 [2019-09-30 08:14:27] Sending packet (10 repeats): [2019-09-30 08:14:27] 00 DB E1 24 66 D1 B5 66 B6 [2019-09-30 08:14:27] Elapsed: 46 [2019-09-30 08:14:27] Sending packet (10 repeats): [2019-09-30 08:14:27] 00 DB E1 24 66 D1 B5 66 B6 [2019-09-30 08:14:27] Elapsed: 52 [2019-09-30 08:14:27] Sending packet (10 repeats): [2019-09-30 08:14:27] 00 DB E1 24 66 D1 B5 66 B6 [2019-09-30 08:14:27] Elapsed: 48 [2019-09-30 08:14:27] Sending packet (10 repeats): [2019-09-30 08:14:27] 00 DB E1 24 66 D1 B5 66 B6 [2019-09-30 08:14:27] Elapsed: 46 [2019-09-30 08:14:27] Patching existing state with: {"state":"ON"} [2019-09-30 08:14:27] GroupState::patch: State changed: {"state":"ON"} [2019-09-30 08:14:27] Raw data: 40000001 70000000 [2019-09-30 08:14:27] Patching existing state with: : {"state":"ON"} [2019-09-30 08:14:27] Raw data: 40000001 70000000 [2019-09-30 08:14:27] [2019-09-30 08:14:27] Patching existing state with: : {"state":"ON"} [2019-09-30 08:14:27] Raw data: 40000001 70000000 [2019-09-30 08:14:27] [2019-09-30 08:14:27] Clearing fields. Current state: {} [2019-09-30 08:14:27] Raw data: 00000000 00000000 [2019-09-30 08:14:27] Other state: {"state":"ON"} [2019-09-30 08:14:27] Raw data: 40000001 70000000 [2019-09-30 08:14:27] Result: {} [2019-09-30 08:14:27] Raw data: 00000000 00000000 [2019-09-30 08:14:27] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:14:28] Enqueuing packet [2019-09-30 08:14:28] Switching to next packet, 1 packets in queue [2019-09-30 08:14:28] Sending packet (10 repeats): [2019-09-30 08:14:28] 00 DB E1 24 66 CA C2 66 C0 [2019-09-30 08:14:28] Elapsed: 47 [2019-09-30 08:14:28] Sending packet (10 repeats): [2019-09-30 08:14:28] 00 DB E1 24 66 CA C2 66 C0 [2019-09-30 08:14:28] Elapsed: 45 [2019-09-30 08:14:28] Sending packet (10 repeats): [2019-09-30 08:14:28] 00 DB E1 24 66 CA C2 66 C0 [2019-09-30 08:14:28] Elapsed: 49 [2019-09-30 08:14:28] Sending packet (10 repeats): [2019-09-30 08:14:28] 00 DB E1 24 66 CA C2 66 C0 [2019-09-30 08:14:28] Elapsed: 51 [2019-09-30 08:14:28] Sending packet (10 repeats): [2019-09-30 08:14:28] 00 DB E1 24 66 CA C2 66 C0 [2019-09-30 08:14:28] Elapsed: 47 [2019-09-30 08:14:28] Patching existing state with: {"state":"OFF"} [2019-09-30 08:14:28] GroupState::patch: State changed: {"state":"OFF"} [2019-09-30 08:14:28] Raw data: 40000000 70000000 [2019-09-30 08:14:28] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:28] Raw data: 40000000 70000000 [2019-09-30 08:14:28] [2019-09-30 08:14:28] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:14:28] Raw data: 40000000 70000000 [2019-09-30 08:14:28] [2019-09-30 08:14:28] Clearing fields. Current state: {} [2019-09-30 08:14:28] Raw data: 00000000 00000000 [2019-09-30 08:14:28] Other state: {"state":"OFF"} [2019-09-30 08:14:28] Raw data: 40000000 70000000 [2019-09-30 08:14:28] Result: {} [2019-09-30 08:14:28] Raw data: 00000000 00000000 [2019-09-30 08:14:28] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:14:52] F/ 1 / rgb_cct [2019-09-30 08:15:02] Unhandled websockEeeDEr6Er6Er6Er6Etps0tdne0rc [2019-09-30 08:15:02] C [2019-09-30 08:15:02] at: {} [2019-09-30 08:15:02] Raw data: 00000000 000000e to milight/state/0x8/rgb_cct/ [2019-09-30 08:15:05] EeeDEr6Er6Er6Er6EtSt7 ae"0t0}e0pcEext packet, 1 packets in queue [2019-09-30 08:15:05] Sending packet (10 repeats): [2019-09-30 08:15:05] 00 DB E1 2B 66 CA C1 66 A6 [2019-09-30 08:15:05] Erepeats): [2019-09-30 08:15:05] 00 DB E1 2B 66 CA C16Elapsed: 48 [2019-09-30 08:15:05] Sending packet (10 repeats): [2019-09-30 08:15:05] 00 DB E1 2B 66 CA C1 66 A6 [2019-09-30 08:15:05] Elapsed: 47 [2019-09-30 08:15:05] Sending packet (10 repeats): [2019-09-30 08:15:05] 00 DB E1 2B 66 CA C1 66 A6 [2019-09-30 08:15:05] Elapsed: 46 [2019-09-30 08:15:05] Sending packet (10 repeats): [2019-09-30 08:15:05] 00 DB E1 2B 66 CA C1 66 A6 [2019-09-30 08:15:05] Elapsed: 50 [2019-09-30 08:15:05] Patching existing state with: {"state":"OFF"} [2019-09-30 08:15:05] GroupState::patch: State changed: {"state":"OFF"} [2019-09-30 08:15:05] Raw data: 40000000 70000000 [2019-09-30 08:15:05] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:15:05] Raw data: 40000000 70000000 [2019-09-30 08:15:05] [2019-09-30 08:15:05] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:15:05] Raw data: 40000000 70000000 [2019-09-30 08:15:05] [2019-09-30 08:15:05] Clearing fields. Current state: {} [2019-09-30 08:15:05] Raw data: 00000000 00000000 [2019-09-30 08:15:05] Other state: {"state":"OFF"} [2019-09-30 08:15:05] Raw data: 40000000 70000000 [2019-09-30 08:15:05] Result: {} [2019-09-30 08:15:05] Raw data: 00000000 00000000 [2019-09-30 08:15:05] MqttClient - publishing update to milight/state/0x8/rgb_cct/1 [2019-09-30 08:17:06] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:17:06] MqttClient - device 0001, group 1 [2019-09-30 08:17:06] Enqueuing packet [2019-09-30 08:17:06] Switching to next packet, 1 packets in queue [2019-09-30 08:17:06] Sending packet (10 repeats): [2019-09-30 08:17:06] 00 DB E1 24 66 D1 BE 66 BF [2019-09-30 08:17:06] Elapsed: 47 [2019-09-30 08:17:06] Sending packet (10 repeats): [2019-09-30 08:17:06] 00 DB E1 24 66 D1 BE 66 BF [2019-09-30 08:17:06] Elapsed: 46 [2019-09-30 08:17:06] Sending packet (10 repeats): [2019-09-30 08:17:06] 00 DB E1 24 66 D1 BE 66 BF [2019-09-30 08:17:06] Elapsed: 48 [2019-09-30 08:17:06] Sending packet (10 repeats): [2019-09-30 08:17:06] 00 DB E1 24 66 D1 BE 66 BF [2019-09-30 08:17:06] Elapsed: 46 [2019-09-30 08:17:06] Sending packet (10 repeats): [2019-09-30 08:17:06] 00 DB E1 24 66 D1 BE 66 BF [2019-09-30 08:17:06] Elapsed: 45 [2019-09-30 08:17:06] Patching existing state with: {"state":"ON"} [2019-09-30 08:17:06] GroupState::patch: State changed: {"state":"ON"} [2019-09-30 08:17:07] Raw data: 40000001 70000000 [2019-09-30 08:17:07] Patching existing state with: : {"state":"ON"} [2019-09-30 08:17:07] Raw data: 40000001 70000000 [2019-09-30 08:17:07] [2019-09-30 08:17:07] Patching existing state with: : {"state":"ON"} [2019-09-30 08:17:07] Raw data: 40000001 70000000 [2019-09-30 08:17:07] [2019-09-30 08:17:07] Clearing fields. Current state: {} [2019-09-30 08:17:07] Raw data: 00000000 00000000 [2019-09-30 08:17:07] Other state: {"state":"ON"} [2019-09-30 08:17:07] Raw data: 40000001 70000000 [2019-09-30 08:17:07] Result: {} [2019-09-30 08:17:07] Raw data: 00000000 00000000 [2019-09-30 08:17:07] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:17:36] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:17:36] MqttClient - device 0001, group 1 [2019-09-30 08:17:36] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:18:38] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:18:38] MqttClient - device 0001, group 1 [2019-09-30 08:18:38] Enqueuing packet [2019-09-30 08:18:38] Enqueuing packet [2019-09-30 08:18:38] Switching to next packet, 2 packets in queue [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 63 DC AB 66 38 [2019-09-30 08:18:38] Elapsed: 46 [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 63 DC AB 66 38 [2019-09-30 08:18:38] Elapsed: 47 [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 63 DC AB 66 38 [2019-09-30 08:18:38] Elapsed: 46 [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 63 DC AB 66 38 [2019-09-30 08:18:38] Elapsed: 49 [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 63 DC AB 66 38 [2019-09-30 08:18:38] Elapsed: 45 [2019-09-30 08:18:38] Patching existing state with: {"hue":30} [2019-09-30 08:18:38] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:18:38] Raw data: 88001500 30000800 [2019-09-30 08:18:38] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:18:38] Raw data: 88001500 30000800 [2019-09-30 08:18:38] [2019-09-30 08:18:38] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:18:38] Raw data: 88001500 30000800 [2019-09-30 08:18:38] [2019-09-30 08:18:38] Clearing fields. Current state: {} [2019-09-30 08:18:38] Raw data: 00000000 00000000 [2019-09-30 08:18:38] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:18:38] Raw data: 88001500 30000800 [2019-09-30 08:18:38] Result: {} [2019-09-30 08:18:38] Raw data: 00000000 00000000 [2019-09-30 08:18:38] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:18:38] Switching to next packet, 1 packets in queue [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 61 C8 A8 66 1F [2019-09-30 08:18:38] Elapsed: 48 [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 61 C8 A8 66 1F [2019-09-30 08:18:38] Elapsed: 48 [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 61 C8 A8 66 1F [2019-09-30 08:18:38] Elapsed: 49 [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 61 C8 A8 66 1F [2019-09-30 08:18:38] Elapsed: 46 [2019-09-30 08:18:38] Sending packet (10 repeats): [2019-09-30 08:18:38] 00 DB E1 24 61 C8 A8 66 1F [2019-09-30 08:18:38] Elapsed: 46 [2019-09-30 08:18:38] Patching existing state with: {"saturation":11} [2019-09-30 08:18:38] GroupState::patch: State changed: {} [2019-09-30 08:18:38] Raw data: 000B0000 30000100 [2019-09-30 08:18:38] Patching existing state with: : {} [2019-09-30 08:18:38] Raw data: 000B0000 30000100 [2019-09-30 08:18:38] [2019-09-30 08:18:38] Patching existing state with: : {} [2019-09-30 08:18:38] Raw data: 000B0000 30000100 [2019-09-30 08:18:38] [2019-09-30 08:18:38] Clearing fields. Current state: {} [2019-09-30 08:18:38] Raw data: 00000000 00000000 [2019-09-30 08:18:38] Other state: {} [2019-09-30 08:18:38] Raw data: 000B0000 30000100 [2019-09-30 08:18:38] Result: {} [2019-09-30 08:18:38] Raw data: 00000000 00000000 [2019-09-30 08:18:40] Enqueuing packet [2019-09-30 08:18:40] Switching to next packet, 1 packets in queue [2019-09-30 08:18:40] Sending packet (10 repeats): [2019-09-30 08:18:40] 00 DB E1 24 63 DC A9 66 36 [2019-09-30 08:18:40] Elapsed: 47 [2019-09-30 08:18:40] Sending packet (10 repeats): [2019-09-30 08:18:40] 00 DB E1 24 63 DC A9 66 36 [2019-09-30 08:18:40] Elapsed: 46 [2019-09-30 08:18:40] Sending packet (10 repeats): [2019-09-30 08:18:40] 00 DB E1 24 63 DC A9 66 36 [2019-09-30 08:18:40] Elapsed: 46 [2019-09-30 08:18:40] Sending packet (10 repeats): [2019-09-30 08:18:40] 00 DB E1 24 63 DC A9 66 36 [2019-09-30 08:18:40] Elapsed: 46 [2019-09-30 08:18:40] Sending packet (10 repeats): [2019-09-30 08:18:40] 00 DB E1 24 63 DC A9 66 36 [2019-09-30 08:18:40] Elapsed: 46 [2019-09-30 08:18:40] Patching existing state with: {"hue":30} [2019-09-30 08:18:40] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:18:40] Raw data: 88001500 30000800 [2019-09-30 08:18:40] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:18:40] Raw data: 88001500 30000800 [2019-09-30 08:18:40] [2019-09-30 08:18:40] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:18:40] Raw data: 88001500 30000800 [2019-09-30 08:18:40] [2019-09-30 08:18:40] Clearing fields. Current state: {} [2019-09-30 08:18:40] Raw data: 00000000 00000000 [2019-09-30 08:18:40] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:18:40] Raw data: 88001500 30000800 [2019-09-30 08:18:40] Result: {} [2019-09-30 08:18:40] Raw data: 00000000 00000000 [2019-09-30 08:18:40] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:18:43] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:18:43] MqttClient - device 0001, group 1 [2019-09-30 08:18:43] Enqueuing packet [2019-09-30 08:18:43] Switching to next packet, 1 packets in queue [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 66 CA A6 66 A4 [2019-09-30 08:18:43] Elapsed: 47 [2019-09-30 08:18:43] Enqueuing packet [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 66 CA A6 66 A4 [2019-09-30 08:18:43] Elapsed: 47 [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 66 CA A6 66 A4 [2019-09-30 08:18:43] Elapsed: 49 [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 66 CA A6 66 A4 [2019-09-30 08:18:43] Elapsed: 50 [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 66 CA A6 66 A4 [2019-09-30 08:18:43] Elapsed: 46 [2019-09-30 08:18:43] Patching existing state with: {"state":"OFF"} [2019-09-30 08:18:43] GroupState::patch: State changed: {"state":"OFF"} [2019-09-30 08:18:43] Raw data: 40000000 70000000 [2019-09-30 08:18:43] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:18:43] Raw data: 40000000 70000000 [2019-09-30 08:18:43] [2019-09-30 08:18:43] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:18:43] Raw data: 40000000 70000000 [2019-09-30 08:18:43] [2019-09-30 08:18:43] Clearing fields. Current state: {} [2019-09-30 08:18:43] Raw data: 00000000 00000000 [2019-09-30 08:18:43] Other state: {"state":"OFF"} [2019-09-30 08:18:43] Raw data: 40000000 70000000 [2019-09-30 08:18:43] Result: {} [2019-09-30 08:18:43] Raw data: 00000000 00000000 [2019-09-30 08:18:43] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:18:43] Switching to next packet, 1 packets in queue [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 63 DC A7 66 34 [2019-09-30 08:18:43] Elapsed: 49 [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 63 DC A7 66 34 [2019-09-30 08:18:43] Elapsed: 51 [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 63 DC A7 66 34 [2019-09-30 08:18:43] Elapsed: 46 [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 63 DC A7 66 34 [2019-09-30 08:18:43] Elapsed: 45 [2019-09-30 08:18:43] Sending packet (10 repeats): [2019-09-30 08:18:43] 00 DB E1 24 63 DC A7 66 34 [2019-09-30 08:18:43] Elapsed: 47 [2019-09-30 08:18:43] Patching existing state with: {"hue":30} [2019-09-30 08:18:43] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:18:43] Raw data: 88001500 30000800 [2019-09-30 08:18:43] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:18:43] Raw data: 88001500 30000800 [2019-09-30 08:18:43] [2019-09-30 08:18:43] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:18:43] Raw data: 88001500 30000800 [2019-09-30 08:18:43] [2019-09-30 08:18:43] Clearing fields. Current state: {} [2019-09-30 08:18:43] Raw data: 00000000 00000000 [2019-09-30 08:18:43] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:18:43] Raw data: 88001500 30000800 [2019-09-30 08:18:43] Result: {} [2019-09-30 08:18:43] Raw data: 00000000 00000000 [2019-09-30 08:18:44] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:18:44] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:19:30] Mc: milight/commands/0x1/rgb_cct1ptu [2019-09-30 08:19:30] E[2019-09-30 08:23:53] Eext packet, 1 packets in queue [2019-09-30 08:23:53] Sending packet (10 repeats): [2019-09-30 08:23:53] 00 DB E1 24 63 DF FF 66 8B [2019-09-30 08:23:53] E[2019-09-30 08:24:11] MqttClient - Got message on topic: milight/commands/0x3/rgb_cct/1 [2019-09-30 08:24:11] MqttClient - device 0003, group 1 [2019-09-30 08:24:11] Flushing dirty state for 0x0003 / 1 / rgb_cct [2019-09-30 08:24:11] Enqueuing packet [2019-09-30 08:24:11] Enqueuing packet [2019-09-30 08:24:11] Switching to next packet, 2 packets in queue [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 63 E1 FC 66 8C [2019-09-30 08:24:11] Elapsed: 48 [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 63 E1 FC 66 8C [2019-09-30 08:24:11] Elapsed: 46 [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 63 E1 FC 66 8C [2019-09-30 08:24:11] Elapsed: 46 [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 63 E1 FC 66 8C [2019-09-30 08:24:11] Elapsed: 46 [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 63 E1 FC 66 8C [2019-09-30 08:24:11] Elapsed: 45 [2019-09-30 08:24:11] Patching existing state with: {"hue":25} [2019-09-30 08:24:11] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:24:11] Raw data: 88001200 30000800 [2019-09-30 08:24:11] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:24:11] Raw data: 88001200 30000800 [2019-09-30 08:24:11] [2019-09-30 08:24:11] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:24:11] Raw data: 88001200 30000800 [2019-09-30 08:24:11] [2019-09-30 08:24:11] Clearing fields. Current state: {} [2019-09-30 08:24:11] Raw data: 00000000 00000000 [2019-09-30 08:24:11] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:24:11] Raw data: 88001200 30000800 [2019-09-30 08:24:11] Result: {} [2019-09-30 08:24:11] Raw data: 00000000 00000000 [2019-09-30 08:24:11] MqttClient - publishing update to milight/state/0x3/rgb_cct/1 [2019-09-30 08:24:11] Switching to next packet, 1 packets in queue [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 61 C5 FD 66 5B [2019-09-30 08:24:11] Elapsed: 47 [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 61 C5 FD 66 5B [2019-09-30 08:24:11] Elapsed: 46 [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 61 C5 FD 66 5B [2019-09-30 08:24:11] Elapsed: 46 [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 61 C5 FD 66 5B [2019-09-30 08:24:11] Elapsed: 46 [2019-09-30 08:24:11] Sending packet (10 repeats): [2019-09-30 08:24:11] 00 DB E1 22 61 C5 FD 66 5B [2019-09-30 08:24:11] Elapsed: 46 [2019-09-30 08:24:11] Patching existing state with: {"saturation":16} [2019-09-30 08:24:11] GroupState::patch: State changed: {} [2019-09-30 08:24:11] Raw data: 00100000 30000100 [2019-09-30 08:24:11] Patching existing state with: : {} [2019-09-30 08:24:11] Raw data: 00100000 30000100 [2019-09-30 08:24:11] [2019-09-30 08:24:11] Patching existing state with: : {} [2019-09-30 08:24:11] Raw data: 00100000 30000100 [2019-09-30 08:24:11] [2019-09-30 08:24:11] Clearing fields. Current state: {} [2019-09-30 08:24:11] Raw data: 00000000 00000000 [2019-09-30 08:24:11] Other state: {} [2019-09-30 08:24:11] Raw data: 00100000 30000100 [2019-09-30 08:24:11] Result: {} [2019-09-30 08:24:11] Raw data: 00000000 00000000 [2019-09-30 08:24:12] MqttClient - publishing update to milight/state/0x3/rgb_cct/1 [2019-09-30 08:24:16] Enqueuing packet [2019-09-30 08:24:16] Switching to next packet, 1 packets in queue [2019-09-30 08:24:16] Sending packet (10 repeats): [2019-09-30 08:24:16] 00 DB E1 22 63 DE EA 66 77 [2019-09-30 08:24:16] Elapsed: 46 [2019-09-30 08:24:16] Sending packet (10 repeats): [2019-09-30 08:24:16] 00 DB E1 22 63 DE EA 66 77 [2019-09-30 08:24:16] Elapsed: 47 [2019-09-30 08:24:16] Sending packet (10 repeats): [2019-09-30 08:24:16] 00 DB E1 22 63 DE EA 66 77 [2019-09-30 08:24:16] Elapsed: 46 [2019-09-30 08:24:16] Sending packet (10 repeats): [2019-09-30 08:24:16] 00 DB E1 22 63 DE EA 66 77 [2019-09-30 08:24:16] Elapsed: 46 [2019-09-30 08:24:16] Sending packet (10 repeats): [2019-09-30 08:24:16] 00 DB E1 22 63 DE EA 66 77 [2019-09-30 08:24:16] Elapsed: 46 [2019-09-30 08:24:16] Patching existing state with: {"hue":27} [2019-09-30 08:24:16] GroupState::patch: State changed: {"bulb_mode":"color","hue":27} [2019-09-30 08:24:16] Raw data: 88001300 30000800 [2019-09-30 08:24:16] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:24:16] Raw data: 88001300 30000800 [2019-09-30 08:24:16] [2019-09-30 08:24:16] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:24:16] Raw data: 88001300 30000800 [2019-09-30 08:24:16] [2019-09-30 08:24:16] Clearing fields. Current state: {} [2019-09-30 08:24:16] Raw data: 00000000 00000000 [2019-09-30 08:24:16] Other state: {"bulb_mode":"color","hue":27} [2019-09-30 08:24:16] Raw data: 88001300 30000800 [2019-09-30 08:24:16] Result: {} [2019-09-30 08:24:16] Raw data: 00000000 00000000 [2019-09-30 08:24:16] MqttClient - publishing update to milight/state/0x3/rgb_cct/1 [2019-09-30 08:24:19] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:24:19] MqttClient - device 0001, group 1 [2019-09-30 08:24:19] Enqueuing packet [2019-09-30 08:24:19] Enqueuing packet [2019-09-30 08:24:19] Switching to next packet, 2 packets in queue [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 63 DC EB 66 78 [2019-09-30 08:24:19] Elapsed: 48 [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 63 DC EB 66 78 [2019-09-30 08:24:19] Elapsed: 47 [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 63 DC EB 66 78 [2019-09-30 08:24:19] Elapsed: 46 [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 63 DC EB 66 78 [2019-09-30 08:24:19] Elapsed: 52 [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 63 DC EB 66 78 [2019-09-30 08:24:19] Elapsed: 46 [2019-09-30 08:24:19] Patching existing state with: {"hue":30} [2019-09-30 08:24:19] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:24:19] Raw data: 88001500 30000800 [2019-09-30 08:24:19] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:24:19] Raw data: 88001500 30000800 [2019-09-30 08:24:19] [2019-09-30 08:24:19] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:24:19] Raw data: 88001500 30000800 [2019-09-30 08:24:19] [2019-09-30 08:24:19] Clearing fields. Current state: {} [2019-09-30 08:24:19] Raw data: 00000000 00000000 [2019-09-30 08:24:19] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:24:19] Raw data: 88001500 30000800 [2019-09-30 08:24:19] Result: {} [2019-09-30 08:24:19] Raw data: 00000000 00000000 [2019-09-30 08:24:19] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:24:19] Switching to next packet, 1 packets in queue [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 61 C8 E8 66 5F [2019-09-30 08:24:19] Elapsed: 46 [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 61 C8 E8 66 5F [2019-09-30 08:24:19] Elapsed: 53 [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 61 C8 E8 66 5F [2019-09-30 08:24:19] Elapsed: 46 [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 61 C8 E8 66 5F [2019-09-30 08:24:19] Elapsed: 46 [2019-09-30 08:24:19] Sending packet (10 repeats): [2019-09-30 08:24:19] 00 DB E1 24 61 C8 E8 66 5F [2019-09-30 08:24:19] Elapsed: 45 [2019-09-30 08:24:19] Patching existing state with: {"saturation":11} [2019-09-30 08:24:19] GroupState::patch: State changed: {} [2019-09-30 08:24:19] Raw data: 000B0000 30000100 [2019-09-30 08:24:19] Patching existing state with: : {} [2019-09-30 08:24:19] Raw data: 000B0000 30000100 [2019-09-30 08:24:19] [2019-09-30 08:24:19] Patching existing state with: : {} [2019-09-30 08:24:19] Raw data: 000B0000 30000100 [2019-09-30 08:24:19] [2019-09-30 08:24:19] Clearing fields. Current state: {} [2019-09-30 08:24:19] Raw data: 00000000 00000000 [2019-09-30 08:24:19] Other state: {} [2019-09-30 08:24:19] Raw data: 000B0000 30000100 [2019-09-30 08:24:19] Result: {} [2019-09-30 08:24:19] Raw data: 00000000 00000000 [2019-09-30 08:24:20] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:24:21] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:24:24] Enqueuing packet [2019-09-30 08:24:24] Switching to next packet, 1 packets in queue [2019-09-30 08:24:24] Sending packet (10 repeats): [2019-09-30 08:24:24] 00 DB E1 24 63 DF E9 66 75 [2019-09-30 08:24:24] Elapsed: 46 [2019-09-30 08:24:24] Sending packet (10 repeats): [2019-09-30 08:24:24] 00 DB E1 24 63 DF E9 66 75 [2019-09-30 08:24:24] Elapsed: 47 [2019-09-30 08:24:24] Sending packet (10 repeats): [2019-09-30 08:24:24] 00 DB E1 24 63 DF E9 66 75 [2019-09-30 08:24:24] Elapsed: 48 [2019-09-30 08:24:24] Sending packet (10 repeats): [2019-09-30 08:24:24] 00 DB E1 24 63 DF E9 66 75 [2019-09-30 08:24:24] Elapsed: 47 [2019-09-30 08:24:24] Sending packet (10 repeats): [2019-09-30 08:24:24] 00 DB E1 24 63 DF E9 66 75 [2019-09-30 08:24:24] Elapsed: 46 [2019-09-30 08:24:24] Patching existing state with: {"hue":28} [2019-09-30 08:24:24] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:24:24] Raw data: 88001400 30000800 [2019-09-30 08:24:24] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:24:24] Raw data: 88001400 30000800 [2019-09-30 08:24:24] [2019-09-30 08:24:24] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:24:24] Raw data: 88001400 30000800 [2019-09-30 08:24:24] [2019-09-30 08:24:24] Clearing fields. Current state: {} [2019-09-30 08:24:24] Raw data: 00000000 00000000 [2019-09-30 08:24:24] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:24:24] Raw data: 88001400 30000800 [2019-09-30 08:24:24] Result: {} [2019-09-30 08:24:24] Raw data: 00000000 00000000 [2019-09-30 08:24:24] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:24:42] MqttClient - Got message on topic: milight/commands/0x3/rgb_cct/1 [2019-09-30 08:24:42] MqttClient - device 0003, group 1 [2019-09-30 08:24:42] Flushing dirty state for 0x0003 / 1 / rgb_cct [2019-09-30 08:24:42] Enqueuing packet [2019-09-30 08:24:42] Enqueuing packet [2019-09-30 08:24:42] Switching to next packet, 2 packets in queue [2019-09-30 08:24:42] Sending packet (10 repeats): [2019-09-30 08:24:42] 00 DB E1 22 63 E1 E6 66 76 [2019-09-30 08:24:42] Elapsed: 47 [2019-09-30 08:24:42] Sending packet (10 repeats): [2019-09-30 08:24:42] 00 DB E1 22 63 E1 E6 66 76 [2019-09-30 08:24:42] repeats): [2019-09-30 08:24:42] 00 DB E1 22 63 E1 E6 Elapsed: 48 [2019-09-30 08:24:42] Sending packet (10 Elapsed: 46 [2019-09-30 08:24:42] Sending packet (10 66 76 [2019-09-30 08:24:42] tate with: {"hue":25} [2019-09-30 08:24:42] GroupStata: 88001200 30000800 [2019-09-30 08:24:42] Patching ex":"color","hue":25} [2019-09-30 08:24:42] Raw data: 88ting state with: : {"bulb_mode""0.0"at0e [2019-09-30 08:24:42] Sets in queue [2019-09-30 08:24:42] Sending packet (10r66 45 [2019-09-30 08:24:42] Elapsed: 48 [2019-09-30 08:24:42] Sending par66 45 [2019-09-30 08:24:42] Elapsed: 47 [2019-09-30 08:24:42] Sending par66 45 [2019-09-30 08:24:42] Elapsed: 47 [2019-09-30 08:24:42] Sending par66 45 [2019-09-30 08:24:42] Elapsed: 46 [2019-09-30 08:24:42] Sending par66 45 [2019-09-30 08:24:42] Elapsed: 47 [2019-09-30 08:24:42] Patching etoupState::patch: State changed:{P{ :0 [2019-09-30 08:24:42] [2019-09-30 08:24:42] Clearing fields. Current sa0000 [2019-09-30 08:24:42] Other state: {} [2019-09-30 08:24:43] Raw data:0wMqttClient - publishing update to milight/state/0x3/rgb_cct/1 [2019-09-30 08:24:47] EeeDEr6Er6Er6Er6Etemai"8t"0.0"at0e [2019-09-30 08:24:50] M[2019-09-30 08:39:40] Eext packet, 1 packets in queue [2019-09-30 08:39:40] Sending packet (10 repeats): [2019-09-30 08:39:40] 00 DB E1 2B 66 D1 13 66 8B [2019-09-30 08:39:40] Erepeats): [2019-09-30 08:39:40] 00 DB E1 2B 66 D1 13 66 8B [2019-09-30 08:39:40] E[2019-09-30 08:39:42] Eext packet, 1 packets in queue [2019-09-30 08:39:42] Sending packet (10 repeats): [2019-09-30 08:39:42] 00 DB E1 2B 66 CA 10 66 75 [2019-09-30 08:39:42] Elapsed: 49 [2019-09-30 08:39:42] Sending packet (10 r66 75 [2019-09-30 08:39:42] Elapsed: 47 [2019-09-30 08:39:42] Sending parepeats): [2019-09-30 08:39:42] 00 DB E1 2B 66 CA 10 66 75 [2019-09-30 08:39:42] Elapsed: 46 [2019-09-30 08:39:42] Sending packet (10 r66 75 [2019-09-30 08:39:42] Elapsed: 46 [2019-09-30 08:39:42] Sending parepeats): [2019-09-30 08:39:42] 00 DB E1 2B 66 CA 10 66 75 [2019-09-30 08:39:43] Etate with: {"state":"OFF"} [2019-09-30 08:39:43] GroupState::patch: State changed: {"state":"OFF"} [2019-09-30 08:39:43] Raw data: 40000000 70000000 [2019-09-30 08:39:43] Patching existing statdata: 40000000 70000000 [2019-09-30 08:39:43] [2019-09-30 08:39:43] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:39:43] Raw data: 40000000 70000000 [2019-09-30 08:39:43] [2019-09-30 08:39:43] Clearing fields. Curren[2019-09-30 08:39:45] Erepeats): [2019-09-30 08:39:45] 00 DB E1 2B 66 D1 11 66 89 [2019-09-30 08:39:45] Elapsed: 46 [2019-09-30 08:39:45] Sending packet (10 repeats): [2019-09-30 08:39:45] 00 DB E1 2B 66 D1 11 66 89 [2019-09-30 08:39:45] Elapsed: 46 [2019-09-30 08:39:45] Sending packet (10 repeats): [2019-09-30 08:39:45] 00 DB E1 2B 66 D1 11 66 89 [2019-09-30 08:39:45] Elapsed: 47 [2019-09-30 08:39:45] Patching existing state with: {"state":"ON"} [2019-09-30 08:39:45] GroupState::patch: State changed: {"state":"ON"} [2019-09-30 08:39:45] Raw data: 40000001 70000000 [2019-09-30 08:39:45] Patching existing state with: : {"state":"ON"} [2019-09-30 08:39:45] Raw data: 40000001 70000000 [2019-09-30 08:39:45] [2019-09-30 08:39:45] Patching existing state with: : {"state":"ON"} [2019-09-30 08:39:45] Raw data: 40000001 70000000 [2019-09-30 08:39:45] [2019-09-30 08:39:45] Clearing fields. Current state: {} [2019-09-30 08:39:45] Raw data: 00000000 00000000 [2019-09-30 08:39:45] Other state: {"state":"ON"} [2019-09-30 08:39:45] Raw data: 40000001 70000000 [2019-09-30 08:39:45] Result: {} [2019-09-30 08:39:45] Raw data: 00000000 00000000 [2019-09-30 08:39:45] MqttClient - publishing update to milight/state/0x8/rgb_cct/1 [2019-09-30 08:39:47] Enqueuing packet [2019-09-30 08:39:47] Switching to next packet, 1 packets in queue [2019-09-30 08:39:47] Sending packet (10 repeats): [2019-09-30 08:39:47] 00 DB E1 2B 66 CA 0E 66 73 [2019-09-30 08:39:47] Elapsed: 46 [2019-09-30 08:39:47] Sending packet (10 repeats): [2019-09-30 08:39:47] 00 DB E1 2B 66 CA 0E 66 73 [2019-09-30 08:39:47] Elapsed: 47 [2019-09-30 08:39:47] Sending packet (10 repeats): [2019-09-30 08:39:47] 00 DB E1 2B 66 CA 0E 66 73 [2019-09-30 08:39:47] Elapsed: 47 [2019-09-30 08:39:47] Sending packet (10 repeats): [2019-09-30 08:39:47] 00 DB E1 2B 66 CA 0E 66 73 [2019-09-30 08:39:47] Elapsed: 47 [2019-09-30 08:39:47] Sending packet (10 repeats): [2019-09-30 08:39:47] 00 DB E1 2B 66 CA 0E 66 73 [2019-09-30 08:39:47] Elapsed: 46 [2019-09-30 08:39:47] Patching existing state with: {"state":"OFF"} [2019-09-30 08:39:47] GroupState::patch: State changed: {"state":"OFF"} [2019-09-30 08:39:47] Raw data: 40000000 70000000 [2019-09-30 08:39:47] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:39:47] Raw data: 40000000 70000000 [2019-09-30 08:39:47] [2019-09-30 08:39:47] Patching existing state with: : {"state":"OFF"} [2019-09-30 08:39:47] Raw data: 40000000 70000000 [2019-09-30 08:39:47] [2019-09-30 08:39:47] Clearing fields. Current state: {} [2019-09-30 08:39:47] Raw data: 00000000 00000000 [2019-09-30 08:39:47] Other state: {"state":"OFF"} [2019-09-30 08:39:47] Raw data: 40000000 70000000 [2019-09-30 08:39:47] Result: {} [2019-09-30 08:39:47] Raw data: 00000000 00000000 [2019-09-30 08:39:47] MqttClient - publishing update to milight/state/0x8/rgb_cct/1 [2019-09-30 08:39:49] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:39:49] MqttClient - device 0001, group 1 [2019-09-30 08:39:50] Enqueuing packet [2019-09-30 08:39:50] Switching to next packet, 1 packets in queue [2019-09-30 08:39:50] Sending packet (10 repeats): [2019-09-30 08:39:50] 00 DB E1 2B 66 D1 0F 66 77 [2019-09-30 08:39:50] Elapsed: 46 [2019-09-30 08:39:50] Sending packet (10 repeats): [2019-09-30 08:39:50] 00 DB E1 2B 66 D1 0F 66 77 [2019-09-30 08:39:50] Elapsed: 47 [2019-09-30 08:39:50] Sending packet (10 repeats): [2019-09-30 08:39:50] 00 DB E1 2B 66 D1 0F 66 77 [2019-09-30 08:39:50] Elapsed: 46 [2019-09-30 08:39:50] Sending packet (10 repeats): [2019-09-30 08:39:50] 00 DB E1 2B 66 D1 0F 66 77 [2019-09-30 08:39:50] Elapsed: 46 [2019-09-30 08:39:50] Sending packet (10 repeats): [2019-09-30 08:39:50] 00 DB E1 2B 66 D1 0F 66 77 [2019-09-30 08:39:50] Elapsed: 45 [2019-09-30 08:39:50] Patching existing state with: {"state":"ON"} [2019-09-30 08:39:50] GroupState::patch: State changed: {"state":"ON"} [2019-09-30 08:39:50] Raw data: 40000001 70000000 [2019-09-30 08:39:50] Patching existing state with: : {"state":"ON"} [2019-09-30 08:39:50] Raw data: 40000001 70000000 [2019-09-30 08:39:50] [2019-09-30 08:39:50] Patching existing state with: : {"state":"ON"} [2019-09-30 08:39:50] Raw data: 40000001 70000000 [2019-09-30 08:39:50] [2019-09-30 08:39:50] Clearing fields. Current state: {} [2019-09-30 08:39:50] Raw data: 00000000 00000000 [2019-09-30 08:39:50] Other state: {"state":"ON"} [2019-09-30 08:39:50] Raw data: 40000001 70000000 [2019-09-30 08:39:50] Result: {} [2019-09-30 08:39:50] Raw data: 00000000 00000000 [2019-09-30 08:39:50] MqttClient - publishing update to milight/state/0x8/rgb_cct/1 [2019-09-30 08:40:20] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:40:20] MqttClient - device 0001, group 1 [2019-09-30 08:40:51] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:40:51] MqttClient - device 0001, group 1 [2019-09-30 08:41:53] Mc1pMc: milight/commands/0x1/rgb_cct1p 1 [2019-09-30 08:41:53] Enqueuing packet [2019-09-30 08:41:53] Enqueuing packet [2019-09-30 08:41:53] Switching to next packet, 2 packets in queue [2019-09-30 08:41:53] Sending packet ( 0C 66 1B [2019-09-30 08:41:53] Elapsed: 46 [2019-09-30 08:41:53] Sending packet (10 r6Elapsed: 48 [2019-09-30 08:41:53] Sending packet (10 repeats): [2019-09-30 08:41:53] 00 DB E1 24 63 DE 0C 66 1B [2019-09-30 08:41:53] Er6Er6Etemai"8t"0.0"at0e [2019-09-30 08:41:53] Sets in queue [2019-09-30 08:41:54] Sending packet (10r6Er6Er6Er6Er6Eto{Patching existing state with: : { [2019-09-30 08:42:24] Patching existing state with::0a00wiisp Er6Er6Er6Er6Etemai"8t"0.0"at0a17Er6Er6Er6Er6Eto{P{ :0a00wMoF/MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:42:24] MqttClient - device 0001, group 1 [2019-09-30 08:42:24] Enqueuing packet [2019-09-30 08:42:24] Enqueuing packe[2019-09-30 08:42:27] Enqueuing packet [2019-09-30 08:42:27] Switching to next packet, 1 packets in queue [2019-09-30 08:42:27] Sending packet (10 repeats): [2019-09-30 08:42:27] 00 DB E1 24 63 DC 76 66 03 [2019-09-30 08:42:27] Elapsed: 52 [2019-09-30 08:42:27] Sending packet (10 repeats): [2019-09-30 08:42:27] 00 DB E1 24 63 DC 76 66 03 [2019-09-30 08:42:27] Elapsed: 47 [2019-09-30 08:42:27] Sending packet (10 repeats): [2019-09-30 08:42:27] 00 DB E1 24 63 DC 76 66 03 [2019-09-30 08:42:27] Elapsed: 46 [2019-09-30 08:42:27] Sending packet (10 repeats): [2019-09-30 08:42:27] 00 DB E1 24 63 DC 76 66 03 [2019-09-30 08:42:27] Elapsed: 45 [2019-09-30 08:42:27] Sending packet (10 repeats): [2019-09-30 08:42:27] 00 DB E1 24 63 DC 76 66 03 [2019-09-30 08:42:27] Elapsed: 53 [2019-09-30 08:42:27] Patching existing state with: {"hue":30} [2019-09-30 08:42:27] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:42:27] Raw data: 88001500 30000800 [2019-09-30 08:42:27] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:42:27] Raw data: 88001500 30000800 [2019-09-30 08:42:27] [2019-09-30 08:42:27] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:42:27] Raw data: 88001500 30000800 [2019-09-30 08:42:27] [2019-09-30 08:42:27] Clearing fields. Current state: {} [2019-09-30 08:42:27] Raw data: 00000000 00000000 [2019-09-30 08:42:27] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:42:27] Raw data: 88001500 30000800 [2019-09-30 08:42:27] Result: {} [2019-09-30 08:42:27] Raw data: 00000000 00000000 [2019-09-30 08:42:27] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:42:29] Enqueuing packet [2019-09-30 08:42:29] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:42:29] Switching to next packet, 1 packets in queue [2019-09-30 08:42:29] Sending packet (10 repeats): [2019-09-30 08:42:29] 00 DB E1 24 63 DF 77 66 03 [2019-09-30 08:42:29] Elapsed: 48 [2019-09-30 08:42:29] Sending packet (10 repeats): [2019-09-30 08:42:29] 00 DB E1 24 63 DF 77 66 03 [2019-09-30 08:42:29] Elapsed: 45 [2019-09-30 08:42:29] Sending packet (10 repeats): [2019-09-30 08:42:29] 00 DB E1 24 63 DF 77 66 03 [2019-09-30 08:42:30] Elapsed: 46 [2019-09-30 08:42:30] Sending packet (10 repeats): [2019-09-30 08:42:30] 00 DB E1 24 63 DF 77 66 03 [2019-09-30 08:42:30] Elapsed: 48 [2019-09-30 08:42:30] Sending packet (10 repeats): [2019-09-30 08:42:30] 00 DB E1 24 63 DF 77 66 03 [2019-09-30 08:42:30] Elapsed: 46 [2019-09-30 08:42:30] Patching existing state with: {"hue":28} [2019-09-30 08:42:30] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:42:30] Raw data: 88001400 30000800 [2019-09-30 08:42:30] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:42:30] Raw data: 88001400 30000800 [2019-09-30 08:42:30] [2019-09-30 08:42:30] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:42:30] Raw data: 88001400 30000800 [2019-09-30 08:42:30] [2019-09-30 08:42:30] Clearing fields. Current state: {} [2019-09-30 08:42:30] Raw data: 00000000 00000000 [2019-09-30 08:42:30] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:42:30] Raw data: 88001400 30000800 [2019-09-30 08:42:30] Result: {} [2019-09-30 08:42:30] Raw data: 00000000 00000000 [2019-09-30 08:42:30] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:42:55] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:42:55] MqttClient - device 0001, group 1 [2019-09-30 08:42:55] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:42:55] Enqueuing packet [2019-09-30 08:42:55] Enqueuing packet [2019-09-30 08:42:55] Switching to next packet, 2 packets in queue [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 63 DF 74 66 04 [2019-09-30 08:42:55] Elapsed: 47 [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 63 DF 74 66 04 [2019-09-30 08:42:55] Elapsed: 48 [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 63 DF 74 66 04 [2019-09-30 08:42:55] Elapsed: 45 [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 63 DF 74 66 04 [2019-09-30 08:42:55] Elapsed: 46 [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 63 DF 74 66 04 [2019-09-30 08:42:55] Elapsed: 45 [2019-09-30 08:42:55] Patching existing state with: {"hue":28} [2019-09-30 08:42:55] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:42:55] Raw data: 88001400 30000800 [2019-09-30 08:42:55] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:42:55] Raw data: 88001400 30000800 [2019-09-30 08:42:55] [2019-09-30 08:42:55] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:42:55] Raw data: 88001400 30000800 [2019-09-30 08:42:55] [2019-09-30 08:42:55] Clearing fields. Current state: {} [2019-09-30 08:42:55] Raw data: 00000000 00000000 [2019-09-30 08:42:55] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:42:55] Raw data: 88001400 30000800 [2019-09-30 08:42:55] Result: {} [2019-09-30 08:42:55] Raw data: 00000000 00000000 [2019-09-30 08:42:55] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:42:55] Switching to next packet, 1 packets in queue [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 61 C6 75 66 6A [2019-09-30 08:42:55] Elapsed: 48 [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 61 C6 75 66 6A [2019-09-30 08:42:55] Elapsed: 46 [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 61 C6 75 66 6A [2019-09-30 08:42:55] Elapsed: 46 [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 61 C6 75 66 6A [2019-09-30 08:42:55] Elapsed: 47 [2019-09-30 08:42:55] Sending packet (10 repeats): [2019-09-30 08:42:55] 00 DB E1 24 61 C6 75 66 6A [2019-09-30 08:42:55] Elapsed: 46 [2019-09-30 08:42:55] Patching existing state with: {"saturation":13} [2019-09-30 08:42:55] GroupState::patch: State changed: {} [2019-09-30 08:42:55] Raw data: 000D0000 30000100 [2019-09-30 08:42:55] Patching existing state with: : {} [2019-09-30 08:42:55] Raw data: 000D0000 30000100 [2019-09-30 08:42:55] [2019-09-30 08:42:55] Patching existing state with: : {} [2019-09-30 08:42:55] Raw data: 000D0000 30000100 [2019-09-30 08:42:55] [2019-09-30 08:42:55] Clearing fields. Current state: {} [2019-09-30 08:42:55] Raw data: 00000000 00000000 [2019-09-30 08:42:55] Other state: {} [2019-09-30 08:42:55] Raw data: 000D0000 30000100 [2019-09-30 08:42:55] Result: {} [2019-09-30 08:42:55] Raw data: 00000000 00000000 [2019-09-30 08:42:56] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:42:57] Enqueuing packet [2019-09-30 08:42:57] Switching to next packet, 1 packets in queue [2019-09-30 08:42:57] Sending packet (10 repeats): [2019-09-30 08:42:57] 00 DB E1 24 63 DE 82 66 01 [2019-09-30 08:42:57] Elapsed: 47 [2019-09-30 08:42:57] Sending packet (10 repeats): [2019-09-30 08:42:57] 00 DB E1 24 63 DE 82 66 01 [2019-09-30 08:42:57] Elapsed: 48 [2019-09-30 08:42:57] Sending packet (10 repeats): [2019-09-30 08:42:57] 00 DB E1 24 63 DE 82 66 01 [2019-09-30 08:42:57] Elapsed: 46 [2019-09-30 08:42:57] Sending packet (10 repeats): [2019-09-30 08:42:57] 00 DB E1 24 63 DE 82 66 01 [2019-09-30 08:42:57] Elapsed: 46 [2019-09-30 08:42:57] Sending packet (10 repeats): [2019-09-30 08:42:57] 00 DB E1 24 63 DE 82 66 01 [2019-09-30 08:42:57] Elapsed: 47 [2019-09-30 08:42:57] Patching existing state with: {"hue":27} [2019-09-30 08:42:57] GroupState::patch: State changed: {"bulb_mode":"color","hue":27} [2019-09-30 08:42:57] Raw data: 88001300 30000800 [2019-09-30 08:42:57] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:42:57] Raw data: 88001300 30000800 [2019-09-30 08:42:57] [2019-09-30 08:42:57] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:42:57] Raw data: 88001300 30000800 [2019-09-30 08:42:57] [2019-09-30 08:42:57] Clearing fields. Current state: {} [2019-09-30 08:42:57] Raw data: 00000000 00000000 [2019-09-30 08:42:57] Other state: {"bulb_mode":"color","hue":27} [2019-09-30 08:42:57] Raw data: 88001300 30000800 [2019-09-30 08:42:57] Result: {} [2019-09-30 08:42:57] Raw data: 00000000 00000000 [2019-09-30 08:42:57] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:43:00] Enqueuing packet [2019-09-30 08:43:00] Switching to next packet, 1 packets in queue [2019-09-30 08:43:00] Sending packet (10 repeats): [2019-09-30 08:43:00] 00 DB E1 24 63 E1 83 66 01 [2019-09-30 08:43:00] Elapsed: 46 [2019-09-30 08:43:00] Sending packet (10 repeats): [2019-09-30 08:43:00] 00 DB E1 24 63 E1 83 66 01 [2019-09-30 08:43:00] Elapsed: 46 [2019-09-30 08:43:00] Sending packet (10 repeats): [2019-09-30 08:43:00] 00 DB E1 24 63 E1 83 66 01 [2019-09-30 08:43:00] Elapsed: 46 [2019-09-30 08:43:00] Sending packet (10 repeats): [2019-09-30 08:43:00] 00 DB E1 24 63 E1 83 66 01 [2019-09-30 08:43:00] Elapsed: 48 [2019-09-30 08:43:00] Sending packet (10 repeats): [2019-09-30 08:43:00] 00 DB E1 24 63 E1 83 66 01 [2019-09-30 08:43:00] Elapsed: 46 [2019-09-30 08:43:00] Patching existing state with: {"hue":25} [2019-09-30 08:43:00] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:43:00] Raw data: 88001200 30000800 [2019-09-30 08:43:00] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:43:00] Raw data: 88001200 30000800 [2019-09-30 08:43:00] [2019-09-30 08:43:00] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:43:00] Raw data: 88001200 30000800 [2019-09-30 08:43:00] [2019-09-30 08:43:00] Clearing fields. Current state: {} [2019-09-30 08:43:00] Raw data: 00000000 00000000 [2019-09-30 08:43:00] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:43:00] Raw data: 88001200 30000800 [2019-09-30 08:43:00] Result: {} [2019-09-30 08:43:00] Raw data: 00000000 00000000 [2019-09-30 08:43:00] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:43:26] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:43:26] MqttClient - device 0001, group 1 [2019-09-30 08:43:26] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:43:26] Enqueuing packet [2019-09-30 08:43:26] Enqueuing packet [2019-09-30 08:43:26] Switching to next packet, 2 packets in queue [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 63 E1 80 66 02 [2019-09-30 08:43:26] Elapsed: 48 [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 63 E1 80 66 02 [2019-09-30 08:43:26] Elapsed: 51 [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 63 E1 80 66 02 [2019-09-30 08:43:26] Elapsed: 47 [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 63 E1 80 66 02 [2019-09-30 08:43:26] Elapsed: 46 [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 63 E1 80 66 02 [2019-09-30 08:43:26] Elapsed: 46 [2019-09-30 08:43:26] Patching existing state with: {"hue":25} [2019-09-30 08:43:26] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:43:26] Raw data: 88001200 30000800 [2019-09-30 08:43:26] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:43:26] Raw data: 88001200 30000800 [2019-09-30 08:43:26] [2019-09-30 08:43:26] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:43:26] Raw data: 88001200 30000800 [2019-09-30 08:43:26] [2019-09-30 08:43:26] Clearing fields. Current state: {} [2019-09-30 08:43:26] Raw data: 00000000 00000000 [2019-09-30 08:43:26] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:43:26] Raw data: 88001200 30000800 [2019-09-30 08:43:26] Result: {} [2019-09-30 08:43:26] Raw data: 00000000 00000000 [2019-09-30 08:43:26] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:43:26] Switching to next packet, 1 packets in queue [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 61 C6 81 66 D6 [2019-09-30 08:43:26] Elapsed: 47 [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 61 C6 81 66 D6 [2019-09-30 08:43:26] Elapsed: 47 [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 61 C6 81 66 D6 [2019-09-30 08:43:26] Elapsed: 46 [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 61 C6 81 66 D6 [2019-09-30 08:43:26] Elapsed: 52 [2019-09-30 08:43:26] Sending packet (10 repeats): [2019-09-30 08:43:26] 00 DB E1 24 61 C6 81 66 D6 [2019-09-30 08:43:26] Elapsed: 46 [2019-09-30 08:43:26] Patching existing state with: {"saturation":13} [2019-09-30 08:43:26] GroupState::patch: State changed: {} [2019-09-30 08:43:26] Raw data: 000D0000 30000100 [2019-09-30 08:43:26] Patching existing state with: : {} [2019-09-30 08:43:26] Raw data: 000D0000 30000100 [2019-09-30 08:43:26] [2019-09-30 08:43:26] Patching existing state with: : {} [2019-09-30 08:43:26] Raw data: 000D0000 30000100 [2019-09-30 08:43:26] [2019-09-30 08:43:26] Clearing fields. Current state: {} [2019-09-30 08:43:26] Raw data: 00000000 00000000 [2019-09-30 08:43:26] Other state: {} [2019-09-30 08:43:26] Raw data: 000D0000 30000100 [2019-09-30 08:43:26] Result: {} [2019-09-30 08:43:26] Raw data: 00000000 00000000 [2019-09-30 08:43:27] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:43:31] Enqueuing packet [2019-09-30 08:43:31] Switching to next packet, 1 packets in queue [2019-09-30 08:43:31] Sending packet (10 repeats): [2019-09-30 08:43:31] 00 DB E1 24 63 E1 7E 66 10 [2019-09-30 08:43:31] Elapsed: 47 [2019-09-30 08:43:31] Sending packet (10 repeats): [2019-09-30 08:43:31] 00 DB E1 24 63 E1 7E 66 10 [2019-09-30 08:43:31] Elapsed: 47 [2019-09-30 08:43:31] Sending packet (10 repeats): [2019-09-30 08:43:31] 00 DB E1 24 63 E1 7E 66 10 [2019-09-30 08:43:31] Elapsed: 46 [2019-09-30 08:43:31] Sending packet (10 repeats): [2019-09-30 08:43:31] 00 DB E1 24 63 E1 7E 66 10 [2019-09-30 08:43:31] Elapsed: 51 [2019-09-30 08:43:31] Sending packet (10 repeats): [2019-09-30 08:43:31] 00 DB E1 24 63 E1 7E 66 10 [2019-09-30 08:43:31] Elapsed: 48 [2019-09-30 08:43:31] Patching existing state with: {"hue":25} [2019-09-30 08:43:31] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:43:31] Raw data: 88001200 30000800 [2019-09-30 08:43:31] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:43:31] Raw data: 88001200 30000800 [2019-09-30 08:43:31] [2019-09-30 08:43:31] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:43:31] Raw data: 88001200 30000800 [2019-09-30 08:43:31] [2019-09-30 08:43:31] Clearing fields. Current state: {} [2019-09-30 08:43:31] Raw data: 00000000 00000000 [2019-09-30 08:43:31] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:43:31] Raw data: 88001200 30000800 [2019-09-30 08:43:31] Result: {} [2019-09-30 08:43:31] Raw data: 00000000 00000000 [2019-09-30 08:43:31] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:43:57] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:43:57] MqttClient - device 0001, group 1 [2019-09-30 08:43:57] Enqueuing packet [2019-09-30 08:43:57] Enqueuing packet [2019-09-30 08:43:57] Switching to next packet, 2 packets in queue [2019-09-30 08:43:57] Sending packet (10 repeats): [2019-09-30 08:43:57] 00 DB E1 24 63 E1 7F 66 0D [2019-09-30 08:43:57] Elapsed: 49 [2019-09-30 08:43:57] Sending packet (10 repeats): [2019-09-30 08:43:57] 00 DB E1 24 63 E1 7F 66 0D [2019-09-30 08:43:57] Elapsed: 45 [2019-09-30 08:43:57] Sending packet (10 repeats): [2019-09-30 08:43:57] 00 DB E1 24 63 E1 7F 66 0D [2019-09-30 08:43:57] Elapsed: 47 [2019-09-30 08:43:57] Sending packet (10 repeats): [2019-09-30 08:43:57] 00 DB E1 24 63 E1 7F 66 0D [2019-09-30 08:43:57] Elapsed: 46 [2019-09-30 08:43:57] Sending packet (10 repeats): [2019-09-30 08:43:57] 00 DB E1 24 63 E1 7F 66 0D [2019-09-30 08:43:57] Elapsed: 47 [2019-09-30 08:43:57] Patching existing state with: {"hue":25} [2019-09-30 08:43:57] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:43:57] Raw data: 88001200 30000800 [2019-09-30 08:43:57] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:43:57] Raw data: 88001200 30000800 [2019-09-30 08:43:57] [2019-09-30 08:43:57] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:43:57] Raw data: 88001200 30000800 [2019-09-30 08:43:57] [2019-09-30 08:43:57] Clearing fields. Current state: {} [2019-09-30 08:43:57] Raw data: 00000000 00000000 [2019-09-30 08:43:57] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:43:57] Raw data: 88001200 30000800 [2019-09-30 08:43:57] Result: {} [2019-09-30 08:43:57] Raw data: 00000000 00000000 [2019-09-30 08:43:57] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:43:57] Switching to next packet, 1 packets in queue [2019-09-30 08:43:57] Sending packet (10 repeats): [2019-09-30 08:43:57] 00 DB E1 24 61 C6 7C 66 D1 [2019-09-30 08:43:57] Elapsed: 50 [2019-09-30 08:43:57] Sending packet (10 repeats): [2019-09-30 08:43:57] 00 DB E1 24 61 C6 7C 66 D1 [2019-09-30 08:43:57] Elapsed: 45 [2019-09-30 08:43:57] Sending packet (10 repeats): [2019-09-30 08:43:57] 00 DB E1 24 61 C6 7C 66 D1 [2019-09-30 08:43:57] Elapsed: 46 [2019-09-30 08:43:57] Sending packet (10 repeats): [2019-09-30 08:43:57] 00 DB E1 24 61 C6 7C 66 D1 [2019-09-30 08:43:58] Elapsed: 46 [2019-09-30 08:43:58] Sending packet (10 repeats): [2019-09-30 08:43:58] 00 DB E1 24 61 C6 7C 66 D1 [2019-09-30 08:43:58] Elapsed: 48 [2019-09-30 08:43:58] Patching existing state with: {"saturation":13} [2019-09-30 08:43:58] GroupState::patch: State changed: {} [2019-09-30 08:43:58] Raw data: 000D0000 30000100 [2019-09-30 08:43:58] Patching existing state with: : {} [2019-09-30 08:43:58] Raw data: 000D0000 30000100 [2019-09-30 08:43:58] [2019-09-30 08:43:58] Patching existing state with: : {} [2019-09-30 08:43:58] Raw data: 000D0000 30000100 [2019-09-30 08:43:58] [2019-09-30 08:43:58] Clearing fields. Current state: {} [2019-09-30 08:43:58] Raw data: 00000000 00000000 [2019-09-30 08:43:58] Other state: {} [2019-09-30 08:43:58] Raw data: 000D0000 30000100 [2019-09-30 08:43:58] Result: {} [2019-09-30 08:43:58] Raw data: 00000000 00000000 [2019-09-30 08:44:02] Eext packet, 1 packets in queue [2019-09-30 08:44:02] eDB E1 24 63 E1 7D 66 0B [2019-09-30 08:44:02] Elapsr66 0B [2019-09-30 08:44:02] Elapsed: 46 [2019-09-30 08:44:02] Sending par66 0B [2019-09-30 08:44:02] Elapsed: 47 [2019-09-30 08:44:02] Sending par66 0B [2019-09-30 08:44:02] Elapsed: 46 [2019-09-30 08:44:02] Sending par66 0B [2019-09-30 08:44:02] Elapsed: 47 [2019-09-30 08:44:02] Patching ete::patch: State changed: {"bulbmai"8t"0.0"at0e [2019-09-30 08:44:41] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:44:41] MqttClient - device 0001, group 1 [2019-09-30 08:44:41] Enqueuing packet [2019-09-30 08:44:41] Enqueuing packet [2019-09-30 08:44:41] Switching to next packet, 2 packets in queue [2019-09-30 08:44:41] Sending packet (10 repeats): [2019-09-30 08:44:41] 00 DB E1 24 63 E1 6A 66 0C [2019-09-30 08:44:41] Elapsed: 47 [2019-09-30 08:44:41] Sending packet (10 repeats): [2019-09-30 08:44:41] 00 DB E1 24 63 E1 6A 66 0C [2019-09-30 08:44:41] Elapsed: 47 [2019-09-30 08:44:41] Sending packet (10 repeats): [2019-09-30 08:44:41] 00 DB E1 24 63 E1 6A 66 0C [2019-09-30 08:44:41] repeats): [2019-09-30 08:44:41] 00 DB E1 24 63 E1 6A repeats): [2019-09-30 08:44:41] 00 DB E1 24 63 E1 6A Elapsed: 47 [2019-09-30 08:44:41] Patching existing smode":"color","hue":25} [2019-09-30 08:44:41] Raw datisting state with: : {"bulb_mode8t"0.0"at0e [2019-09-30 08:44:41] Sets in queue [2019-09-30 08:44:41] Sending packet (10r66 E0 [2019-09-30 08:44:41] Elapsed: 46 [2019-09-30 08:44:41] Sending par66 E0 [2019-09-30 08:44:41] Elapsed: 47 [2019-09-30 08:44:41] Sending par66 E0 [2019-09-30 08:44:41] Elapsed: 46 [2019-09-30 08:44:41] Sending packet (10 repeats): [2019-09-30 08:44:41] 00 DB E1 24 61 C6 6B 6[2019-09-30 08:44:46] E[2019-09-30 08:44:59] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:44:59] MqttClient - device 0001, group 1 [2019-09-30 08:44:59] Enqueuing packet [2019-09-30 08:44:59] Enqueuing packet [2019-09-30 08:44:59] Switching to next packet, 2 packets in queue [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 63 E1 69 66 F7 [2019-09-30 08:44:59] Elapsed: 47 [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 63 E1 69 66 F7 [2019-09-30 08:44:59] Elapsed: 47 [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 63 E1 69 66 F7 [2019-09-30 08:44:59] Elapsed: 46 [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 63 E1 69 66 F7 [2019-09-30 08:44:59] Elapsed: 46 [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 63 E1 69 66 F7 [2019-09-30 08:44:59] Elapsed: 46 [2019-09-30 08:44:59] Patching existing state with: {"hue":25} [2019-09-30 08:44:59] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:44:59] Raw data: 88001200 30000800 [2019-09-30 08:44:59] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:44:59] Raw data: 88001200 30000800 [2019-09-30 08:44:59] [2019-09-30 08:44:59] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:44:59] Raw data: 88001200 30000800 [2019-09-30 08:44:59] [2019-09-30 08:44:59] Clearing fields. Current state: {} [2019-09-30 08:44:59] Raw data: 00000000 00000000 [2019-09-30 08:44:59] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:44:59] Raw data: 88001200 30000800 [2019-09-30 08:44:59] Result: {} [2019-09-30 08:44:59] Raw data: 00000000 00000000 [2019-09-30 08:44:59] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:44:59] Switching to next packet, 1 packets in queue [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 61 C6 66 66 DB [2019-09-30 08:44:59] Elapsed: 47 [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 61 C6 66 66 DB [2019-09-30 08:44:59] Elapsed: 47 [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 61 C6 66 66 DB [2019-09-30 08:44:59] Elapsed: 46 [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 61 C6 66 66 DB [2019-09-30 08:44:59] Elapsed: 47 [2019-09-30 08:44:59] Sending packet (10 repeats): [2019-09-30 08:44:59] 00 DB E1 24 61 C6 66 66 DB [2019-09-30 08:44:59] Elapsed: 46 [2019-09-30 08:44:59] Patching existing state with: {"saturation":13} [2019-09-30 08:44:59] GroupState::patch: State changed: {} [2019-09-30 08:44:59] Raw data: 000D0000 30000100 [2019-09-30 08:44:59] Patching existing state with: : {} [2019-09-30 08:44:59] Raw data: 000D0000 30000100 [2019-09-30 08:44:59] [2019-09-30 08:44:59] Patching existing state with: : {} [2019-09-30 08:44:59] Raw data: 000D0000 30000100 [2019-09-30 08:44:59] [2019-09-30 08:44:59] Clearing fields. Current state: {} [2019-09-30 08:44:59] Raw data: 00000000 00000000 [2019-09-30 08:44:59] Other state: {} [2019-09-30 08:44:59] Raw data: 000D0000 30000100 [2019-09-30 08:44:59] Result: {} [2019-09-30 08:44:59] Raw data: 00000000 00000000 [2019-09-30 08:45:04] Enqueuing packet [2019-09-30 08:45:04] Switching to next packet, 1 packets in queue [2019-09-30 08:45:04] Sending packet (10 repeats): [2019-09-30 08:45:04] 00 DB E1 24 63 E1 67 66 F5 [2019-09-30 08:45:04] Elapsed: 46 [2019-09-30 08:45:04] Sending packet (10 repeats): [2019-09-30 08:45:04] 00 DB E1 24 63 E1 67 66 F5 [2019-09-30 08:45:04] Elapsed: 46 [2019-09-30 08:45:04] Sending packet (10 repeats): [2019-09-30 08:45:04] 00 DB E1 24 63 E1 67 66 F5 [2019-09-30 08:45:04] Elapsed: 46 [2019-09-30 08:45:04] Sending packet (10 repeats): [2019-09-30 08:45:04] 00 DB E1 24 63 E1 67 66 F5 [2019-09-30 08:45:04] Elapsed: 49 [2019-09-30 08:45:04] Sending packet (10 repeats): [2019-09-30 08:45:04] 00 DB E1 24 63 E1 67 66 F5 [2019-09-30 08:45:04] Elapsed: 46 [2019-09-30 08:45:04] Patching existing state with: {"hue":25} [2019-09-30 08:45:04] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:45:04] Raw data: 88001200 30000800 [2019-09-30 08:45:04] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:45:04] Raw data: 88001200 30000800 [2019-09-30 08:45:04] [2019-09-30 08:45:04] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:45:04] Raw data: 88001200 30000800 [2019-09-30 08:45:04] [2019-09-30 08:45:04] Clearing fields. Current state: {} [2019-09-30 08:45:04] Raw data: 00000000 00000000 [2019-09-30 08:45:04] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:45:04] Raw data: 88001200 30000800 [2019-09-30 08:45:04] Result: {} [2019-09-30 08:45:04] Raw data: 00000000 00000000 [2019-09-30 08:45:04] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:45:29] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:45:29] MqttClient - device 0001, group 1 [2019-09-30 08:45:29] Enqueuing packet [2019-09-30 08:45:29] Enqueuing packet [2019-09-30 08:45:29] Switching to next packet, 2 packets in queue [2019-09-30 08:45:29] Sending packet (10 repeats): [2019-09-30 08:45:29] 00 DB E1 24 63 E1 64 66 F6 [2019-09-30 08:45:29] Er6Elapsedr6Elapsedr6Erepeats): [2019-09-30 08:45:29] 00 DB E1 24 63 E1 646Elapsedtemode":"color","hue":25} [2019-09-30 08:45:29] Raw daaisting state with: : {"bulb_mod"8001200 30000800 [2019-09-30 08:45:29] [2019-09-30 08:45:29] Patching exit"color","hue":25} [2019-09-30 08:45:29] Raw data: 880.00000000 00000000 [2019-09-30 08:45:29] Other state: "at00 [2019-09-30 08:45:29] MqttClient - publishing updae [2019-09-30 08:45:29] Switching to next packet, 1 paerepeats): [2019-09-30 08:45:29] 00 DB E1 24 61 C6 656Er66 DA [2019-09-30 08:45:29] Elapsed: 47 [2019-09-30 08:45:29] Sending par66 DA [2019-09-30 08:45:29] Elapsed: 45 [2019-09-30 08:45:29] Sending par6Elapsedr66 DA [2019-09-30 08:45:29] Elapsed: 46 [2019-09-30 08:45:29] Patching eto{} [2019-09-30 08:45:29] Raw data: 000D0000 30000100P{} [2019-09-30 08:45:29] Raw data: 000D0000 30000100 : {} [2019-09-30 08:45:29] Raw data: 000D0000 3000010ate: {} [2019-09-30 08:45:34] Raw data: 00000000 00000w data: 00000000 00000000 [2019-09-30 08:45:34] Enqueuing packet [2019-09-30 08:45:34] Switching to next packet, 1 packets in queue [2019-09-30 08:45:34] Sending packet (10 repeats): [2019-09-30 08:45:34] 00 DB E1 24 63 E1 72 66 F4 [2019-09-30 08:45:34] Elapsed: 47 [2019-09-30 08:45:34] Sending packet (10 repeats): [2019-09-30 08:45:34] 00 DB E1 24 63 E1 72 6Elapsedrepeats): [2019-09-30 08:45:34] 00 DB E1 24 636Erepeats): [2019-09-30 08:45:34] 00 DB E1 24 63 E1 726Erepeats): [2019-09-30 08:45:34] 00 DB E1 24 63 E1 726Elapsedte::patch: State changed: {"bulbma: 88001200 30000800 [2019-09-30 08:45:34] Patching ei"8001200 30000800 [2019-09-30 08:45:34] [2019-09-30 08:45:34] Patching exit"01200 30000800 [2019-09-30 08:45:34] [2019-09-30 08:45:34] Clearing field.00000000 00000000 [2019-09-30 08:45:34] Other state: "at: {} [2019-09-30 08:46:00] Raw data: 00000000 000000e [2019-09-30 08:46:00] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:46:00] MqttClient - device 0001, group 1 [2019-09-30 08:46:00] Enqueuing packet [2019-09-30 08:46:00] Enqueuing packet [2019-09-30 08:46:00] Switching to next packet, 2 packets in queue [2019-09-30 08:46:00] Sending packet (10 repeats): [2019-09-30 08:46:00] 00 DB E1 24 63 E1 73 66 F1 [2019-09-30 08:46:00] Erepeats): [2019-09-30 08:46:00] 00 DB E1 24 63 E1 736Erepeats): [2019-09-30 08:46:00] 00 DB E1 24 63 E1 736Elapsedrepeats): [2019-09-30 08:46:00] 00 DB E1 24 636Er6Elapsedtate with: {"hue":25} [2019-09-30 08:46:00] Gremode":"color","hue":25} [2019-09-30 08:46:00] Raw daai":"color","hue":25} [2019-09-30 08:46:00] Raw data: 8t"01200 30000800 [2019-09-30 08:46:00] [2019-09-30 08:46:00] Clearing field.00000000 00000000 [2019-09-30 08:46:00] Other state: "at: {} [2019-09-30 08:46:00] Raw data: 00000000 000000e to milight/state/0x1/rgb_cct/ [2019-09-30 08:46:00] Sets in queue [2019-09-30 08:46:00] Sending packet (10r6Er6Erepeats): [2019-09-30 08:46:00] 00 DB E1 24 61 C6 706Elapsedr66 C5 [2019-09-30 08:46:00] Elapsed: 46 [2019-09-30 08:46:00] Sending packet (10 r66 C5 [2019-09-30 08:46:00] Elapsed: 46 [2019-09-30 08:46:05] Patching eto{P{ :0a00wEnqueuing packet [2019-09-30 08:46:05] Switching to next packet, 1 packets in queue [2019-09-30 08:46:05] Sending packet (10 repeats): [2019-09-30 08:46:05] 00 DB E1 24 63 E1 71 66 FF [2019-09-30 08:46:05] Elapsed: 47 [2019-09-30 08:46:05] Sending packet (10 repeats): [2019-09-30 08:46:05] 00 DB E1 24 63 E1 71 66 FF [2019-09-30 08:46:05] Elapsed: 46 [2019-09-30 08:46:05] Sending packet (10 repeats): [2019-09-30 08:46:05] 00 DB E1 24 63 E1 71 66 FF [2019-09-30 08:46:05] Elapsed: 47 [2019-09-30 08:46:05] Sending packet (10 repeats): [2019-09-30 08:46:05] 00 DB E1 24 63 E1 71 66 FF [2019-09-30 08:46:05] Elapsed: 46 [2019-09-30 08:46:05] Sending packet (10 repeats): [2019-09-30 08:46:05] 00 DB E1 24 63 E1 71 66 FF [2019-09-30 08:46:05] Elapsed: 47 [2019-09-30 08:46:05] Patching existing state with: {"hue":25} [2019-09-30 08:46:05] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:46:05] Raw data: 88001200 30000800 [2019-09-30 08:46:05] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:46:05] Raw data: 88001200 30000800 [2019-09-30 08:46:05] [2019-09-30 08:46:05] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:46:05] Raw data: 88001200 30000800 [2019-09-30 08:46:05] [2019-09-30 08:46:05] Clearing fields. Current state: {} [2019-09-30 08:46:05] Raw data: 00000000 00000000 [2019-09-30 08:46:05] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:46:05] Raw data: 88001200 30000800 [2019-09-30 08:46:05] Result: {} [2019-09-30 08:46:05] Raw data: 00000000 00000000 [2019-09-30 08:46:05] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:46:31] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:46:31] MqttClient - device 0001, group 1 [2019-09-30 08:46:31] Enqueuing packet [2019-09-30 08:46:31] Enqueuing packet [2019-09-30 08:46:31] Switching to next packet, 2 packets in queue [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 63 E1 6E 66 00 [2019-09-30 08:46:31] Elapsed: 49 [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 63 E1 6E 66 00 [2019-09-30 08:46:31] Elapsed: 46 [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 63 E1 6E 66 00 [2019-09-30 08:46:31] Elapsed: 48 [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 63 E1 6E 66 00 [2019-09-30 08:46:31] Elapsed: 45 [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 63 E1 6E 66 00 [2019-09-30 08:46:31] Elapsed: 48 [2019-09-30 08:46:31] Patching existing state with: {"hue":25} [2019-09-30 08:46:31] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:46:31] Raw data: 88001200 30000800 [2019-09-30 08:46:31] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:46:31] Raw data: 88001200 30000800 [2019-09-30 08:46:31] [2019-09-30 08:46:31] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:46:31] Raw data: 88001200 30000800 [2019-09-30 08:46:31] [2019-09-30 08:46:31] Clearing fields. Current state: {} [2019-09-30 08:46:31] Raw data: 00000000 00000000 [2019-09-30 08:46:31] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:46:31] Raw data: 88001200 30000800 [2019-09-30 08:46:31] Result: {} [2019-09-30 08:46:31] Raw data: 00000000 00000000 [2019-09-30 08:46:31] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:46:31] Switching to next packet, 1 packets in queue [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 61 C6 6F 66 C4 [2019-09-30 08:46:31] Elapsed: 47 [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 61 C6 6F 66 C4 [2019-09-30 08:46:31] Elapsed: 47 [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 61 C6 6F 66 C4 [2019-09-30 08:46:31] Elapsed: 47 [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 61 C6 6F 66 C4 [2019-09-30 08:46:31] Elapsed: 50 [2019-09-30 08:46:31] Sending packet (10 repeats): [2019-09-30 08:46:31] 00 DB E1 24 61 C6 6F 66 C4 [2019-09-30 08:46:31] Elapsed: 46 [2019-09-30 08:46:31] Patching existing state with: {"saturation":13} [2019-09-30 08:46:31] GroupState::patch: State changed: {} [2019-09-30 08:46:31] Raw data: 000D0000 30000100 [2019-09-30 08:46:31] Patching existing state with: : {} [2019-09-30 08:46:31] Raw data: 000D0000 30000100 [2019-09-30 08:46:31] [2019-09-30 08:46:31] Patching existing state with: : {} [2019-09-30 08:46:31] Raw data: 000D0000 30000100 [2019-09-30 08:46:31] [2019-09-30 08:46:31] Clearing fields. Current state: {} [2019-09-30 08:46:31] Raw data: 00000000 00000000 [2019-09-30 08:46:31] Other state: {} [2019-09-30 08:46:31] Raw data: 000D0000 30000100 [2019-09-30 08:46:31] Result: {} [2019-09-30 08:46:31] Raw data: 00000000 00000000 [2019-09-30 08:46:36] Enqueuing packet [2019-09-30 08:46:36] Switching to next packet, 1 packets in queue [2019-09-30 08:46:36] Sending packet (10 repeats): [2019-09-30 08:46:36] 00 DB E1 24 63 E1 6C 66 FE [2019-09-30 08:46:36] E[2019-09-30 08:47:02] Mc: milight/commands/0x1/rgb_cct1pEep( Er6Er6Er6Er6Etemai"8t"0.0"t0e [2019-09-30 08:47:02] Sets in queue [2019-09-30 08:47:07] Sending packet (10r6Er6Er6Er6Er6to{P{ :0a00wEext packet, 1 packets in queue [2019-09-30 08:47:07] eDEr6Er6Er6Er6Etemai"8t"0.0"at0e [2019-09-30 08:47:33] MqttClient - Got message on topic[2019-09-30 08:47:34] Etate with: {"hue":27} [2019-09-30 08:47:35] GroupStaemai":"color","hue":27} [2019-09-30 08:47:35] Raw data: 88t"0.0"at0e [2019-09-30 08:47:36] Enqueuing packet [2019-09-30 08:47:36] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:47:36] Switching to next packet, 1 packets in queue [2019-09-30 08:47:36] Sending packet (10 repeats): [2019-09-30 08:47:36] 00 DB E1 24 63 DF 57 66 E3 [2019-09-30 08:47:36] Elapsed: 46 [2019-09-30 08:47:36] Sending packet (10 repeats): [2019-09-30 08:47:36] 00 DB E1 24 63 DF 57 66 E3 [2019-09-30 08:47:36] Elapsed: 47 [2019-09-30 08:47:36] Sending packet (10 repeats): [2019-09-30 08:47:36] 00 DB E1 24 63 DF 57 66 E3 [2019-09-30 08:47:36] Elapsed: 46 [2019-09-30 08:47:36] Sending packet (10 repeats): [2019-09-30 08:47:36] 00 DB E1 24 63 DF 57 66 E3 [2019-09-30 08:47:36] Elapsed: 50 [2019-09-30 08:47:36] Sending packet (10 repeats): [2019-09-30 08:47:36] 00 DB E1 24 63 DF 57 66 E3 [2019-09-30 08:47:36] Elapsed: 48 [2019-09-30 08:47:36] Patching existing state with: {"hue":28} [2019-09-30 08:47:36] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:47:36] Raw data: 88001400 30000800 [2019-09-30 08:47:36] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:47:36] Raw data: 88001400 30000800 [2019-09-30 08:47:36] [2019-09-30 08:47:36] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:47:36] Raw data: 88001400 30000800 [2019-09-30 08:47:36] [2019-09-30 08:47:36] Clearing fields. Current state: {} [2019-09-30 08:47:36] Raw data: 00000000 00000000 [2019-09-30 08:47:36] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:47:36] Raw data: 88001400 30000800 [2019-09-30 08:47:36] Result: {} [2019-09-30 08:47:36] Raw data: 00000000 00000000 [2019-09-30 08:47:36] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:48:04] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:48:04] MqttClient - device 0001, group 1 [2019-09-30 08:48:04] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:48:04] Enqueuing packet [2019-09-30 08:48:04] Enqueuing packet [2019-09-30 08:48:04] Switching to next packet, 2 packets in queue [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 63 DF 54 66 E4 [2019-09-30 08:48:04] Elapsed: 50 [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 63 DF 54 66 E4 [2019-09-30 08:48:04] Elapsed: 47 [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 63 DF 54 66 E4 [2019-09-30 08:48:04] Elapsed: 46 [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 63 DF 54 66 E4 [2019-09-30 08:48:04] Elapsed: 47 [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 63 DF 54 66 E4 [2019-09-30 08:48:04] Elapsed: 50 [2019-09-30 08:48:04] Patching existing state with: {"hue":28} [2019-09-30 08:48:04] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:48:04] Raw data: 88001400 30000800 [2019-09-30 08:48:04] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:48:04] Raw data: 88001400 30000800 [2019-09-30 08:48:04] [2019-09-30 08:48:04] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:48:04] Raw data: 88001400 30000800 [2019-09-30 08:48:04] [2019-09-30 08:48:04] Clearing fields. Current state: {} [2019-09-30 08:48:04] Raw data: 00000000 00000000 [2019-09-30 08:48:04] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:48:04] Raw data: 88001400 30000800 [2019-09-30 08:48:04] Result: {} [2019-09-30 08:48:04] Raw data: 00000000 00000000 [2019-09-30 08:48:04] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:48:04] Switching to next packet, 1 packets in queue [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 61 C6 55 66 CA [2019-09-30 08:48:04] Elapsed: 46 [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 61 C6 55 66 CA [2019-09-30 08:48:04] Elapsed: 48 [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 61 C6 55 66 CA [2019-09-30 08:48:04] Elapsed: 51 [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 61 C6 55 66 CA [2019-09-30 08:48:04] Elapsed: 46 [2019-09-30 08:48:04] Sending packet (10 repeats): [2019-09-30 08:48:04] 00 DB E1 24 61 C6 55 66 CA [2019-09-30 08:48:04] Elapsed: 45 [2019-09-30 08:48:04] Patching existing state with: {"saturation":13} [2019-09-30 08:48:04] GroupState::patch: State changed: {} [2019-09-30 08:48:04] Raw data: 000D0000 30000100 [2019-09-30 08:48:04] Patching existing state with: : {} [2019-09-30 08:48:04] Raw data: 000D0000 30000100 [2019-09-30 08:48:04] [2019-09-30 08:48:04] Patching existing state with: : {} [2019-09-30 08:48:04] Raw data: 000D0000 30000100 [2019-09-30 08:48:04] [2019-09-30 08:48:04] Clearing fields. Current state: {} [2019-09-30 08:48:04] Raw data: 00000000 00000000 [2019-09-30 08:48:04] Other state: {} [2019-09-30 08:48:04] Raw data: 000D0000 30000100 [2019-09-30 08:48:04] Result: {} [2019-09-30 08:48:04] Raw data: 00000000 00000000 [2019-09-30 08:48:05] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:48:06] EeeDEr6Er6Er6Er6Etemai"8t"0.0"at0e [2019-09-30 08:48:09] EeeDEr6Er6Er6Er6Etate with: {"hue":28} [2019-09-30 08:48:09] GroupStaemode":"color","hue":28} [2019-09-30 08:48:09] Raw daaisting state with: : {"bulb_mod"8t"0.0"at0e [2019-09-30 08:48:35] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:48:35] MqttClient - device 0001, group 1 [2019-09-30 08:48:35] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:48:35] Enqueuing packet [2019-09-30 08:48:35] Enqueuing packet [2019-09-30 08:48:35] Switching to next packet, 2 packets in queue [2019-09-30 08:48:35] SeDB E1 24 63 DF 60 66 F0 [2019-09-30 08:48:35] Elapsrepeats): [2019-09-30 08:48:35] 00 DB E1 24 63 DF 60 66 F0 [2019-09-30 08:48:35] Erepeats): [2019-09-30 08:48:35] 00 DB E1 24 63 DF 60 66 F0 [2019-09-30 08:48:35] Elapsed: 47 [2019-09-30 08:48:35] Sending packet (10 repeats): [2019-09-30 08:48:35] 00 DB E1 24 63 DF 60 66 F0 [2019-09-30 08:48:35] Elapsed: 46 [2019-09-30 08:48:35] Sending packet (10 repeats): [2019-09-30 08:48:35] 00 DB E1 24 63 DF 60 66 F0 [2019-09-30 08:48:35] Elapsed: 48 [2019-09-30 08:48:35] Patching existing state with: {"hue":28} [2019-09-30 08:48:35] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:48:35] Raw data: 88001400 30000800 [2019-09-30 08:48:35] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:48:35] Raw data: 88001400 30000800 [2019-09-30 08:48:35] [2019-09-30 08:48:35] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:48:35] Raw data: 88001400 30000800 [2019-09-30 08:48:35] [2019-09-30 08:48:35] Clearing fields. Current state: {} [2019-09-30 08:48:35] Raw data: 00000000 00000000 [2019-09-30 08:48:35] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:48:35] Raw data: 88001400 30000800 [2019-09-30 08:48:35] Result: {} [2019-09-30 08:48:35] Raw data: 00000000 00000000 [2019-09-30 08:48:35] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:48:35] Switching to next packet, 1 packets in queue [2019-09-30 08:48:35] Sending packet (10 repeats): [2019-09-30 08:48:35] 00 DB E1 24 61 C6 61 66 B6 [2019-09-30 08:48:35] Elapsed: 48 [2019-09-30 08:48:35] Sending packet (10 repeats): [2019-09-30 08:48:35] 00 DB E1 24 61 C6 61 66 B6 [2019-09-30 08:48:35] Elapsed: 47 [2019-09-30 08:48:35] Sending packet (10 repeats): [2019-09-30 08:48:35] 00 DB E1 24 61 C6 61 66 B6 [2019-09-30 08:48:35] Elapsed: 46 [2019-09-30 08:48:35] Sending packet (10 repeats): [2019-09-30 08:48:35] 00 DB E1 24 61 C6 61 66 B6 [2019-09-30 08:48:35] Elapsed: 45 [2019-09-30 08:48:35] Sending packet (10 repeats): [2019-09-30 08:48:35] 00 DB E1 24 61 C6 61 66 B6 [2019-09-30 08:48:35] Elapsed: 46 [2019-09-30 08:48:35] Patching existing state with: {"saturation":13} [2019-09-30 08:48:35] GroupState::patch: State changed: {} [2019-09-30 08:48:35] Raw data: 000D0000 30000100 [2019-09-30 08:48:35] Patching existing state with: : {} [2019-09-30 08:48:35] Raw data: 000D0000 30000100 [2019-09-30 08:48:35] [2019-09-30 08:48:35] Patching existing state with: : {} [2019-09-30 08:48:35] Raw data: 000D0000 30000100 [2019-09-30 08:48:35] [2019-09-30 08:48:35] Clearing fields. Current state: {} [2019-09-30 08:48:35] Raw data: 00000000 00000000 [2019-09-30 08:48:35] Other state: {} [2019-09-30 08:48:35] Raw data: 000D0000 30000100 [2019-09-30 08:48:35] Result: {} [2019-09-30 08:48:35] Raw data: 00000000 00000000 [2019-09-30 08:48:36] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:48:37] Enqueuing packet [2019-09-30 08:48:37] Switching to next packet, 1 packets in queue [2019-09-30 08:48:37] Sending packet (10 repeats): [2019-09-30 08:48:37] 00 DB E1 24 63 DC 5E 66 EB [2019-09-30 08:48:37] Elapsed: 49 [2019-09-30 08:48:37] Sending packet (10 repeats): [2019-09-30 08:48:37] 00 DB E1 24 63 DC 5E 66 EB [2019-09-30 08:48:37] Elapsed: 51 [2019-09-30 08:48:37] Sending packet (10 repeats): [2019-09-30 08:48:37] 00 DB E1 24 63 DC 5E 66 EB [2019-09-30 08:48:37] Elapsed: 46 [2019-09-30 08:48:37] Sending packet (10 repeats): [2019-09-30 08:48:37] 00 DB E1 24 63 DC 5E 66 EB [2019-09-30 08:48:37] Elapsed: 46 [2019-09-30 08:48:37] Sending packet (10 repeats): [2019-09-30 08:48:37] 00 DB E1 24 63 DC 5E 66 EB [2019-09-30 08:48:37] Elapsed: 45 [2019-09-30 08:48:37] Patching existing state with: {"hue":30} [2019-09-30 08:48:37] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:48:37] Raw data: 88001500 30000800 [2019-09-30 08:48:37] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:48:37] Raw data: 88001500 30000800 [2019-09-30 08:48:37] [2019-09-30 08:48:37] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:48:37] Raw data: 88001500 30000800 [2019-09-30 08:48:37] [2019-09-30 08:48:37] Clearing fields. Current state: {} [2019-09-30 08:48:37] Raw data: 00000000 00000000 [2019-09-30 08:48:37] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:48:37] Raw data: 88001500 30000800 [2019-09-30 08:48:37] Result: {} [2019-09-30 08:48:37] Raw data: 00000000 00000000 [2019-09-30 08:48:37] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:48:40] Enqueuing packet [2019-09-30 08:48:40] Switching to next packet, 1 packets in queue [2019-09-30 08:48:40] Sending packet (10 repeats): [2019-09-30 08:48:40] 00 DB E1 24 63 DF 5F 66 EB [2019-09-30 08:48:40] Elapsed: 50 [2019-09-30 08:48:40] Sending packet (10 repeats): [2019-09-30 08:48:40] 00 DB E1 24 63 DF 5F 66 EB [2019-09-30 08:48:40] Elapsed: 48 [2019-09-30 08:48:40] Sending packet (10 repeats): [2019-09-30 08:48:40] 00 DB E1 24 63 DF 5F 66 EB [2019-09-30 08:48:40] Elapsed: 46 [2019-09-30 08:48:40] Sending packet (10 repeats): [2019-09-30 08:48:40] 00 DB E1 24 63 DF 5F 66 EB [2019-09-30 08:48:40] Elapsed: 46 [2019-09-30 08:48:40] Sending packet (10 repeats): [2019-09-30 08:48:40] 00 DB E1 24 63 DF 5F 66 EB [2019-09-30 08:48:40] Elapsed: 49 [2019-09-30 08:48:40] Patching existing state with: {"hue":28} [2019-09-30 08:48:40] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:48:40] Raw data: 88001400 30000800 [2019-09-30 08:48:40] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:48:40] Raw data: 88001400 30000800 [2019-09-30 08:48:40] [2019-09-30 08:48:40] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:48:40] Raw data: 88001400 30000800 [2019-09-30 08:48:40] [2019-09-30 08:48:40] Clearing fields. Current state: {} [2019-09-30 08:48:40] Raw data: 00000000 00000000 [2019-09-30 08:48:40] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:48:40] Raw data: 88001400 30000800 [2019-09-30 08:48:40] Result: {} [2019-09-30 08:48:40] Raw data: 00000000 00000000 [2019-09-30 08:48:40] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:49:06] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:49:06] MqttClient - device 0001, group 1 [2019-09-30 08:49:06] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:49:06] Enqueuing packet [2019-09-30 08:49:06] Enqueuing packet [2019-09-30 08:49:06] Switching to next packet, 2 packets in queue [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 63 DF 5C 66 EC [2019-09-30 08:49:06] Elapsed: 54 [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 63 DF 5C 66 EC [2019-09-30 08:49:06] Elapsed: 47 [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 63 DF 5C 66 EC [2019-09-30 08:49:06] Elapsed: 46 [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 63 DF 5C 66 EC [2019-09-30 08:49:06] Elapsed: 46 [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 63 DF 5C 66 EC [2019-09-30 08:49:06] Elapsed: 50 [2019-09-30 08:49:06] Patching existing state with: {"hue":28} [2019-09-30 08:49:06] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:49:06] Raw data: 88001400 30000800 [2019-09-30 08:49:06] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:49:06] Raw data: 88001400 30000800 [2019-09-30 08:49:06] [2019-09-30 08:49:06] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:49:06] Raw data: 88001400 30000800 [2019-09-30 08:49:06] [2019-09-30 08:49:06] Clearing fields. Current state: {} [2019-09-30 08:49:06] Raw data: 00000000 00000000 [2019-09-30 08:49:06] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:49:06] Raw data: 88001400 30000800 [2019-09-30 08:49:06] Result: {} [2019-09-30 08:49:06] Raw data: 00000000 00000000 [2019-09-30 08:49:06] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:49:06] Switching to next packet, 1 packets in queue [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 61 C6 5D 66 B2 [2019-09-30 08:49:06] Elapsed: 47 [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 61 C6 5D 66 B2 [2019-09-30 08:49:06] Elapsed: 46 [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 61 C6 5D 66 B2 [2019-09-30 08:49:06] Elapsed: 51 [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 61 C6 5D 66 B2 [2019-09-30 08:49:06] Elapsed: 48 [2019-09-30 08:49:06] Sending packet (10 repeats): [2019-09-30 08:49:06] 00 DB E1 24 61 C6 5D 66 B2 [2019-09-30 08:49:06] Elapsed: 47 [2019-09-30 08:49:06] Patching existing state with: {"saturation":13} [2019-09-30 08:49:06] GroupState::patch: State changed: {} [2019-09-30 08:49:06] Raw data: 000D0000 30000100 [2019-09-30 08:49:06] Patching existing state with: : {} [2019-09-30 08:49:06] Raw data: 000D0000 30000100 [2019-09-30 08:49:06] [2019-09-30 08:49:06] Patching existing state with: : {} [2019-09-30 08:49:06] Raw data: 000D0000 30000100 [2019-09-30 08:49:06] [2019-09-30 08:49:06] Clearing fields. Current state: {} [2019-09-30 08:49:06] Raw data: 00000000 00000000 [2019-09-30 08:49:06] Other state: {} [2019-09-30 08:49:06] Raw data: 000D0000 30000100 [2019-09-30 08:49:06] Result: {} [2019-09-30 08:49:06] Raw data: 00000000 00000000 [2019-09-30 08:49:07] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:49:08] Enqueuing packet [2019-09-30 08:49:08] Switching to next packet, 1 packets in queue [2019-09-30 08:49:08] Sending packet (10 repeats): [2019-09-30 08:49:08] 00 DB E1 24 63 DC 4A 66 57 [2019-09-30 08:49:08] Elapsed: 47 [2019-09-30 08:49:08] Sending packet (10 repeats): [2019-09-30 08:49:08] 00 DB E1 24 63 DC 4A 66 57 [2019-09-30 08:49:08] Elapsed: 49 [2019-09-30 08:49:08] Sending packet (10 repeats): [2019-09-30 08:49:08] 00 DB E1 24 63 DC 4A 66 57 [2019-09-30 08:49:08] Elapsed: 45 [2019-09-30 08:49:08] Sending packet (10 repeats): [2019-09-30 08:49:08] 00 DB E1 24 63 DC 4A 66 57 [2019-09-30 08:49:08] Elapsed: 47 [2019-09-30 08:49:08] Sending packet (10 repeats): [2019-09-30 08:49:08] 00 DB E1 24 63 DC 4A 66 57 [2019-09-30 08:49:08] Elapsed: 46 [2019-09-30 08:49:08] Patching existing state with: {"hue":30} [2019-09-30 08:49:08] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:49:08] Raw data: 88001500 30000800 [2019-09-30 08:49:08] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:49:08] Raw data: 88001500 30000800 [2019-09-30 08:49:08] [2019-09-30 08:49:08] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:49:08] Raw data: 88001500 30000800 [2019-09-30 08:49:08] [2019-09-30 08:49:08] Clearing fields. Current state: {} [2019-09-30 08:49:08] Raw data: 00000000 00000000 [2019-09-30 08:49:08] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:49:08] Raw data: 88001500 30000800 [2019-09-30 08:49:08] Result: {} [2019-09-30 08:49:08] Raw data: 00000000 00000000 [2019-09-30 08:49:08] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:49:11] Enqueuing packet [2019-09-30 08:49:11] Switching to next packet, 1 packets in queue [2019-09-30 08:49:11] Sending packet (10 repeats): [2019-09-30 08:49:11] 00 DB E1 24 63 DF 4B 66 57 [2019-09-30 08:49:11] Elapsed: 46 [2019-09-30 08:49:11] Sending packet (10 repeats): [2019-09-30 08:49:11] 00 DB E1 24 63 DF 4B 66 57 [2019-09-30 08:49:11] Elapsed: 46 [2019-09-30 08:49:11] Sending packet (10 repeats): [2019-09-30 08:49:11] 00 DB E1 24 63 DF 4B 66 57 [2019-09-30 08:49:11] Elapsed: 47 [2019-09-30 08:49:11] Sending packet (10 repeats): [2019-09-30 08:49:11] 00 DB E1 24 63 DF 4B 66 57 [2019-09-30 08:49:11] Elapsed: 47 [2019-09-30 08:49:11] Sending packet (10 repeats): [2019-09-30 08:49:11] 00 DB E1 24 63 DF 4B 66 57 [2019-09-30 08:49:11] Elapsed: 47 [2019-09-30 08:49:11] Patching existing state with: {"hue":28} [2019-09-30 08:49:11] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:49:11] Raw data: 88001400 30000800 [2019-09-30 08:49:11] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:49:11] Raw data: 88001400 30000800 [2019-09-30 08:49:11] [2019-09-30 08:49:11] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:49:11] Raw data: 88001400 30000800 [2019-09-30 08:49:11] [2019-09-30 08:49:11] Clearing fields. Current state: {} [2019-09-30 08:49:11] Raw data: 00000000 00000000 [2019-09-30 08:49:11] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:49:11] Raw data: 88001400 30000800 [2019-09-30 08:49:11] Result: {} [2019-09-30 08:49:11] Raw data: 00000000 00000000 [2019-09-30 08:49:11] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:49:37] M[2019-09-30 08:49:39] Enqueuing packet [2019-09-30 08:49:39] Switching to neeDElapsed: 46 [2019-09-30 08:49:39] Sending packr6E[2019-09-30 08:49:42] Enqueuing packet [2019-09-30 08:49:42] Switching to n[2019-09-30 08:50:08] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:50:08] MqttClient - device 0001, group 1 [2019-09-30 08:50:08] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:50:08] Enqueuing packet [2019-09-30 08:50:08] Enqueuing packet [2019-09-30 08:50:08] Switching to next packet, 2 packets in queue [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 63 DF 44 66 54 [2019-09-30 08:50:08] Elapsed: 46 [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 63 DF 44 66 54 [2019-09-30 08:50:08] Elapsed: 51 [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 63 DF 44 66 54 [2019-09-30 08:50:08] Elapsed: 48 [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 63 DF 44 66 54 [2019-09-30 08:50:08] Elapsed: 46 [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 63 DF 44 66 54 [2019-09-30 08:50:08] Elapsed: 46 [2019-09-30 08:50:08] Patching existing state with: {"hue":28} [2019-09-30 08:50:08] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:50:08] Raw data: 88001400 30000800 [2019-09-30 08:50:08] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:50:08] Raw data: 88001400 30000800 [2019-09-30 08:50:08] [2019-09-30 08:50:08] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:50:08] Raw data: 88001400 30000800 [2019-09-30 08:50:08] [2019-09-30 08:50:08] Clearing fields. Current state: {} [2019-09-30 08:50:08] Raw data: 00000000 00000000 [2019-09-30 08:50:08] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:50:08] Raw data: 88001400 30000800 [2019-09-30 08:50:08] Result: {} [2019-09-30 08:50:08] Raw data: 00000000 00000000 [2019-09-30 08:50:08] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:50:08] Switching to next packet, 1 packets in queue [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 61 C6 45 66 BA [2019-09-30 08:50:08] Elapsed: 51 [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 61 C6 45 66 BA [2019-09-30 08:50:08] Elapsed: 46 [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 61 C6 45 66 BA [2019-09-30 08:50:08] Elapsed: 45 [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 61 C6 45 66 BA [2019-09-30 08:50:08] Elapsed: 48 [2019-09-30 08:50:08] Sending packet (10 repeats): [2019-09-30 08:50:08] 00 DB E1 24 61 C6 45 66 BA [2019-09-30 08:50:08] Elapsed: 49 [2019-09-30 08:50:08] Patching existing state with: {"saturation":13} [2019-09-30 08:50:08] GroupState::patch: State changed: {} [2019-09-30 08:50:08] Raw data: 000D0000 30000100 [2019-09-30 08:50:08] Patching existing state with: : {} [2019-09-30 08:50:08] Raw data: 000D0000 30000100 [2019-09-30 08:50:08] [2019-09-30 08:50:08] Patching existing state with: : {} [2019-09-30 08:50:08] Raw data: 000D0000 30000100 [2019-09-30 08:50:08] [2019-09-30 08:50:08] Clearing fields. Current state: {} [2019-09-30 08:50:08] Raw data: 00000000 00000000 [2019-09-30 08:50:08] Other state: {} [2019-09-30 08:50:08] Raw data: 000D0000 30000100 [2019-09-30 08:50:08] Result: {} [2019-09-30 08:50:08] Raw data: 00000000 00000000 [2019-09-30 08:50:09] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:50:10] Enqueuing packet [2019-09-30 08:50:10] Switching to next packet, 1 packets in queue [2019-09-30 08:50:10] Sending packet (10 repeats): [2019-09-30 08:50:10] 00 DB E1 24 63 DC 52 66 5F [2019-09-30 08:50:10] Elapsed: 49 [2019-09-30 08:50:10] Sending packet (10 repeats): [2019-09-30 08:50:10] 00 DB E1 24 63 DC 52 66 5F [2019-09-30 08:50:10] Elapsed: 50 [2019-09-30 08:50:10] Sending packet (10 repeats): [2019-09-30 08:50:10] 00 DB E1 24 63 DC 52 66 5F [2019-09-30 08:50:10] Elapsed: 46 [2019-09-30 08:50:10] Sending packet (10 repeats): [2019-09-30 08:50:10] 00 DB E1 24 63 DC 52 66 5F [2019-09-30 08:50:10] Elapsed: 45 [2019-09-30 08:50:10] Sending packet (10 repeats): [2019-09-30 08:50:10] 00 DB E1 24 63 DC 52 66 5F [2019-09-30 08:50:10] Elapsed: 47 [2019-09-30 08:50:10] Patching existing state with: {"hue":30} [2019-09-30 08:50:10] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:50:10] Raw data: 88001500 30000800 [2019-09-30 08:50:10] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:50:10] Raw data: 88001500 30000800 [2019-09-30 08:50:10] [2019-09-30 08:50:10] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:50:10] Raw data: 88001500 30000800 [2019-09-30 08:50:10] [2019-09-30 08:50:10] Clearing fields. Current state: {} [2019-09-30 08:50:10] Raw data: 00000000 00000000 [2019-09-30 08:50:10] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:50:10] Raw data: 88001500 30000800 [2019-09-30 08:50:10] Result: {} [2019-09-30 08:50:10] Raw data: 00000000 00000000 [2019-09-30 08:50:10] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:50:13] Enqueuing packet [2019-09-30 08:50:13] Switching to next packet, 1 packets in queue [2019-09-30 08:50:13] Sending packet (10 repeats): [2019-09-30 08:50:13] 00 DB E1 24 63 DF 53 66 5F [2019-09-30 08:50:13] Elapsed: 47 [2019-09-30 08:50:13] Sending packet (10 repeats): [2019-09-30 08:50:13] 00 DB E1 24 63 DF 53 66 5F [2019-09-30 08:50:13] Elapsed: 46 [2019-09-30 08:50:13] Sending packet (10 repeats): [2019-09-30 08:50:13] 00 DB E1 24 63 DF 53 66 5F [2019-09-30 08:50:13] Elapsed: 45 [2019-09-30 08:50:13] Sending packet (10 repeats): [2019-09-30 08:50:13] 00 DB E1 24 63 DF 53 66 5F [2019-09-30 08:50:13] Elapsed: 46 [2019-09-30 08:50:13] Sending packet (10 repeats): [2019-09-30 08:50:13] 00 DB E1 24 63 DF 53 66 5F [2019-09-30 08:50:13] Elapsed: 47 [2019-09-30 08:50:13] Patching existing state with: {"hue":28} [2019-09-30 08:50:13] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:50:13] Raw data: 88001400 30000800 [2019-09-30 08:50:13] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:50:13] Raw data: 88001400 30000800 [2019-09-30 08:50:13] [2019-09-30 08:50:13] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:50:13] Raw data: 88001400 30000800 [2019-09-30 08:50:13] [2019-09-30 08:50:13] Clearing fields. Current state: {} [2019-09-30 08:50:13] Raw data: 00000000 00000000 [2019-09-30 08:50:13] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:50:13] Raw data: 88001400 30000800 [2019-09-30 08:50:13] Result: {} [2019-09-30 08:50:13] Raw data: 00000000 00000000 [2019-09-30 08:50:13] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:50:39] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:50:39] MqttClient - device 0001, group 1 [2019-09-30 08:50:39] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:50:39] Enqueuing packet [2019-09-30 08:50:39] Enqueuing packet [2019-09-30 08:50:39] Switching to next packet, 2 packets in queue [2019-09-30 08:50:39] Sending packet (10 repeats): [2019-09-30 08:50:39] 00 DB E1 24 63 DF 50 66 60 [2019-09-30 08:50:39] Er66 60 [2019-09-30 08:50:39] Elapsed: 47 [2019-09-30 08:50:39] Sending par66 60 [2019-09-30 08:50:39] Elapsed: 46 [2019-09-30 08:50:39] Sending par66 60 [2019-09-30 08:50:39] Elapsed: 51 [2019-09-30 08:50:39] Sending par6Etemai"8t"0.0"bulb_mode":"color","hue":28} [2019-09-30 08:50:39] Rat0e [2019-09-30 08:50:39] Sets in queue [2019-09-30 08:50:39] Sending packet (10r66 A6 [2019-09-30 08:50:39] Elapsed: 46 [2019-09-30 08:50:40] Sending par6Er6Er6Erepeats): [2019-09-30 08:50:40] 00 DB E1 24 61 C6 51 6Elapsed: 46 [2019-09-30 08:50:40] Patching existing state with: {"saturation":13} [2019-09-30 08:50:40] GroupState::patch: State changed: {} [2019-09-30 08:50:40] Raw data: 000D0000 30000100 [2019-09-30 08:50:40] Patching existing state with: : {} [2019-09-30 08:50:40] Raw data: 000D0000 30000100 [2019-09-30 08:50:40] [2019-09-30 08:50:40] Patching existing state with: : {} [2019-09-30 08:50:40] Raw data: 000D0000 30000100 [2019-09-30 08:50:40] [2019-09-30 08:50:40] Clearing fields. Current state: {} [2019-09-30 08:50:40] Raw data: 00000000 00000000 [2019-09-30 08:50:40] Other state: {} [2019-09-30 08:50:40] Raw data: 000D0000 30000100 [2019-09-30 08:50:40] Result: {} [2019-09-30 08:50:40] Raw data: 00000000 00000000 [2019-09-30 08:50:40] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:50:42] Enqueuing packet [2019-09-30 08:50:42] Switching to next packet, 1 packets in queue [2019-09-30 08:50:42] Sending packet (10 repeats): [2019-09-30 08:50:42] 00 DB E1 24 63 DC 4E 66 5B [2019-09-30 08:50:42] Elapsed: 47 [2019-09-30 08:50:42] Sending packet (10 repeats): [2019-09-30 08:50:42] 00 DB E1 24 63 DC 4E 66 5B [2019-09-30 08:50:42] Elapsed: 46 [2019-09-30 08:50:42] Sending packet (10 repeats): [2019-09-30 08:50:42] 00 DB E1 24 63 DC 4E 66 5B [2019-09-30 08:50:42] Elapsed: 48 [2019-09-30 08:50:42] Sending packet (10 repeats): [2019-09-30 08:50:42] 00 DB E1 24 63 DC 4E 66 5B [2019-09-30 08:50:42] Elapsed: 47 [2019-09-30 08:50:42] Sending packet (10 repeats): [2019-09-30 08:50:42] 00 DB E1 24 63 DC 4E 66 5B [2019-09-30 08:50:42] Elapsed: 46 [2019-09-30 08:50:42] Patching existing state with: {"hue":30} [2019-09-30 08:50:42] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:50:42] Raw data: 88001500 30000800 [2019-09-30 08:50:42] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:50:42] Raw data: 88001500 30000800 [2019-09-30 08:50:42] [2019-09-30 08:50:42] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:50:42] Raw data: 88001500 30000800 [2019-09-30 08:50:42] [2019-09-30 08:50:42] Clearing fields. Current state: {} [2019-09-30 08:50:42] Raw data: 00000000 00000000 [2019-09-30 08:50:42] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:50:42] Raw data: 88001500 30000800 [2019-09-30 08:50:42] Result: {} [2019-09-30 08:50:42] Raw data: 00000000 00000000 [2019-09-30 08:50:42] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:50:44] Enqueuing packet [2019-09-30 08:50:44] Switching to next packet, 1 packets in queue [2019-09-30 08:50:44] Sending packet (10 repeats): [2019-09-30 08:50:44] 00 DB E1 24 63 DF 4F 66 5B [2019-09-30 08:50:44] Elapsed: 46 [2019-09-30 08:50:44] Sending packet (10 repeats): [2019-09-30 08:50:44] 00 DB E1 24 63 DF 4F 66 5B [2019-09-30 08:50:44] Elapsed: 46 [2019-09-30 08:50:44] Sending packet (10 repeats): [2019-09-30 08:50:44] 00 DB E1 24 63 DF 4F 66 5B [2019-09-30 08:50:44] Elapsed: 51 [2019-09-30 08:50:44] Sending packet (10 repeats): [2019-09-30 08:50:44] 00 DB E1 24 63 DF 4F 66 5B [2019-09-30 08:50:44] Elapsed: 46 [2019-09-30 08:50:44] Sending packet (10 repeats): [2019-09-30 08:50:44] 00 DB E1 24 63 DF 4F 66 5B [2019-09-30 08:50:44] Elapsed: 46 [2019-09-30 08:50:44] Patching existing state with: {"hue":28} [2019-09-30 08:50:44] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:50:44] Raw data: 88001400 30000800 [2019-09-30 08:50:44] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:50:44] Raw data: 88001400 30000800 [2019-09-30 08:50:44] [2019-09-30 08:50:44] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:50:44] Raw data: 88001400 30000800 [2019-09-30 08:50:44] [2019-09-30 08:50:44] Clearing fields. Current state: {} [2019-09-30 08:50:44] Raw data: 00000000 00000000 [2019-09-30 08:50:44] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:50:44] Raw data: 88001400 30000800 [2019-09-30 08:50:44] Result: {} [2019-09-30 08:50:44] Raw data: 00000000 00000000 [2019-09-30 08:50:44] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:51:10] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:51:10] MqttClient - device 0001, group 1 [2019-09-30 08:51:10] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:51:10] Enqueuing packet [2019-09-30 08:51:10] Enqueuing packet [2019-09-30 08:51:10] Switching to next packet, 2 packets in queue [2019-09-30 08:51:10] SeDB E1 24 63 DF 4C 66 5C [2019-09-30 08:51:10] Elapsr6Elapsedr66 5C [2019-09-30 08:51:10] Er6Erepeats): [2019-09-30 08:51:10] 00 DB E1 24 63 DF 4C6Elapsedte::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:51:10] Raw data: 88001400 30000800 [2019-09-30 08:51:10] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:51:10] Raw data: 88001400 30000800 [2019-09-30 08:51:10] [2019-09-30 08:51:10] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:51:10] Raw data: 88001400 30000800 [2019-09-30 08:51:10] [2019-09-30 08:51:10] Clearing fields. Current state: {} [2019-09-30 08:51:10] Raw data: 00000000 00000000 [2019-09-30 08:51:10] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:51:10] Raw data: 88001400 30000800 [2019-09-30 08:51:10] Result: {} [2019-09-30 08:51:10] Raw data: 00000000 00000000 [2019-09-30 08:51:10] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:51:10] Switching to next packet, 1 packets in queue [2019-09-30 08:51:10] Sending packet (10 repeats): [2019-09-30 08:51:10] 00 DB E1 24 61 C6 4D 66 A2 [2019-09-30 08:51:10] Elapsed: 46 [2019-09-30 08:51:10] Sending packet (10 repeats): [2019-09-30 08:51:10] 00 DB E1 24 61 C6 4D 66 A2 [2019-09-30 08:51:10] Elapsed: 52 [2019-09-30 08:51:10] Sending packet (10 repeats): [2019-09-30 08:51:10] 00 DB E1 24 61 C6 4D 66 A2 [2019-09-30 08:51:10] Elapsed: 46 [2019-09-30 08:51:10] Sending packet (10 repeats): [2019-09-30 08:51:10] 00 DB E1 24 61 C6 4D 66 A2 [2019-09-30 08:51:10] Elapsed: 47 [2019-09-30 08:51:10] Sending packet (10 repeats): [2019-09-30 08:51:10] 00 DB E1 24 61 C6 4D 66 A2 [2019-09-30 08:51:10] Elapsed: 46 [2019-09-30 08:51:10] Patching existing state with: {"saturation":13} [2019-09-30 08:51:10] GroupState::patch: State changed: {} [2019-09-30 08:51:10] Raw data: 000D0000 30000100 [2019-09-30 08:51:10] Patching existing state with: : {} [2019-09-30 08:51:10] Raw data: 000D0000 30000100 [2019-09-30 08:51:10] [2019-09-30 08:51:10] Patching existing state with: : {} [2019-09-30 08:51:10] Raw data: 000D0000 30000100 [2019-09-30 08:51:10] [2019-09-30 08:51:10] Clearing fields. Current state: {} [2019-09-30 08:51:10] Raw data: 00000000 00000000 [2019-09-30 08:51:10] Other state: {} [2019-09-30 08:51:10] Raw data: 000D0000 30000100 [2019-09-30 08:51:10] Result: {} [2019-09-30 08:51:10] Raw data: 00000000 00000000 [2019-09-30 08:51:11] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:51:12] Enqueuing packet [2019-09-30 08:51:12] Switching to next packet, 1 packets in queue [2019-09-30 08:51:12] Sending packet (10 repeats): [2019-09-30 08:51:12] 00 DB E1 24 63 DC BA 66 47 [2019-09-30 08:51:12] Elapsed: 47 [2019-09-30 08:51:12] Sending packet (10 repeats): [2019-09-30 08:51:12] 00 DB E1 24 63 DC BA 66 47 [2019-09-30 08:51:12] Elapsed: 46 [2019-09-30 08:51:12] Sending packet (10 repeats): [2019-09-30 08:51:12] 00 DB E1 24 63 DC BA 66 47 [2019-09-30 08:51:12] Elapsed: 52 [2019-09-30 08:51:12] Sending packet (10 repeats): [2019-09-30 08:51:12] 00 DB E1 24 63 DC BA 66 47 [2019-09-30 08:51:12] Elapsed: 46 [2019-09-30 08:51:12] Sending packet (10 repeats): [2019-09-30 08:51:12] 00 DB E1 24 63 DC BA 66 47 [2019-09-30 08:51:12] Elapsed: 46 [2019-09-30 08:51:12] Patching existing state with: {"hue":30} [2019-09-30 08:51:12] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:51:12] Raw data: 88001500 30000800 [2019-09-30 08:51:12] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:51:12] Raw data: 88001500 30000800 [2019-09-30 08:51:12] [2019-09-30 08:51:12] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:51:12] Raw data: 88001500 30000800 [2019-09-30 08:51:12] [2019-09-30 08:51:12] Clearing fields. Current state: {} [2019-09-30 08:51:12] Raw data: 00000000 00000000 [2019-09-30 08:51:12] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:51:12] Raw data: 88001500 30000800 [2019-09-30 08:51:12] Result: {} [2019-09-30 08:51:12] Raw data: 00000000 00000000 [2019-09-30 08:51:12] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:51:15] Enqueuing packet [2019-09-30 08:51:15] Switching to next packet, 1 packets in queue [2019-09-30 08:51:15] Sending packet (10 repeats): [2019-09-30 08:51:15] 00 DB E1 24 63 DF BB 66 47 [2019-09-30 08:51:15] Elapsed: 46 [2019-09-30 08:51:15] Sending packet (10 repeats): [2019-09-30 08:51:15] 00 DB E1 24 63 DF BB 66 47 [2019-09-30 08:51:15] Elapsed: 49 [2019-09-30 08:51:15] Sending packet (10 repeats): [2019-09-30 08:51:15] 00 DB E1 24 63 DF BB 66 47 [2019-09-30 08:51:15] Elapsed: 46 [2019-09-30 08:51:15] Sending packet (10 repeats): [2019-09-30 08:51:15] 00 DB E1 24 63 DF BB 66 47 [2019-09-30 08:51:15] Elapsed: 46 [2019-09-30 08:51:15] Sending packet (10 repeats): [2019-09-30 08:51:15] 00 DB E1 24 63 DF BB 66 47 [2019-09-30 08:51:15] Elapsed: 46 [2019-09-30 08:51:15] Patching existing state with: {"hue":28} [2019-09-30 08:51:15] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:51:15] Raw data: 88001400 30000800 [2019-09-30 08:51:15] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:51:15] Raw data: 88001400 30000800 [2019-09-30 08:51:15] [2019-09-30 08:51:15] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:51:15] Raw data: 88001400 30000800 [2019-09-30 08:51:15] [2019-09-30 08:51:15] Clearing fields. Current state: {} [2019-09-30 08:51:15] Raw data: 00000000 00000000 [2019-09-30 08:51:15] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:51:15] Raw data: 88001400 30000800 [2019-09-30 08:51:15] Result: {} [2019-09-30 08:51:15] Raw data: 00000000 00000000 [2019-09-30 08:51:15] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:51:42] Mc: milight/commands/0x1/rgb_cct1pF/EeeDEr6Er6Er6Er6Etemai"8t"0.0"at0e [2019-09-30 08:51:42] Sets in queue [2019-09-30 08:51:42] Sending packet (10r66 AE [2019-09-30 08:51:42] Elapsed: 47 [2019-09-30 08:51:42] Sending par66 AE [2019-09-30 08:51:42] Elapsed: 46 [2019-09-30 08:51:42] Sending par66 AE [2019-09-30 08:51:42] Elapsed: 48 [2019-09-30 08:51:42] Sending par66 AE [2019-09-30 08:51:42] Elapsed: 46 [2019-09-30 08:51:42] Sending par66 AE [2019-09-30 08:51:42] Elapsed: 47 [2019-09-30 08:51:42] Patching etate with: {"saturation":13} [2019-09-30 08:51:42] Gro{} [2019-09-30 08:51:42] Raw data: 000D0000 30000100P{ : {} [2019-09-30 08:51:42] Raw data: 000D0000 3000010ate: {} [2019-09-30 08:51:42] Raw data: 00000000 0000000D0000 30000100 [2019-09-30 08:51:42] Result: {} [2019-09-30 08:51:44] RwMqttClient - publishing uoEeeDErepeats): [2019-09-30 08:51:44] 00 DB E1 24 63 DC B66Elapsedr6Er6Erepeats): [2019-09-30 08:51:44] 00 DB E1 24 63 DC B6 66 43 [2019-09-30 08:51:44] Elapsed: 46 [2019-09-30 08:51:44] Patching existing state with: {"hue":30} [2019-09-30 08:51:44] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:51:44] Raw data: 88001500 30000800 [2019-09-30 08:51:44] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:51:44] Raw data: 88001500 30000800 [2019-09-30 08:51:44] [2019-09-30 08:51:44] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:51:44] Raw data: 88001500 30000800 [2019-09-30 08:51:44] [2019-09-30 08:51:44] Clearing fields. Current state: {} [2019-09-30 08:51:44] Raw data: 00000000 00000000 [2019-09-30 08:51:44] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:51:44] Raw data: 88001500 30000800 [2019-09-30 08:51:44] Result: {} [2019-09-30 08:51:44] Raw data: 00000000 00000000 [2019-09-30 08:51:44] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:51:47] Enqueuing packet [2019-09-30 08:51:47] Switching to next packet, 1 packets in queue [2019-09-30 08:51:47] Sending packet (10 repeats): [2019-09-30 08:51:47] 00 DB E1 24 63 DF B7 66 43 [2019-09-30 08:51:47] Elapsed: 47 [2019-09-30 08:51:47] Sending packet (10 repeats): [2019-09-30 08:51:47] 00 DB E1 24 63 DF B7 66 43 [2019-09-30 08:51:47] Elapsed: 46 [2019-09-30 08:51:47] Sending packet (10 repeats): [2019-09-30 08:51:47] 00 DB E1 24 63 DF B7 66 43 [2019-09-30 08:51:47] Elapsed: 48 [2019-09-30 08:51:47] Sending packet (10 repeats): [2019-09-30 08:51:47] 00 DB E1 24 63 DF B7 66 43 [2019-09-30 08:51:47] Elapsed: 49 [2019-09-30 08:51:47] Sending packet (10 repeats): [2019-09-30 08:51:47] 00 DB E1 24 63 DF B7 66 43 [2019-09-30 08:51:47] Elapsed: 46 [2019-09-30 08:51:47] Patching existing state with: {"hue":28} [2019-09-30 08:51:47] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:51:47] Raw data: 88001400 30000800 [2019-09-30 08:51:47] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:51:47] Raw data: 88001400 30000800 [2019-09-30 08:51:47] [2019-09-30 08:51:47] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:51:47] Raw data: 88001400 30000800 [2019-09-30 08:51:47] [2019-09-30 08:51:47] Clearing fields. Current state: {} [2019-09-30 08:51:47] Raw data: 00000000 00000000 [2019-09-30 08:51:47] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:51:47] Raw data: 88001400 30000800 [2019-09-30 08:51:47] Result: {} [2019-09-30 08:51:47] Raw data: 00000000 00000000 [2019-09-30 08:51:47] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:52:12] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:52:12] MqttClient - device 0001, group 1 [2019-09-30 08:52:12] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:52:12] Enqueuing packet [2019-09-30 08:52:12] Enqueuing packet [2019-09-30 08:52:12] Switching to next packet, 2 packets in queue [2019-09-30 08:52:12] Sending packet (10 repeats): [2019-09-30 08:52:12] 00 DB E1 24 63 DF B4 66 44 [2019-09-30 08:52:12] Elapsed: 46 [2019-09-30 08:52:12] Sending packet (10 repeats): [2019-09-30 08:52:12] 00 DB E1 24 63 DF B4 66 44 [2019-09-30 08:52:12] Elapsed: 48 [2019-09-30 08:52:12] Sending packet (10 repeats): [2019-09-30 08:52:12] 00 DB E1 24 63 DF B4 66 44 [2019-09-30 08:52:12] Elapsed: 51 [2019-09-30 08:52:12] Sending packet (10 repeats): [2019-09-30 08:52:12] 00 DB E1 24 63 DF B4 66 44 [2019-09-30 08:52:12] Elapsed: 46 [2019-09-30 08:52:12] Sending packet (10 repeats): [2019-09-30 08:52:12] 00 DB E1 24 63 DF B4 66 44 [2019-09-30 08:52:12] Elapsed: 45 [2019-09-30 08:52:12] Patching existing state with: {"hue":28} [2019-09-30 08:52:12] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:52:12] Raw data: 88001400 30000800 [2019-09-30 08:52:12] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:52:12] Raw data: 88001400 30000800 [2019-09-30 08:52:12] [2019-09-30 08:52:12] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:52:12] Raw data: 88001400 30000800 [2019-09-30 08:52:12] [2019-09-30 08:52:12] Clearing fields. Current state: {} [2019-09-30 08:52:12] Raw data: 00000000 00000000 [2019-09-30 08:52:12] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:52:12] Raw data: 88001400 30000800 [2019-09-30 08:52:12] Result: {} [2019-09-30 08:52:12] Raw data: 00000000 00000000 [2019-09-30 08:52:12] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:52:12] Switching to next packet, 1 packets in queue [2019-09-30 08:52:12] Sending packet (10 repeats): [2019-09-30 08:52:12] 00 DB E1 24 61 C6 B5 66 AA [2019-09-30 08:52:12] Elapsed: 50 [2019-09-30 08:52:12] Sending packet (10 repeats): [2019-09-30 08:52:12] 00 DB E1 24 61 C6 B5 66 AA [2019-09-30 08:52:12] Elapsed: 45 [2019-09-30 08:52:12] Sending packet (10 repeats): [2019-09-30 08:52:12] 00 DB E1 24 61 C6 B5 66 AA [2019-09-30 08:52:13] Elapsed: 46 [2019-09-30 08:52:13] Sending packet (10 repeats): [2019-09-30 08:52:13] 00 DB E1 24 61 C6 B5 66 AA [2019-09-30 08:52:13] Elapsed: 46 [2019-09-30 08:52:13] Sending packet (10 repeats): [2019-09-30 08:52:13] 00 DB E1 24 61 C6 B5 66 AA [2019-09-30 08:52:13] Elapsed: 50 [2019-09-30 08:52:13] Patching existing state with: {"saturation":13} [2019-09-30 08:52:13] GroupState::patch: State changed: {} [2019-09-30 08:52:13] Raw data: 000D0000 30000100 [2019-09-30 08:52:13] Patching existing state with: : {} [2019-09-30 08:52:13] Raw data: 000D0000 30000100 [2019-09-30 08:52:13] [2019-09-30 08:52:13] Patching existing state with: : {} [2019-09-30 08:52:13] Raw data: 000D0000 30000100 [2019-09-30 08:52:13] [2019-09-30 08:52:13] Clearing fields. Current state: {} [2019-09-30 08:52:13] Raw data: 00000000 00000000 [2019-09-30 08:52:13] Other state: {} [2019-09-30 08:52:13] Raw data: 000D0000 30000100 [2019-09-30 08:52:13] Result: {} [2019-09-30 08:52:13] Raw data: 00000000 00000000 [2019-09-30 08:52:13] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:52:15] Enqueuing packet [2019-09-30 08:52:15] Switching to next packet, 1 packets in queue [2019-09-30 08:52:15] Sending packet (10 repeats): [2019-09-30 08:52:15] 00 DB E1 24 63 DC C2 66 4F [2019-09-30 08:52:15] Elapsed: 46 [2019-09-30 08:52:15] Sending packet (10 repeats): [2019-09-30 08:52:15] 00 DB E1 24 63 DC C2 66 4F [2019-09-30 08:52:15] Elapsed: 53 [2019-09-30 08:52:15] Sending packet (10 repeats): [2019-09-30 08:52:15] 00 DB E1 24 63 DC C2 66 4F [2019-09-30 08:52:15] Elapsed: 46 [2019-09-30 08:52:15] Sending packet (10 repeats): [2019-09-30 08:52:15] 00 DB E1 24 63 DC C2 66 4F [2019-09-30 08:52:15] Elapsed: 47 [2019-09-30 08:52:15] Sending packet (10 repeats): [2019-09-30 08:52:15] 00 DB E1 24 63 DC C2 66 4F [2019-09-30 08:52:15] Elapsed: 46 [2019-09-30 08:52:15] Patching existing state with: {"hue":30} [2019-09-30 08:52:15] GroupState::patch: State changed: {"bulb_mode":"color","hue":30} [2019-09-30 08:52:15] Raw data: 88001500 30000800 [2019-09-30 08:52:15] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:52:15] Raw data: 88001500 30000800 [2019-09-30 08:52:15] [2019-09-30 08:52:15] Patching existing state with: : {"bulb_mode":"color","hue":30} [2019-09-30 08:52:15] Raw data: 88001500 30000800 [2019-09-30 08:52:15] [2019-09-30 08:52:15] Clearing fields. Current state: {} [2019-09-30 08:52:15] Raw data: 00000000 00000000 [2019-09-30 08:52:15] Other state: {"bulb_mode":"color","hue":30} [2019-09-30 08:52:15] Raw data: 88001500 30000800 [2019-09-30 08:52:15] Result: {} [2019-09-30 08:52:15] Raw data: 00000000 00000000 [2019-09-30 08:52:15] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:52:17] Enqueuing packet [2019-09-30 08:52:17] Switching to next packet, 1 packets in queue [2019-09-30 08:52:17] Sending packet (10 repeats): [2019-09-30 08:52:17] 00 DB E1 24 63 DF C3 66 4F [2019-09-30 08:52:17] Elapsed: 51 [2019-09-30 08:52:17] Sending packet (10 repeats): [2019-09-30 08:52:17] 00 DB E1 24 63 DF C3 66 4F [2019-09-30 08:52:17] Elapsed: 46 [2019-09-30 08:52:17] Sending packet (10 repeats): [2019-09-30 08:52:17] 00 DB E1 24 63 DF C3 66 4F [2019-09-30 08:52:17] Elapsed: 47 [2019-09-30 08:52:17] Sending packet (10 repeats): [2019-09-30 08:52:17] 00 DB E1 24 63 DF C3 66 4F [2019-09-30 08:52:17] Elapsed: 46 [2019-09-30 08:52:17] Sending packet (10 repeats): [2019-09-30 08:52:17] 00 DB E1 24 63 DF C3 66 4F [2019-09-30 08:52:17] Elapsed: 47 [2019-09-30 08:52:17] Patching existing state with: {"hue":28} [2019-09-30 08:52:17] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:52:17] Raw data: 88001400 30000800 [2019-09-30 08:52:17] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:52:17] Raw data: 88001400 30000800 [2019-09-30 08:52:17] [2019-09-30 08:52:17] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:52:17] Raw data: 88001400 30000800 [2019-09-30 08:52:17] [2019-09-30 08:52:17] Clearing fields. Current state: {} [2019-09-30 08:52:17] Raw data: 00000000 00000000 [2019-09-30 08:52:17] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:52:17] Raw data: 88001400 30000800 [2019-09-30 08:52:17] Result: {} [2019-09-30 08:52:17] Raw data: 00000000 00000000 [2019-09-30 08:52:17] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:52:43] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:52:43] MqttClient - device 0001, group 1 [2019-09-30 08:52:43] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:52:43] Enqueuing packet [2019-09-30 08:52:43] Enqueuing packet [2019-09-30 08:52:43] Switching to next packet, 2 packets in queue [2019-09-30 08:52:43] Sending packet (10 repeats): [2019-09-30 08:52:43] 00 DB E1 24 63 DF C0 66 50 [2019-09-30 08:52:43] Elapsed: 47 [2019-09-30 08:52:43] Sending packet (10 repeats): [2019-09-30 08:52:43] 00 DB E1 24 63 DF C0 66 50 [2019-09-30 08:52:43] Elapsed: 47 [2019-09-30 08:52:43] Sending packet (10 repeats): [2019-09-30 08:52:43] 00 DB E1 24 63 DF C0 66 50 [2019-09-30 08:52:43] Elapsed: 46 [2019-09-30 08:52:43] Sending packet (10 repeats): [2019-09-30 08:52:43] 00 DB E1 24 63 DF C0 66 50 [2019-09-30 08:52:43] Elapsed: 46 [2019-09-30 08:52:43] Sending packet (10 repeats): [2019-09-30 08:52:43] 00 DB E1 24 63 DF C0 66 50 [2019-09-30 08:52:43] Elapsed: 46 [2019-09-30 08:52:43] Patching existing state with: {"hue":28} [2019-09-30 08:52:43] GroupState::patch: State changed: {"bulb_mode":"color","hue":28} [2019-09-30 08:52:43] Raw data: 88001400 30000800 [2019-09-30 08:52:43] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:52:43] Raw data: 88001400 30000800 [2019-09-30 08:52:43] [2019-09-30 08:52:43] Patching existing state with: : {"bulb_mode":"color","hue":28} [2019-09-30 08:52:43] Raw data: 88001400 30000800 [2019-09-30 08:52:43] [2019-09-30 08:52:43] Clearing fields. Current state: {} [2019-09-30 08:52:43] Raw data: 00000000 00000000 [2019-09-30 08:52:43] Other state: {"bulb_mode":"color","hue":28} [2019-09-30 08:52:43] Raw data: 88001400 30000800 [2019-09-30 08:52:43] Result: {} [2019-09-30 08:52:43] Raw data: 00000000 00000000 [2019-09-30 08:52:43] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:52:43] Switching to next packet, 1 packets in queue [2019-09-30 08:52:43] Sending packet (10 repeats): [2019-09-30 08:52:43] 00 DB E1 24 61 C6 C1 66 16 [2019-09-30 08:52:43] Elapsed: 46 [2019-09-30 08:52:43] Sending packet (10 repeats): [2019-09-30 08:52:43] 00 DB E1 24 61 C6 C1 66 16 [2019-09-30 08:52:43] Elapsed: 46 [2019-09-30 08:52:43] Sending packet (10 repeats): [2019-09-30 08:52:43] 00 DB E1 24 61 C6 C1 66 16 [2019-09-30 08:52:43] Elapsed: 45 [2019-09-30 08:52:43] Sending packet (10 repeats): [2019-09-30 08:52:43] 00 DB E1 24 61 C6 C1 66 16 [2019-09-30 08:52:44] Elapsed: 48 [2019-09-30 08:52:44] Sending packet (10 repeats): [2019-09-30 08:52:44] 00 DB E1 24 61 C6 C1 66 16 [2019-09-30 08:52:44] Elapsed: 48 [2019-09-30 08:52:44] Patching existing state with: {"saturation":13} [2019-09-30 08:52:44] GroupState::patch: State changed: {} [2019-09-30 08:52:44] Raw data: 000D0000 30000100 [2019-09-30 08:52:44] Patching existing state with: : {} [2019-09-30 08:52:44] Raw data: 000D0000 30000100 [2019-09-30 08:52:44] [2019-09-30 08:52:44] Patching existing state with: : {} [2019-09-30 08:52:44] Raw data: 000D0000 30000100 [2019-09-30 08:52:44] [2019-09-30 08:52:44] Clearing fields. Current state: {} [2019-09-30 08:52:44] Raw data: 00000000 00000000 [2019-09-30 08:52:44] Other state: {} [2019-09-30 08:52:44] Raw data: 000D0000 30000100 [2019-09-30 08:52:44] Result: {} [2019-09-30 08:52:44] Raw data: 00000000 00000000 [2019-09-30 08:52:44] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:52:46] EeeDErepeats): [2019-09-30 08:52:46] 00 DB E1 24 63 DE BEElapsed: 46 [2019-09-30 08:52:46] Sending packet (10 repeats): [2019-09-30 08:52:46] 00 DB E1 24 63 DE BE 66 4D [2019-09-30 08:52:46] Elapsed: 49 [2019-09-30 08:52:46] Sending packet (10 repeats): [2019-09-30 08:52:46] 00 DB E1 24 63 DE BE 66 4D [2019-09-30 08:52:46] Elapsed: 56 [2019-09-30 08:52:46] Sending packet (10 repeats): [2019-09-30 08:52:46] 00 DB E1 24 63 DE BE 66 4D [2019-09-30 08:52:46] Elapsed: 46 [2019-09-30 08:52:46] Patching existing state with: {"hue":27} [2019-09-30 08:52:46] GroupState::patch: State changed: {"bulb_mode":"color","hue":27} [2019-09-30 08:52:46] Raw data: 88001300 30000800 [2019-09-30 08:52:46] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:52:46] Raw data: 88001300 30000800 [2019-09-30 08:52:46] [2019-09-30 08:52:46] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:52:46] Raw data: 88001300 30000800 [2019-09-30 08:52:46] [2019-09-30 08:52:46] Clearing fields. Current state: {} [2019-09-30 08:52:46] Raw data: 00000000 00000000 [2019-09-30 08:52:46] Other state: {"bulb_mode":"color","hue":27} [2019-09-30 08:52:46] Raw data: 88001300 30000800 [2019-09-30 08:52:46] Result: {} [2019-09-30 08:52:46] Raw data: 00000000 00000000 [2019-09-30 08:52:46] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:52:48] Enqueuing packet [2019-09-30 08:52:48] Switching to next packet, 1 packets in queue [2019-09-30 08:52:48] Sending packet (10 repeats): [2019-09-30 08:52:48] 00 DB E1 24 63 E1 BF 66 4D [2019-09-30 08:52:48] Elapsed: 47 [2019-09-30 08:52:48] Sending packet (10 repeats): [2019-09-30 08:52:48] 00 DB E1 24 63 E1 BF 66 4D [2019-09-30 08:52:48] Elapsed: 47 [2019-09-30 08:52:48] Sending packet (10 repeats): [2019-09-30 08:52:48] 00 DB E1 24 63 E1 BF 66 4D [2019-09-30 08:52:48] Elapsed: 46 [2019-09-30 08:52:48] Sending packet (10 repeats): [2019-09-30 08:52:48] 00 DB E1 24 63 E1 BF 66 4D [2019-09-30 08:52:48] Elapsed: 47 [2019-09-30 08:52:48] Sending packet (10 repeats): [2019-09-30 08:52:48] 00 DB E1 24 63 E1 BF 66 4D [2019-09-30 08:52:48] Elapsed: 46 [2019-09-30 08:52:48] Patching existing state with: {"hue":25} [2019-09-30 08:52:48] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:52:48] Raw data: 88001200 30000800 [2019-09-30 08:52:48] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:52:48] Raw data: 88001200 30000800 [2019-09-30 08:52:48] [2019-09-30 08:52:48] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:52:48] Raw data: 88001200 30000800 [2019-09-30 08:52:48] [2019-09-30 08:52:48] Clearing fields. Current state: {} [2019-09-30 08:52:48] Raw data: 00000000 00000000 [2019-09-30 08:52:48] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:52:48] Raw data: 88001200 30000800 [2019-09-30 08:52:48] Result: {} [2019-09-30 08:52:48] Raw data: 00000000 00000000 [2019-09-30 08:52:48] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:53:14] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:53:14] MqttClient - device 0001, group 1 [2019-09-30 08:53:14] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:53:14] Enqueuing packet [2019-09-30 08:53:14] Enqueuing packet [2019-09-30 08:53:14] Switching to next packet, 2 packets in queue [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 63 E1 BC 66 4E [2019-09-30 08:53:14] Elapsed: 48 [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 63 E1 BC 66 4E [2019-09-30 08:53:14] Elapsed: 51 [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 63 E1 BC 66 4E [2019-09-30 08:53:14] Elapsed: 47 [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 63 E1 BC 66 4E [2019-09-30 08:53:14] Elapsed: 46 [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 63 E1 BC 66 4E [2019-09-30 08:53:14] Elapsed: 46 [2019-09-30 08:53:14] Patching existing state with: {"hue":25} [2019-09-30 08:53:14] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:53:14] Raw data: 88001200 30000800 [2019-09-30 08:53:14] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:53:14] Raw data: 88001200 30000800 [2019-09-30 08:53:14] [2019-09-30 08:53:14] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:53:14] Raw data: 88001200 30000800 [2019-09-30 08:53:14] [2019-09-30 08:53:14] Clearing fields. Current state: {} [2019-09-30 08:53:14] Raw data: 00000000 00000000 [2019-09-30 08:53:14] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:53:14] Raw data: 88001200 30000800 [2019-09-30 08:53:14] Result: {} [2019-09-30 08:53:14] Raw data: 00000000 00000000 [2019-09-30 08:53:14] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:53:14] Switching to next packet, 1 packets in queue [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 61 C6 BD 66 12 [2019-09-30 08:53:14] Elapsed: 47 [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 61 C6 BD 66 12 [2019-09-30 08:53:14] Elapsed: 46 [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 61 C6 BD 66 12 [2019-09-30 08:53:14] Elapsed: 46 [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 61 C6 BD 66 12 [2019-09-30 08:53:14] Elapsed: 51 [2019-09-30 08:53:14] Sending packet (10 repeats): [2019-09-30 08:53:14] 00 DB E1 24 61 C6 BD 66 12 [2019-09-30 08:53:15] Elapsed: 49 [2019-09-30 08:53:15] Patching existing state with: {"saturation":13} [2019-09-30 08:53:15] GroupState::patch: State changed: {} [2019-09-30 08:53:15] Raw data: 000D0000 30000100 [2019-09-30 08:53:15] Patching existing state with: : {} [2019-09-30 08:53:15] Raw data: 000D0000 30000100 [2019-09-30 08:53:15] [2019-09-30 08:53:15] Patching existing state with: : {} [2019-09-30 08:53:15] Raw data: 000D0000 30000100 [2019-09-30 08:53:15] [2019-09-30 08:53:15] Clearing fields. Current state: {} [2019-09-30 08:53:15] Raw data: 00000000 00000000 [2019-09-30 08:53:15] Other state: {} [2019-09-30 08:53:15] Raw data: 000D0000 30000100 [2019-09-30 08:53:15] Result: {} [2019-09-30 08:53:15] Raw data: 00000000 00000000 [2019-09-30 08:53:15] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:53:19] Eext packet, 1 packets in queue [2019-09-30 08:53:19] eDB E1 24 63 E1 AA 66 4C [2019-09-30 08:53:19] Elapsr66 4C [2019-09-30 08:53:19] Elapsed: 46 [2019-09-30 08:53:19] Sending par66 4C [2019-09-30 08:53:19] Elapsed: 45 [2019-09-30 08:53:19] Sending par66 4C [2019-09-30 08:53:19] Elapsed: 52 [2019-09-30 08:53:19] Sending par66 4C [2019-09-30 08:53:19] Elapsed: 47 [2019-09-30 08:53:19] Patching ete::patch: State changed: {"bulbmai"8t"color","hue":25} [2019-09-30 08:53:19] Raw data: 880. Current state: {} [2019-09-30 08:53:19] Raw data:0"bulb_mode":"color","hue":25} [2019-09-30 08:53:19] aw data: 88001200 30000800 [2019-09-30 08:53:19] Resul00 [2019-09-30 08:53:19] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:53:45] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:53:45] MqttClient - device 0001, group 1 [2019-09-30 08:53:45] Enqueuing packet [2019-09-30 08:53:45] Enqueuing packet [2019-09-30 08:53:45] Switching to next packet, 2 packets in queue [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 63 E1 AB 66 49 [2019-09-30 08:53:45] Elapsed: 46 [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 63 E1 AB 66 49 [2019-09-30 08:53:45] Elapsed: 47 [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 63 E1 AB 66 49 [2019-09-30 08:53:45] Elapsed: 45 [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 63 E1 AB 66 49 [2019-09-30 08:53:45] Elapsed: 48 [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 63 E1 AB 66 49 [2019-09-30 08:53:45] Elapsed: 46 [2019-09-30 08:53:45] Patching existing state with: {"hue":25} [2019-09-30 08:53:45] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:53:45] Raw data: 88001200 30000800 [2019-09-30 08:53:45] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:53:45] Raw data: 88001200 30000800 [2019-09-30 08:53:45] [2019-09-30 08:53:45] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:53:45] Raw data: 88001200 30000800 [2019-09-30 08:53:45] [2019-09-30 08:53:45] Clearing fields. Current state: {} [2019-09-30 08:53:45] Raw data: 00000000 00000000 [2019-09-30 08:53:45] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:53:45] Raw data: 88001200 30000800 [2019-09-30 08:53:45] Result: {} [2019-09-30 08:53:45] Raw data: 00000000 00000000 [2019-09-30 08:53:45] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:53:45] Switching to next packet, 1 packets in queue [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 61 C6 A8 66 1D [2019-09-30 08:53:45] Elapsed: 46 [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 61 C6 A8 66 1D [2019-09-30 08:53:45] Elapsed: 47 [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 61 C6 A8 66 1D [2019-09-30 08:53:45] Elapsed: 45 [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 61 C6 A8 66 1D [2019-09-30 08:53:45] Elapsed: 46 [2019-09-30 08:53:45] Sending packet (10 repeats): [2019-09-30 08:53:45] 00 DB E1 24 61 C6 A8 66 1D [2019-09-30 08:53:45] Elapsed: 47 [2019-09-30 08:53:45] Patching existing state with: {"saturation":13} [2019-09-30 08:53:45] GroupState::patch: State changed: {} [2019-09-30 08:53:45] Raw data: 000D0000 30000100 [2019-09-30 08:53:45] Patching existing state with: : {} [2019-09-30 08:53:45] Raw data: 000D0000 30000100 [2019-09-30 08:53:45] [2019-09-30 08:53:45] Patching existing state with: : {} [2019-09-30 08:53:45] Raw data: 000D0000 30000100 [2019-09-30 08:53:45] [2019-09-30 08:53:45] Clearing fields. Current state: {} [2019-09-30 08:53:45] Raw data: 00000000 00000000 [2019-09-30 08:53:45] Other state: {} [2019-09-30 08:53:45] Raw data: 000D0000 30000100 [2019-09-30 08:53:45] Result: {} [2019-09-30 08:53:45] Raw data: 00000000 00000000 [2019-09-30 08:53:50] Enqueuing packet [2019-09-30 08:53:50] Switching to next packet, 1 packets in queue [2019-09-30 08:53:50] Sending packet (10 repeats): [2019-09-30 08:53:50] 00 DB E1 24 63 DE A9 66 38 [2019-09-30 08:53:50] Elapsed: 46 [2019-09-30 08:53:50] Sending packet (10 repeats): [2019-09-30 08:53:50] 00 DB E1 24 63 DE A9 66 38 [2019-09-30 08:53:50] Elapsed: 46 [2019-09-30 08:53:50] Sending packet (10 repeats): [2019-09-30 08:53:50] 00 DB E1 24 63 DE A9 66 38 [2019-09-30 08:53:50] Elapsed: 47 [2019-09-30 08:53:50] Sending packet (10 repeats): [2019-09-30 08:53:50] 00 DB E1 24 63 DE A9 66 38 [2019-09-30 08:53:50] Elapsed: 46 [2019-09-30 08:53:50] Sending packet (10 repeats): [2019-09-30 08:53:50] 00 DB E1 24 63 DE A9 66 38 [2019-09-30 08:53:50] Elapsed: 46 [2019-09-30 08:53:50] Patching existing state with: {"hue":27} [2019-09-30 08:53:50] GroupState::patch: State changed: {"bulb_mode":"color","hue":27} [2019-09-30 08:53:50] Raw data: 88001300 30000800 [2019-09-30 08:53:50] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:53:50] Raw data: 88001300 30000800 [2019-09-30 08:53:50] [2019-09-30 08:53:50] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:53:50] Raw data: 88001300 30000800 [2019-09-30 08:53:50] [2019-09-30 08:53:50] Clearing fields. Current state: {} [2019-09-30 08:53:50] Raw data: 00000000 00000000 [2019-09-30 08:53:50] Other state: {"bulb_mode":"color","hue":27} [2019-09-30 08:53:50] Raw data: 88001300 30000800 [2019-09-30 08:53:50] Result: {} [2019-09-30 08:53:50] Raw data: 00000000 00000000 [2019-09-30 08:53:50] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:54:16] M[2019-09-30 08:54:21] Eext packet, 1 packets in queue [2019-09-30 08:54:21] eDB E1 24 63 DE A4 66 33 [2019-09-30 08:54:21] Elapsr6Elapsedrepeats): [2019-09-30 08:54:21] 00 DB E1 24 636Elapsedrepeats): [2019-09-30 08:54:21] 00 DB E1 24 636Erepeats): [2019-09-30 08:54:21] 00 DB E1 24 63 DE A46Elapsedtate with: {"hue":27} [2019-09-30 08:54:21] Gremode":"color","hue":27} [2019-09-30 08:54:21] Raw daaisting state with: : {"bulb_mod"8001300 30000800 [2019-09-30 08:54:21] [2019-09-30 08:54:21] Patching exit"color","hue":27} [2019-09-30 08:54:21] Raw data: 880.00000000 00000000 [2019-09-30 08:54:21] Other state: "aw data: 88001300 30000800 [2019-09-30 08:54:21] Resut00 [2019-09-30 08:54:47] MqttClient - publishing updae [2019-09-30 08:54:47] MqttClient - Got message on toc:1pFlushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:54:47] Enqueuing packet [2019-09-30 08:54:47] Enqueuing packet [2019-09-30 08:54:47] Switching to next packet, 2 packets in queue [2019-09-30 08:54:47] SeDB E1 24 63 E1 A5 66 33 [2019-09-30 08:54:47] Elapsr6Erepeats): [2019-09-30 08:54:47] 00 DB E1 24 63 E1 A56Er66 33 [2019-09-30 08:54:47] Elapsed: 47 [2019-09-30 08:54:47] Sending par6Elapsedtate with: {"hue":25} [2019-09-30 08:54:47] Grema: 88001200 30000800 [2019-09-30 08:54:47] Patching ei"8001200 30000800 [2019-09-30 08:54:47] [2019-09-30 08:54:47] Patching exit"01200 30000800 [2019-09-30 08:54:47] [2019-09-30 08:54:47] Clearing field.0"bulb_mode":"color","hue":25} [2019-09-30 08:54:47] at00 [2019-09-30 08:54:47] MqttClient - publishing updae [2019-09-30 08:54:47] Sets in queue [2019-09-30 08:54:47] Sending packet (10r6Elapsedrepeats): [2019-09-30 08:54:47] 00 DB E1 24 616Erepeats): [2019-09-30 08:54:47] 00 DB E1 24 61 C6 B26Elapsedrepeats): [2019-09-30 08:54:47] 00 DB E1 24 616Elapsedr66 07 [2019-09-30 08:54:47] Elapsed: 46 [2019-09-30 08:54:47] Patching eto{} [2019-09-30 08:54:47] Raw data: 000D0000 30000100P{} [2019-09-30 08:54:47] Raw data: 000D0000 30000100 :0 [2019-09-30 08:54:47] [2019-09-30 08:54:48] Clearing fields. Current sa00w data: 00000000 00000000 [2019-09-30 08:54:52] MqttCoEeending packet (10 repeats): [2019-09-30 08:54:52] 00DErepeats): [2019-09-30 08:54:52] 00 DB E1 24 63 DE B36Erepeats): [2019-09-30 08:54:52] 00 DB E1 24 63 DE B36Erepeats): [2019-09-30 08:54:52] 00 DB E1 24 63 DE B36Er6Etemai"8t"0.0"at0e to milight/state/0x1/rgb_cct/ [2019-09-30 08:55:18] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1p 1 [2019-09-30 08:55:18] Flushing dirty state for 0x0001 /Enqueuing packet [2019-09-30 08:55:18] Switching to eeDElapsed: 46 [2019-09-30 08:55:18] Sending packr6Er6Er6Er6Etemode":"color","hue":25} [2019-09-30 08:55:18] Raw daai"8t"0.0"at0e [2019-09-30 08:55:18] Switching to next packet, 1 packets in queue [2019-09-30 08:55:18] Sending packet (10 repeats): [2019-09-30 08:55:18] 00 DB E1 24 61 C6 B1 66 06 [2019-09-30 08:55:18] Elapsed: 47 [2019-09-30 08:55:18] Sending packet (10 repeats): [2019-09-30 08:55:18] 00 DB E1 24 61 C6 B1 66 06 [2019-09-30 08:55:18] Elapsed: 47 [2019-09-30 08:55:18] Sending packet (10 repeats): [2019-09-30 08:55:18] 00 DB E1 24 61 C6 B1 66 06 [2019-09-30 08:55:18] Elapsed: 46 [2019-09-30 08:55:18] Sending packet (10 repeats): [2019-09-30 08:55:18] 00 DB E1 24 61 C6 B1 66 06 [2019-09-30 08:55:18] Elapsed: 46 [2019-09-30 08:55:18] Sending packet (10 repeats): [2019-09-30 08:55:18] 00 DB E1 24 61 C6 B1 66 06 [2019-09-30 08:55:18] Elapsed: 51 [2019-09-30 08:55:18] Patching existing state with: {"saturation":13} [2019-09-30 08:55:18] GroupState::patch: State changed: {} [2019-09-30 08:55:18] Raw data: 000D0000 30000100 [2019-09-30 08:55:18] Patching existing state with: : {} [2019-09-30 08:55:18] Raw data: 000D0000 30000100 [2019-09-30 08:55:18] [2019-09-30 08:55:18] Patching existing state with: : {} [2019-09-30 08:55:18] Raw data: 000D0000 30000100 [2019-09-30 08:55:18] [2019-09-30 08:55:18] Clearing fields. Current state: {} [2019-09-30 08:55:18] Raw data: 00000000 00000000 [2019-09-30 08:55:18] Other state: {} [2019-09-30 08:55:18] Raw data: 000D0000 30000100 [2019-09-30 08:55:18] Result: {} [2019-09-30 08:55:18] Raw data: 00000000 00000000 [2019-09-30 08:55:19] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:55:23] Enqueuing packet [2019-09-30 08:55:23] Switching to next packet, 1 packets in queue [2019-09-30 08:55:23] Sending packet (10 repeats): [2019-09-30 08:55:23] 00 DB E1 24 63 DE AE 66 3D [2019-09-30 08:55:23] Elapsed: 52 [2019-09-30 08:55:23] Sending packet (10 repeats): [2019-09-30 08:55:23] 00 DB E1 24 63 DE AE 66 3D [2019-09-30 08:55:23] Elapsed: 46 [2019-09-30 08:55:23] Sending packet (10 repeats): [2019-09-30 08:55:23] 00 DB E1 24 63 DE AE 66 3D [2019-09-30 08:55:23] Elapsed: 45 [2019-09-30 08:55:23] Sending packet (10 repeats): [2019-09-30 08:55:23] 00 DB E1 24 63 DE AE 66 3D [2019-09-30 08:55:23] Elapsed: 46 [2019-09-30 08:55:23] Sending packet (10 repeats): [2019-09-30 08:55:23] 00 DB E1 24 63 DE AE 66 3D [2019-09-30 08:55:23] Elapsed: 52 [2019-09-30 08:55:23] Patching existing state with: {"hue":27} [2019-09-30 08:55:23] GroupState::patch: State changed: {"bulb_mode":"color","hue":27} [2019-09-30 08:55:23] Raw data: 88001300 30000800 [2019-09-30 08:55:23] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:55:23] Raw data: 88001300 30000800 [2019-09-30 08:55:23] [2019-09-30 08:55:23] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:55:23] Raw data: 88001300 30000800 [2019-09-30 08:55:23] [2019-09-30 08:55:23] Clearing fields. Current state: {} [2019-09-30 08:55:23] Raw data: 00000000 00000000 [2019-09-30 08:55:23] Other state: {"bulb_mode":"color","hue":27} [2019-09-30 08:55:23] Raw data: 88001300 30000800 [2019-09-30 08:55:23] Result: {} [2019-09-30 08:55:23] Raw data: 00000000 00000000 [2019-09-30 08:55:23] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:55:49] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:55:49] MqttClient - device 0001, group 1 [2019-09-30 08:55:49] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:55:49] Enqueuing packet [2019-09-30 08:55:49] Enqueuing packet [2019-09-30 08:55:49] Switching to next packet, 2 packets in queue [2019-09-30 08:55:49] Sending packet (10 repeats): [2019-09-30 08:55:49] 00 DB E1 24 63 E1 AF 66 3D [2019-09-30 08:55:49] Elapsed: 46 [2019-09-30 08:55:49] Sending packet (10 repeats): [2019-09-30 08:55:49] 00 DB E1 24 63 E1 AF 66 3D [2019-09-30 08:55:49] Elapsed: 46 [2019-09-30 08:55:49] Sending packet (10 66 3D [2019-09-30 08:55:49] repeats): [2019-09-30 08:55:49] 00 DB E1 24 63 E1 AF Elapsed: 46 [2019-09-30 08:55:49] Sending packet (10 66 3D [2019-09-30 08:55:49] tate with: {"hue":25} [2019-09-30 08:55:49] GroupStatmode":"color","hue":25} [2019-09-30 08:55:49] Raw dataisting state with: : {"bulb_mod"8ting state with: : {"bulb_mode""0.0"at0e [2019-09-30 08:55:49] Ser6Er6Elapsed: 47 [2019-09-30 08:55:49] Sending packet (10 r6Er6Erepeats): [2019-09-30 08:55:49] 00 DB E1 24 61 C6 AC6ElapsedPatching existing state with: : {} [2019-09-30 08:55:49] Raw data: 000D0000 30000100 [2019-09-30 08:55:49] [2019-09-30 08:55:49] Patching existing state with: 0 [2019-09-30 08:55:49] [2019-09-30 08:55:49] Clearing fields. Current st000D0000 30000100 [2019-09-30 08:55:49] Result: {} [2019-09-30 08:55:50] RaMqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:55:54] Enqueuing packet [2019-09-30 08:55:54] Switching to next packet, 1 packets in queue [2019-09-30 08:55:54] Sending packet (10 repeats): [2019-09-30 08:55:54] 00 DB E1 24 63 DE AD 66 3C [2019-09-30 08:55:54] Elapsed: 46 [2019-09-30 08:55:54] Sending packet (10 repeats): [2019-09-30 08:55:54] 00 DB E1 24 63 DE AD 66 3C [2019-09-30 08:55:54] Elapsed: 47 [2019-09-30 08:55:54] Sending packet (10 repeats): [2019-09-30 08:55:54] 00 DB E1 24 63 DE AD 66 3C [2019-09-30 08:55:54] Elapsed: 46 [2019-09-30 08:55:54] Sending packet (10 repeats): [2019-09-30 08:55:54] 00 DB E1 24 63 DE AD 66 3C [2019-09-30 08:55:54] Elapsed: 48 [2019-09-30 08:55:54] Sending packet (10 66 3C [2019-09-30 08:55:54] tate with: {"hue":27} [2019-09-30 08:55:54] GroupStatmode":"color","hue":27} [2019-09-30 08:55:54] Raw datisting state with: : {"bulb_mode8001300 30000800 [2019-09-30 08:55:54] [2019-09-30 08:55:54] Patching existing state with: : {"bulb_mode":"color","hue":27} [2019-09-30 08:55:54] Raw data: 88001300 30000800 [2019-09-30 08:55:54] [2019-09-30 08:55:54] Clearing fields. Current state: {} [2019-09-30 08:55:54] Raw data: 00000000 00000000 [2019-09-30 08:55:54] Other state: {"bulb_mode":"color","hue":27} [2019-09-30 08:55:54] Raw data: 88001300 30000800 [2019-09-30 08:55:54] Result: {} [2019-09-30 08:55:54] Raw data: 00000000 00000000 [2019-09-30 08:55:54] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:56:20] MqttClient - Got message on topic: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:56:20] MqttClient - device 0001, group 1 [2019-09-30 08:56:20] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:56:20] Enqueuing packet [2019-09-30 08:56:20] Enqueuing packet [2019-09-30 08:56:20] Switching to next packet, 2 packets in queue [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 63 E1 9A 66 3C [2019-09-30 08:56:20] Elapsed: 48 [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 63 E1 9A 66 3C [2019-09-30 08:56:20] Elapsed: 47 [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 63 E1 9A 66 3C [2019-09-30 08:56:20] Elapsed: 47 [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 63 E1 9A 66 3C [2019-09-30 08:56:20] Elapsed: 45 [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 63 E1 9A 66 3C [2019-09-30 08:56:20] Elapsed: 46 [2019-09-30 08:56:20] Patching existing state with: {"hue":25} [2019-09-30 08:56:20] GroupState::patch: State changed: {"bulb_mode":"color","hue":25} [2019-09-30 08:56:20] Raw data: 88001200 30000800 [2019-09-30 08:56:20] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:56:20] Raw data: 88001200 30000800 [2019-09-30 08:56:20] [2019-09-30 08:56:20] Patching existing state with: : {"bulb_mode":"color","hue":25} [2019-09-30 08:56:20] Raw data: 88001200 30000800 [2019-09-30 08:56:20] [2019-09-30 08:56:20] Clearing fields. Current state: {} [2019-09-30 08:56:20] Raw data: 00000000 00000000 [2019-09-30 08:56:20] Other state: {"bulb_mode":"color","hue":25} [2019-09-30 08:56:20] Raw data: 88001200 30000800 [2019-09-30 08:56:20] Result: {} [2019-09-30 08:56:20] Raw data: 00000000 00000000 [2019-09-30 08:56:20] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:56:20] Switching to next packet, 1 packets in queue [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 61 C6 9B 66 10 [2019-09-30 08:56:20] Elapsed: 48 [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 61 C6 9B 66 10 [2019-09-30 08:56:20] Elapsed: 45 [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 61 C6 9B 66 10 [2019-09-30 08:56:20] Elapsed: 49 [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 61 C6 9B 66 10 [2019-09-30 08:56:20] Elapsed: 48 [2019-09-30 08:56:20] Sending packet (10 repeats): [2019-09-30 08:56:20] 00 DB E1 24 61 C6 9B 66 10 [2019-09-30 08:56:20] Elapsed: 46 [2019-09-30 08:56:20] Patching existing state with: {"saturation":13} [2019-09-30 08:56:20] GroupState::patch: State changed: {} [2019-09-30 08:56:20] Raw data: 000D0000 30000100 [2019-09-30 08:56:20] Patching existing state with: : {} [2019-09-30 08:56:20] Raw data: 000D0000 30000100 [2019-09-30 08:56:20] [2019-09-30 08:56:20] Patching existing state with: : {} [2019-09-30 08:56:20] Raw data: 000D0000 30000100 [2019-09-30 08:56:20] [2019-09-30 08:56:20] Clearing fields. Current state: {} [2019-09-30 08:56:20] Raw data: 00000000 00000000 [2019-09-30 08:56:20] Other state: {} [2019-09-30 08:56:20] Raw data: 000D0000 30000100 [2019-09-30 08:56:20] Result: {} [2019-09-30 08:56:20] Raw data: 00000000 00000000 [2019-09-30 08:56:21] MqttClient - publishing update to milight/state/0x1/rgb_cct/1 [2019-09-30 08:56:25] EeeDEr6Er6Er6Er6Etate with: {"hue":27} [2019-09-30 08:56:25] GroupStae::patch: State changed: {"bulb_ma: 88001300 30000800 [2019-09-30 08:56:25] Patching ei[2019-09-30 08:56:51] Mc: milight/commands/0x1/rgb_cct/1 [2019-09-30 08:56:51] MqttClient - device 0001, group 1 [2019-09-30 08:56:51] Flushing dirty state for 0x0001 / 1 / rgb_cct [2019-09-30 08:56:51] Enqueuing packet [2019-09-30 08:56:51] Enqueuing packet [2019-09-30 08:56:51] Switching to next packet, 2 packets in queue [2019-09-30 08:56:51] Sending packet (10 repeats): [2019-09-30 08:56:51] 00 DB E1 24 63 E1 99 66 27 [2019-09-30 08:56:51] Er6Er6Er6Er6Etemai"8t"0.0"at0e [2019-09-30 08:56:56] Ser6Er6Er6Er6Er6Eto{P{ :0a00wMoEnqueuing packet [2019-09-30 08:56:56] Switching to next packet, 1 packets in queue [2019-09-30 08:56:56] Sending packet (10 repeats): [2019-09-30 08:56:56] 00 DB E1 24 63 DE 97 66 26 [2019-09-30 08:56:56] Elapsed: 47 [2019-09-30 08:56:56] Sending packet (10 repeats): [2019-09-30 08:56:56] 00 DB E1 24 63 DE 97 66 26 [2019-09-30 08:56:56] Elapsed: 48 [2019-09-30 08:56:56] Sending packet (10 repeats): [2019-09-30 08:56:56] 00 DB E1 24 63 DE 97 Elapsed: 46 [2019-09-30 08:56:56] Sending packet (10 66 26 [2019-09-30 08:56:56] repeats): [2019-09-30 08:56:56] 00 DB E1 24 63 DE 97 Elapsed: 46 [2019-09-30 08:56:56] Patching existing se::patch: State changed: {"bulb_a: 88001300 30000800 [2019-09-30 08:56:56] Patching ex":"color","hue":27} [2019-09-30 08:56:56] Raw data: 8"color","hue":27} [2019-09-30 08:56:56] Raw data: 880. Current state: {} [2019-09-30 08:56:56] Raw data: aw data: 88001300 30000800 [2019-09-30 08:56:56] Result00 ```