Jump to content

Andy P

Members
  • Posts

    124
  • Joined

  • Last visited

Everything posted by Andy P

  1. Andy P

    Yolink Local API

    The link I saw the other day has disappeared. It brought me to a yolink store page that specifically had a hub called Local Hub. Maybe it was a mistake, or maybe it was a leak. But it is gone now. I really don't know if that was the same hub as the ys1605 Hub 3. I assume when it is out of beta all will become clear. They continue to show this status as of today: Does the YoLink Hub 3 Support Local Integration? As of April 2024, the YoLink Hub 3 does not support local integration. It is planned to be completed by end of year along with matter compatibility and once completed, will be through a software update by the Hub 3.
  2. Andy P

    Yolink Local API

    Oh Interesting - I do see they came out with a new so called local hub - which currently shows as Sold Out. Seems the old hubs cost less than $25 each and the new hubs will be over $300 and have a bunch of other features. I have 36 nodes now on my Yolink node server. They all seem pretty responsive, but since a lot of them are checking for leaks and water running, I would rest a bit easier knowing the notifications/actions are not relying on an internet connection and server farm.
  3. Andy P

    Yolink Local API

    Thanks for the link - I checked in the current version of the App (1.40.36) and there is no option YoLink App ([Local Hub] -> [Local Network] -> [Integrations] -> [Local API]) yet. Does anyone else see it? Will keep checking.
  4. So I took a look and here is the code that is failing - it is using the V1 soap API. That is no longer supported. The plugin needs to be recoded to use the V2 api documented here: TotalConnect2 Web API Help Page or use the code from GITHUB here total-connect-client/total_connect_client/partition.py at master · craigjmidwinter/total-connect-client · GitHub. Unfortunately, I don't know how to do that, but maybe someday. # create zone nodes # We are using GetPanelMetaDataAndFullStatusEx_V1 because we want the extended zone info panel_data = self.tc.soapClient.service.GetPanelMetaDataAndFullStatusEx_V1(self.tc.token, loc_id, 0, 0, 1) if panel_data['ResultCode'] == 0: LOGGER.debug("Getting zones for panel {}".format(device_addr)) zones = panel_data['PanelMetadataAndStatus']['Zones']['ZoneInfoEx'] if zones is None: raise Exception("No zones were found for {} - {} \n{}".format(device_name, device_addr, panel_data)) for zone in zones: if not bool(zone.CanBeBypassed) and not bool(strtobool(self.include_non_bypassable_zones)): LOGGER.debug("Skipping zone {} with name {}".format(zone.ZoneID, zone.ZoneDescription)) continue self.add_zone(loc_id, loc_name, device_addr, device['DeviceID'], zone, update) else: LOGGER.warn("Unable to get extended panel information, code {} data {}".format(panel_data["ResultCode"], panel_data["ResultData"])) Here is a good discussion on the topic Switch over to new TotalConnect REST API · Issue #245 · craigjmidwinter/total-connect-client
  5. I have 8 of those 4 button i3 devices now and have been slowly swapping out my old 4 button keypads because my wife like the simplicity of the new devices. One rule - YOU MUST FACTORY RESET THE NEW DEVICES BEFORE USING - there, I said it. Yeah, got burned multiple times and the biggest issue is that the load is almost always assigned to the bottom button coming from the factory instead of the top button. The ground wire is in a better place on the i3 devices, so at least that part of the replacement was nice. I really wish the i3 keypads had back lit buttons instead of just the locator led, but I can live with it.
  6. I did not see any issues at all after I left it alone for a half hour, came back and logged in, then let the admin console do the query all, looked at the devices and programs and seemed normal. Also, no issues with all of my javascript routines that scrape the rest interfaces of nodes, status, log, program, variables. I thought I might have an issue with some of the Polyglot nodes, but it turns out I just had to wait until they did their next polling cycle and then the status of the devices updated. So, all working BAU for me at least. Andy
  7. Oh, interesting, I didn't think about having a separate log file for each program. I figured it was easier to just put them all in one log file and have the first token be the program identifier. I would also vote for having the file manager open to the last position I was at to save all that clicking.
  8. As Guy says, it is helpful when you have multiple programs interacting with one another to make sure they are executing in the sequence expected. For example, the breezeway light has four different scenarios depending on the time of day. The program that is supposed to run gets enabled by schedule and the others disabled. If there is motion, it also depends on the time as to which program runs. So this helps me sort out that everything is happening the way I want and expect. I can also see when the Then branch gets triggered and the Else branch. But these are not Notifications in the sense that they notify you. They use the notification function to create a log entry only. No email, no push notification. In that sense, it is exactly the same as every device making a log entry when they turn on/off/dim.
  9. I searched the forums and read all the discussions about program execution and how it is not in the log. You can pull the info on each program with 192.168.x.x:8080/rest/programs and get the last run time and next scheduled time. But that is it. So, I decided to try using notifications. In Configuration -> Emails/Notifications -> Customizations I created a notification called Log Program. Left From blank Subject: @webpage:@append:/mydir/mylog.txt Body: ${sys.program.#.address} ${sys.program.#.name} ${sys.program.#.status} ${sys.date} ${sys.time} Then I added the notification to the programs I wanted to log such as this, and both the Then and Else if there was one Breezeway Motion Copy - [ID 009D][Parent 0010] If 'YoLink / Motion Breezeway' is switched Motion Then Set 'Breezeway' On 80% Set 'Breezeway Remote' On 80% Send Notification to 'Default' content 'Log Program' The result I retrieve using 192.168.x.x:8443/FILES/USER/WEB/mydir/mylog.txt looks as follows: program[109] Breezeway Motion True 2025/01/23 02:23:17 PM program[17] Mud or Hall Motion True 2025/01/23 02:23:20 PM program[70] Side Door Opens True 2025/01/23 02:23:20 PM program[17] Mud or Hall Motion False 2025/01/23 02:23:22 PM program[19] Mudroom Motion End True 2025/01/23 02:24:20 PM program[110] Breezeway Motion Off Dim True 2025/01/23 02:24:23 PM program[17] Mud or Hall Motion True 2025/01/23 02:24:29 PM program[17] Mud or Hall Motion True 2025/01/23 02:24:29 PM program[51] Hallway Motion End True 2025/01/23 02:25:08 PM program[110] Breezeway Motion Off Dim True 2025/01/23 02:26:01 PM program[148] Hallway Motion Backstop True 2025/01/23 02:29:30 PM program[110] Breezeway Motion Off Dim True 2025/01/23 02:36:01 PM So now I have a nice log of program execution which I can parse and add to my timeline. Anyone else doing this? Is there a better way? Andy
  10. I installed 3.2.24. The node server created a node which is visible in the admin console and shows connected. No devices were discovered. I added a secondary discover network broadcast address for the IOT network (which I can ping no problem - no blocking). Still no discovery. I manually added the IP address of a kasa EP25. Restarted everything including rebooting the EISY. Still no device. Turned on debug logging. Did not expect anything on the 3.* network, the devices are on the 11.* network - and the manual discovery got an "unexpected keyword argument 'address' trying to connect" 2025-01-11 06:48:10.377 Thread-9 (handler_start) udi_interface INFO Controller:discover: enter: 192.168.3.255 2025-01-11 06:48:10.377 Thread-10 (run_forever) udi_interface DEBUG Controller:_discover: enter: target=192.168.3.255 2025-01-11 06:48:10.378 Thread-10 (run_forever) kasa.discover DEBUG discover:do_discover: [DISCOVERY] 192.168.3.255 >> {'system': {'get_sysinfo': {}}} 2025-01-11 06:48:10.516 Thread-10 (run_forever) kasa.discover DEBUG discover:discover: Waiting 5 seconds for responses... 2025-01-11 06:48:15.566 Thread-10 (run_forever) kasa.discover DEBUG discover:discover: Discovered 0 devices 2025-01-11 06:48:15.566 Thread-10 (run_forever) udi_interface INFO Controller:_discover: Discover.discover(192.168.3.255) done: checking for previously known devices 2025-01-11 06:48:15.566 Thread-10 (run_forever) udi_interface DEBUG Controller:_discover: exit 2025-01-11 06:48:15.566 Thread-9 (handler_start) udi_interface DEBUG Controller:discover: result=None 2025-01-11 06:48:15.567 Thread-9 (handler_start) udi_interface INFO Controller:discover: calling: _discover(target=192.168.11.255) 2025-01-11 06:48:15.567 Thread-10 (run_forever) udi_interface DEBUG Controller:_discover: enter: target=192.168.11.255 2025-01-11 06:48:15.567 Thread-10 (run_forever) kasa.discover DEBUG discover:do_discover: [DISCOVERY] 192.168.11.255 >> {'system': {'get_sysinfo': {}}} 2025-01-11 06:48:15.568 Thread-10 (run_forever) kasa.discover DEBUG discover:discover: Waiting 5 seconds for responses... 2025-01-11 06:48:20.619 Thread-10 (run_forever) kasa.discover DEBUG discover:discover: Discovered 0 devices 2025-01-11 06:48:20.619 Thread-10 (run_forever) udi_interface INFO Controller:_discover: Discover.discover(192.168.11.255) done: checking for previously known devices 2025-01-11 06:48:20.619 Thread-10 (run_forever) udi_interface DEBUG Controller:_discover: exit 2025-01-11 06:48:20.619 Thread-9 (handler_start) udi_interface DEBUG Controller:discover: result=None 2025-01-11 06:48:20.619 Thread-9 (handler_start) udi_interface INFO Controller:discover: exit 2025-01-11 06:48:20.620 Thread-10 (run_forever) udi_interface INFO Controller:_add_manual_devices: Adding manual device 192.168.11.175 2025-01-11 06:48:20.620 Thread-10 (run_forever) udi_interface ERROR Controller:_add_manual_devices: Controller.discover_single() got an unexpected keyword argument 'address' trying to connect to 192.168.11.175 2025-01-11 06:48:20.620 Thread-10 (run_forever) udi_interface INFO Controller:_add_manual_devices: Adding manual device 192.168.11.179 2025-01-11 06:48:20.620 Thread-10 (run_forever) udi_interface ERROR Controller:_add_manual_devices: Controller.discover_single() got an unexpected keyword argument 'address' trying to connect to 192.168.11.179 2025-01-11 06:48:20.620 Thread-9 (handler_start) udi_interface DEBUG Controller:add_manual_devices: result=None 2025-01-11 06:48:20.620 Thread-9 (handler_start) udi_interface INFO Controller:add_manual_devices: exit 2025-01-11 06:48:20.620 Thread-9 (handler_start) udi_interface INFO Controller:handler_start: exit Kasa Controller
  11. Hey Ross, fair point. But the script is over 2000 lines long and there 100 css classes, etc. What I could try to do would be to build a very simple example that just embeds one device and combines it with a camera image if that would be helpful. Would be good to know exactly what use case you would be wanting to tackle, ie what device and what type of camera.
  12. The topic of getting images from security cameras has been touched on before, and I studied all that in trying to achieve a combination of camera images with EISY node status. I thought I would share this to save someone else some time. The idea was to create these: The devices are retrieved using rest/nodes and rest/status, the on/off cycles around the device comes from rest/log. The top half of the circle is day, the bottom is night. Green dash is current time. The gray dashes are sunrise and sunset from /rest/time. Spokes are motion events in the log. The DIV has been set with a background image subset of an Amcrest camera (here 192.168.2.18) using CSS. Then to refresh it you have to use a script to update the ?t= part of the URL to force a new image. Fine tune the backround-size and position to get the part of the picture you want. Overflow hidden clips the image to the div. --imgVCcar: url('http://192.168.2.18/cgi-bin/snapshot.cgi?t=123456789'); .i_car { position: absolute; width: 230; height: 160; border-radius: 5px; overflow: hidden; background-image:var(--imgVCcar); background-size: 500px ; background-position: 63% 70%; } The breezeway image is from a Unifi Protect camera. You have to set each camera to allow anonymous snapshots first. --imgVCbreeze: url("http://192.168.3.183/snap.jpeg?t=123456789"); .VCbreezeway { background-image: var(--imgVCbreeze); } Function to update the url timestamp to force refresh: function updateTS(value) { var newTS = new Date().getTime(); return value.replace(/\?t=\d+/, '\?t=' + newTS); } The door sensors and motion detectors are YoLink using the plugin. The lights are controlled by Insteon dimmers. The rectangles are lastRunTime info retrieved with /rest/programs. Hope this helps someone! Andy
  13. This was the response I received from the ticket: Chris Jahn replied 3 hours ago Hi Andy, We are in the process of fixing and enhancing the NLS capabilities for node servers. Problems like this are fixed in the new code.
  14. ok, thanks, I opened a ticket, will let you know.
  15. Any guess on why some yolink devices are missing the name in the node info (xray and rest/status) and others are not. For example, this leak sensor: <properties> <property name="Sensor Temperature" uom="17" formatted="72&#xb0;F" value="72" id="CLITEMP"/> <property name="" uom="25" formatted="Dry" value="0" id="GV0"/> <property name="" uom="25" formatted="High" value="4" id="GV1"/> <property name="" uom="25" formatted="DON/DOF" value="0" id="GV2"/> <property name="Connection State" uom="25" formatted="Online" value="0" id="GV20"/> <property name="Nodeserver Status" uom="25" formatted="Connected" value="1" id="ST"/> </properties> It is not a problem with the admin console because that has all the names right: This Temp Humidity sensor has all the names filled in: <properties> <property name="Battery Level" uom="25" formatted="High" value="4" id="BATLVL"/> <property name="Current Rel Humidity (%)" prec="1" uom="51" formatted="43.3%" value="433" id="CLIHUM"/> <property name="Sensor Temperature" prec="1" uom="17" formatted="73.2&#xb0;F" value="732" id="CLITEMP"/> <property name="Low Temp Alarm" uom="25" formatted="Normal" value="0" id="GV1"/> <property name="Low Temp Limit" prec="1" uom="17" formatted="64.4&#xb0;F" value="644" id="GV10"/> <property name="High Temp Limit" uom="17" formatted="95&#xb0;F" value="95" id="GV11"/> <property name="Low Humidity Limit" uom="51" formatted="0%" value="0" id="GV12"/> <property name="High Humidity Limit" uom="51" formatted="100%" value="100" id="GV13"/> <property name="High Temp Alarm" uom="25" formatted="Normal" value="0" id="GV2"/> <property name="Connection State" uom="25" formatted="Online" value="0" id="GV20"/> <property name="Low Humidity Alarm" uom="25" formatted="Normal" value="0" id="GV4"/> <property name="High Humidity Alarm" uom="25" formatted="Normal" value="0" id="GV5"/> <property name="Battery Alarm" uom="25" formatted="Normal" value="0" id="GV7"/> <property name="Alarm triggered" uom="25" formatted="Normal" value="0" id="GV8"/> <property name="Command Setting" uom="25" formatted="DON/DOF" value="0" id="GV9"/> <property name="Nodeserver Status" uom="25" formatted="Connected" value="1" id="ST"/> </properties> I have the latest everything and restarted everything. Andy
  16. Yes, but instead of testing for Wet, I test for not Dry: Notify Leak - [ID 0095][Parent 006C] If 'YoLink / Leak Attic HVAC' Water Sensor is not Dry Or 'YoLink / Leak Attic Hot Water' Water Sensor is not Dry Or 'YoLink / Leak Attic Manifold' Water Sensor is not Dry Or 'YoLink / Leak Barn Utility Room' Water Sensor is not Dry Or 'YoLink / Leak Dining SE' Water Sensor is not Dry Or 'YoLink / Leak Dining West Mid' Water Sensor is not Dry Or 'YoLink / Leak East Office NE' Water Sensor is not Dry Or 'YoLink / Leak Kitchen Island' Water Sensor is not Dry Or 'YoLink / Leak Kitchen Sink' Water Sensor is not Dry Or 'YoLink / Laundry Leak' Water Sensor is not Dry Then Resource 'Notify Leak' Else - No Actions - (To add one, press 'Action') Also, this is how I monitor the battery level: Notify Battery - [ID 009A][Parent 006C] If Time is 6:10:00PM And ( 'YoLink / Leak Attic HVAC' Sensor Battery Level <= Medium Low Or 'YoLink / Leak Attic Hot Water' Sensor Battery Level <= Medium Low Or 'YoLink / Leak Attic Manifold' Sensor Battery Level <= Medium Low Or 'YoLink / Leak Barn Utility Room' Sensor Battery Level <= Medium Low Or 'YoLink / Leak Dining SE' Sensor Battery Level <= Medium Low Or 'YoLink / Leak Dining West Mid' Sensor Battery Level <= Medium Low Or 'YoLink / Leak East Office NE' Sensor Battery Level <= Medium Low Or 'YoLink / Leak Kitchen Island' Sensor Battery Level <= Medium Low Or 'YoLink / Leak Kitchen Sink' Sensor Battery Level <= Medium Low Or 'YoLink / Laundry Leak' Sensor Battery Level <= Medium Low ) Then Resource 'Notify Yolink Battery' Else - No Actions - (To add one, press 'Action')
  17. Actually, it creates the node for the controller, but not the node for the panel.
  18. For some reason my nodes stopped updating. I deleted and reinstalled the plugin which connects just fine to TC2, creates the panel node, but then it gives this error - any idea what is happening? 2024-11-15 07:16:36.910 Thread-2 (parameterHandler) udi_interface.custom INFO custom:_save: Sending data notices to Polyglot. 2024-11-15 07:16:36.910 Thread-2 (parameterHandler) udi_interface ERROR totalconnect-poly:discover: Discovery failed with error Missing element isSceneZones (GetPanelMetaDataAndFullStatusEx_V1.isSceneZones) Traceback (most recent call last): File "/var/polyglot/pg3/ns/0021b9025ffe_2/totalconnect-poly.py", line 157, in discover self.add_security_device(loc_id, loc_name, device, update) File "/var/polyglot/pg3/ns/0021b9025ffe_2/totalconnect-poly.py", line 176, in add_security_device panel_data = self.tc.soapClient.service.GetPanelMetaDataAndFullStatusEx_V1(self.tc.token, loc_id, 0, 0, 1) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/zeep/proxy.py", line 46, in __call__ return self._proxy._binding.send( ^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/zeep/wsdl/bindings/soap.py", line 123, in send envelope, http_headers = self._create( ^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/zeep/wsdl/bindings/soap.py", line 73, in _create serialized = operation_obj.create(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/zeep/wsdl/definitions.py", line 224, in create return self.input.serialize(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/zeep/wsdl/messages/soap.py", line 79, in serialize self.body.render(body, body_value) File "/usr/local/lib/python3.11/site-packages/zeep/xsd/elements/element.py", line 232, in render self._render_value_item(parent, value, render_path) File "/usr/local/lib/python3.11/site-packages/zeep/xsd/elements/element.py", line 256, in _render_value_item return self.type.render(node, value, None, render_path) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/zeep/xsd/types/complex.py", line 307, in render element.render(node, element_value, child_path) File "/usr/local/lib/python3.11/site-packages/zeep/xsd/elements/indicators.py", line 256, in render element.render(parent, element_value, child_path) File "/usr/local/lib/python3.11/site-packages/zeep/xsd/elements/element.py", line 226, in render self.validate(value, render_path) File "/usr/local/lib/python3.11/site-packages/zeep/xsd/elements/element.py", line 284, in validate raise exceptions.ValidationError( zeep.exceptions.ValidationError: Missing element isSceneZones (GetPanelMetaDataAndFullStatusEx_V1.isSceneZones)
  19. Great suggestions - and the windows equivalent would be to paste it into a text document on Onedrive to avoid using email. Thanks.
  20. Ok, so about an hour later I went to the mobile UD app and it allowed me to switch the outlet on and off. Then I tried the admin console again and it had started to work. So, I did go ahead and install 1.2.5, and that works, but it is not clear to me if somehow the interface had managed to repair itself at some point before I did that. And not sure what bug you found, but I am grateful for the quick response!
  21. I have added a bunch of leak sensors and motion sensors to my yolink hub and everything works as expected and updates in the Admin console. However, the Yolink Outlet gets added as a node, but doesn't update status in either direction. Any idea what is wrong? I did try removing and readding the device several times. Also restarted the node server and admin console. As I mentioned the other devices update correctly. PG3x Version 3.2.27 Status: Connected Frontend Version: 3.2.27 IoX Version: 5.8.4 Current Version: 1.2.3 This is the debug log when I manually turn the switch on and off 2024-10-25 16:43:04.049 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: on_message: {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.049 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: Message received and put in queue (size : 1) 2024-10-25 16:43:04.049 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: on_message: {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.049 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: Message received and put in queue (size : 1) 2024-10-25 16:43:04.049 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: Creating threads to handle the received messages 2024-10-25 16:43:04.049 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: Creating threads to handle the received messages 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: Received message - Q size=0 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: Received message - Q size=0 2024-10-25 16:43:04.050 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: 1 on_message threads starting 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: process_message : {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: process_message for d88b4c0100093b37: {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} yl-home/7f9440f690b24b919c0f5f4b752713c0/d88b4c0100093b37/report 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: porcessing report: {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface INFO udiYoOutletV2:updateStatus: udiYoOutlet updateStatus 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yolink_mqtt_classV3:updateCallbackStatus: Outlet - updateCallbackStatus : {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yolink_mqtt_classV3:updateStatusData: Outlet - updateStatusData : {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.050 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: 1 on_message threads starting 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: process_message : {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: process_message for d88b4c0100093b37: {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} yl-home/7f9440f690b24b919c0f5f4b752713c0/d88b4c0100093b37/report 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: porcessing report: {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface INFO udiYoOutletV2:updateStatus: udiYoOutlet updateStatus 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yolink_mqtt_classV3:updateCallbackStatus: Outlet - updateCallbackStatus : {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.050 Thread-265 (process_message) udi_interface DEBUG yolink_mqtt_classV3:updateStatusData: Outlet - updateStatusData : {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface INFO udiYoOutletV2:updateData: udiYoOutlet updateData - schedule 0 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface.node DEBUG node:setDriver: 8b4c0100093b37:Plug 1 No change in ST's value 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState :{'lastUpdTime': 1729888984014, 'lastMessage': {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'}, 'lastStateTime': 1729888984014, 'online': True, 'data': {'state': {'state': 'closed', 'power': 0, 'watt': 0, 'version': '0433', 'time': '2024-10-25T20:31:45.000Z', 'tz': 0, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}, 'delay': {'ch': 1, 'on': 0, 'off': 0}, 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}}, 'schedules': {'supportSeconds': True}}} 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface INFO udiYoOutletV2:updateData: udiYoOutlet updateData - schedule 0 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface.node DEBUG node:setDriver: 8b4c0100093b37:Plug 1 No change in ST's value 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState :{'lastUpdTime': 1729888984014, 'lastMessage': {'event': 'Outlet.StatusChange', 'time': 1729888984014, 'msgid': '1729888984013', 'data': {'state': 'closed', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'}, 'lastStateTime': 1729888984014, 'online': True, 'data': {'state': {'state': 'closed', 'power': 0, 'watt': 0, 'version': '0433', 'time': '2024-10-25T20:31:45.000Z', 'tz': 0, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}, 'delay': {'ch': 1, 'on': 0, 'off': 0}, 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}}, 'schedules': {'supportSeconds': True}}} 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState online 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState data {'state': {'state': 'closed', 'power': 0, 'watt': 0, 'version': '0433', 'time': '2024-10-25T20:31:45.000Z', 'tz': 0, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}, 'delay': {'ch': 1, 'on': 0, 'off': 0}, 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}}, 'schedules': {'supportSeconds': True}} 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState - return Unknown 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface.node DEBUG node:setDriver: 8b4c0100093b37:Plug 1 No change in GV20's value 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState online 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState data {'state': {'state': 'closed', 'power': 0, 'watt': 0, 'version': '0433', 'time': '2024-10-25T20:31:45.000Z', 'tz': 0, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -35, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}, 'delay': {'ch': 1, 'on': 0, 'off': 0}, 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}}, 'schedules': {'supportSeconds': True}} 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState - return Unknown 2024-10-25 16:43:04.051 Thread-265 (process_message) udi_interface.node DEBUG node:setDriver: 8b4c0100093b37:Plug 1 No change in GV20's value 2024-10-25 16:43:11.692 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: on_message: {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.692 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: Message received and put in queue (size : 1) 2024-10-25 16:43:11.692 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: on_message: {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.692 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: Message received and put in queue (size : 1) 2024-10-25 16:43:11.692 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: Creating threads to handle the received messages 2024-10-25 16:43:11.692 Thread-266 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: Received message - Q size=0 2024-10-25 16:43:11.692 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: 1 on_message threads starting 2024-10-25 16:43:11.692 Thread-266 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: process_message : {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: process_message for d88b4c0100093b37: {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} yl-home/7f9440f690b24b919c0f5f4b752713c0/d88b4c0100093b37/report 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: porcessing report: {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.692 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: Creating threads to handle the received messages 2024-10-25 16:43:11.692 Thread-266 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: Received message - Q size=0 2024-10-25 16:43:11.692 paho-mqtt-client-7f9440f690b24b919c0f5f4b752713c0 udi_interface DEBUG yoLink_init_V3:on_message: 1 on_message threads starting 2024-10-25 16:43:11.692 Thread-266 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: process_message : {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: process_message for d88b4c0100093b37: {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} yl-home/7f9440f690b24b919c0f5f4b752713c0/d88b4c0100093b37/report 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yoLink_init_V3:process_message: porcessing report: {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface INFO udiYoOutletV2:updateStatus: udiYoOutlet updateStatus 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface INFO udiYoOutletV2:updateStatus: udiYoOutlet updateStatus 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolink_mqtt_classV3:updateCallbackStatus: Outlet - updateCallbackStatus : {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolink_mqtt_classV3:updateStatusData: Outlet - updateStatusData : {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface INFO udiYoOutletV2:updateData: udiYoOutlet updateData - schedule 0 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface.node DEBUG node:setDriver: 8b4c0100093b37:Plug 1 No change in ST's value 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState :{'lastUpdTime': 1729888991656, 'lastMessage': {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'}, 'lastStateTime': 1729888991656, 'online': True, 'data': {'state': {'state': 'open', 'power': 0, 'watt': 0, 'version': '0433', 'time': '2024-10-25T20:31:45.000Z', 'tz': 0, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}, 'delay': {'ch': 1, 'on': 0, 'off': 0}, 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}}, 'schedules': {'supportSeconds': True}}} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState online 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState data {'state': {'state': 'open', 'power': 0, 'watt': 0, 'version': '0433', 'time': '2024-10-25T20:31:45.000Z', 'tz': 0, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}, 'delay': {'ch': 1, 'on': 0, 'off': 0}, 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}}, 'schedules': {'supportSeconds': True}} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolink_mqtt_classV3:updateCallbackStatus: Outlet - updateCallbackStatus : {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolink_mqtt_classV3:updateStatusData: Outlet - updateStatusData : {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface INFO udiYoOutletV2:updateData: udiYoOutlet updateData - schedule 0 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface.node DEBUG node:setDriver: 8b4c0100093b37:Plug 1 No change in ST's value 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState :{'lastUpdTime': 1729888991656, 'lastMessage': {'event': 'Outlet.StatusChange', 'time': 1729888991656, 'msgid': '1729888991656', 'data': {'state': 'open', 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}}, 'deviceId': 'd88b4c0100093b37'}, 'lastStateTime': 1729888991656, 'online': True, 'data': {'state': {'state': 'open', 'power': 0, 'watt': 0, 'version': '0433', 'time': '2024-10-25T20:31:45.000Z', 'tz': 0, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}, 'delay': {'ch': 1, 'on': 0, 'off': 0}, 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}}, 'schedules': {'supportSeconds': True}}} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState online 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState data {'state': {'state': 'open', 'power': 0, 'watt': 0, 'version': '0433', 'time': '2024-10-25T20:31:45.000Z', 'tz': 0, 'loraInfo': {'netId': '010204', 'devNetType': 'C', 'signal': -40, 'gatewayId': 'd88b4c160305f2f4', 'gateways': 2}, 'delay': {'ch': 1, 'on': 0, 'off': 0}, 'alertType': {'overload': False, 'highLoad': False, 'lowLoad': False, 'highTemperature': False, 'remind': False}}, 'schedules': {'supportSeconds': True}} 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState - return Unknown 2024-10-25 16:43:11.694 Thread-266 (process_message) udi_interface.node DEBUG node:setDriver: 8b4c0100093b37:Plug 1 No change in GV20's value 2024-10-25 16:43:11.693 Thread-266 (process_message) udi_interface DEBUG yolinkOutletV2:getState: Outlet - getState - return Unknown 2024-10-25 16:43:11.694 Thread-266 (process_message) udi_interface.node DEBUG node:setDriver: 8b4c0100093b37:Plug 1 No change in GV20's value
  22. Just got into YoLink for their leak sensors and installed the plugin. Many thanks to Panda88 for supporting the plugin - works great! If you follow the configuration instructions, you need to generate a UAID and secret key in the YoLink mobile app and then enter it into the polyglot console. Unfortunately, YoLink does not have a web/desktop app, so you might start typing in the very long key by hand. After doing this, I suddenly realized that you can go into the YoLink app and tap on the copy icon next to the key and paste it into an email and send it to yourself and then copy and paste from the email to the console. I'm sure others have thought of this, but just passing it on. Maybe save someone a bunch of typing! Andy
  23. It the link is missing in the device, which it sounds like from the symptoms, doing a restore device as Techman suggests will fix the problem. If the issue was introduced when you did a restore to the PLM from the old PLM backup , you will likely need to repeat that step. That is the problem I had where the PLM was missing a lot of links.
  24. Insteon has acknowledged that they sometimes ship the device with the load assigned to the wrong button although they just use a generic statement. Here is the link from their webpage. Still no way to reassign to any button other than the top one by doing the reset. i3 Keypad Setup — Insteon IMPORTANT: We’ve discovered an issue where some i3 devices may have shipped with a configuration issue that impacts performance and reliability. To ensure best performance and reliability, factory reset before using.
  25. Hi, hoping to use this plugin with my Kasa EP25 devices. According to the Github info, it is the intent to support any devices in the python-kasa library. That library lists the EP25 but with an asterisk saying new devices need authentication. Do you plan to support that? Currently it just responds with ERROR Controller:_add_manual_devices: Unsupported device 192.168.3.118: Thanks, Andy
×
×
  • Create New...