New DaikinOne+ Thermostat Integration

I don’t have those entities in my integration, these are all I have. Its probably a model number issue or maybe a dealer setup issue. I’ve use the cURL to poll the API as outlined in Adam’s github and I can see various entries for Aux Heat but I have yet to “catch it in the act” like you did with the defrost cycle.

I also have these attributes that I can make template sensors from. This is how I’ve tried Aux Heat, but this attribute never seems to change value, nor do the attributes “xxx_demand” that are also highlighted. They always stay at 127.5

If anything shows a value of 65535 or 127.5, it means your system is not reporting that information. Check the data from your poll and see if you have anything that reports a proper number related to aux.

Is the same true for a value of 255? I have a few parameters that look like they might have something to do with Aux heat but most have a value of 255. This is one of the most promising…
ctAHHeatCurrentDemandStatus": 255

there’s also this one…
ctAHFanRuntime": 4294967295. I just queried the API and this one has not changed all day, so maybe it isn’t reporting either.

I’ve thought about using your API code to build a simple query system that would let me watch how the params change over time. I know SkySpy did that but I can’t get that to work. I cannot get the InfluxDB part to work.

Probably. They use the highest value of the variable to indicate it’s not valid, so if that variable is 8 bit, 255 would be the highest. Just like only being able to have 255 of anything in an NES game.

You might want to try rebooting your thermostat and/or system and see what happens.

Hi there. I’m just learning about HA and have a super quick question. With this integration, can you program when the heat pump or furnace runs based on the time of day? We have time-of-day pricing, and it would be awesome to disable the heat pump during peak times. Not looking for specific instructions, just wondering if it’s possible. Thanks in advance.

Yes, you can.

1 Like

@TrickerZ :pray::pray:

I’m not clear how this integration handles devices? Only one is created. If I add a second home to my account, will it show up as a second device?

It should. I’m not sure if anyone has tried it. I only have one thermostat.

Each account in the Daikin One Cloud becomes a single device, as specified by the username (email address) provided when setting up the thermostat and adding the integration in HA. You can have multiple thermostats tied to the same account. I’m sure there is a limit, but I don’t know what it would be. OR, you can set up the other home’s thermostat using a different email address and then hit “add entry” and enter that second email/password into the integration, which would then become a second device with its own entities. If you go that route, you’ll have to use more descriptive names for the devices than the default of “Daikin”. I don’t know if there are any benefits either way.

I only have one account. I have four thermostats tied to it. They all appear under that single device. Each thermostat was given a name inside the thermostat (e.g. “upstairs”) which gets pulled into HA, then in HA each thermostat becomes 1 climate.<name> entity, 1 weather.<name> entity, and 7 sensor.<name>_<whatever> entities (e.g. sensor.upstairs_humidity). They are all tied to the one device and coexist inside HA quite happily.

Does that answer what you were looking for?

EDIT 1:
There’s a third option I missed, and it’s the one I would recommend if I’m understanding your situation…

In the Daikin app on your mobile device, when you go to settings, there is a section labeled ‘Locations & Devices’. You can create multiple locations in there and then add devices to each location. In the home page of the Daikin app on your mobile device, this creates multiple sections with each tied to a different address (which matters for the weather.<name> entity that comes with each device). But in HA, since the two locations are part of the same account, there is still a single device within the integration just like I described and screenshotted above. The only difference is the weather entity for my four devices is all pulling redundant data since they are all at the same address. When I moved one of the devices to a new address, now its weather entity is pulling different data. Other than that, the entities coming into HA all seem to appear and operate the same as if they were in the same location.

If you have two homes, this would be the betterest approach in order for accurate data in the weather entity and it would allow you to create different geofences for each home (which is distinct, different, and separate from HA’s geofencing; the integration does not appear to be pulling in any data related to Daikin’s geofencing but it does have implications in the programming inside the thermostat IF you actually use that feature.) You would end up with one device for your account and then a climate.<name> device for each thermostat. The only thing to be careful of is that the integration does not appear to be pulling the location from the API, only the device names. If both homes have devices named ‘Living Room’, in HA you would end up with a climate.living_room and climate.living_room_2.

What I did for this (just to give you an example to consider) was to create template sensors for the attributes in the thermostat’s climate entity so the state of those attributes could be recorded over time. The hvac_action attribute will tell you if the system is running or not and which mode it is running in, and the fan_mode attribute would tell you if the fan was on auto, low, medium, or high. My templates look like this…

sensor:
  - platform: template
    sensors:
      hvac_living_room:
        friendly_name: "Living Room"
        value_template: "{{ state_attr('climate.living_room', 'hvac_action') }}"

Then in the UI, I used Alex’s amazing history-explorer-card to display each of the sensors. It gives me a view that looks something like this:

This lets me visually see if the system was set to auto, heat, or cool (tracking state of climate.living_room and then below that see if the system was actually running or not and in what mode (tracking state of sensor.hvac_living_room created by the above template). I also track the temperatures in a linked graph, which lets me watch the temp bouncing up and down in direct relation to when the system is running.

1 Like

Does this work with the One Touch (or any others), or just the One+? I have to replace one of my ACs and my company is recommending a Daikin Fit system. The quote just says it includes a Daikin One thermostat, and the guy I talked to said it had the cloud capability for them to monitor it, but not sure which model specifically. I have Ecobee now which I love, so definitely need HA compatibility.

Thanks for this detailed reply. It totally answered my question!

Since they both connect to the same cloud and are both controlled by the same mobile app, I would suspect yes. But my only evidence is how they are both listed right next to each other at https://daikinone.com:

Daikin does make other cloud-connected thermostats that are backed by a completely different cloud API. Those are not supported by this specific integration.

Anyone having issues with Daikin integration lately? I can’t get it to load, the logs point to a token/authorization problem. I see it’s also broken in my Google Home setup, but the iOS app itself is working. I feel like I’ve been here before, but I’m not sure what I did to remedy it previously.

Not sure if I’m missing something super obvious here, but I can’t control anything from the integration other than Aux Heat. I can see all the stats like temperature, etc, but I cannot set the temperature or really do anything. I do have 9 different thermostats, so maybe that’s causing an issue. Is there something I’m doing wrong?

See screenshot:

Looks like you’re not getting climate entities. Turn on debug and reload home assistant, then post your logs after sanitizing. Most people only have one or two thermostats, so maybe something is different with yours. Is it a mini split system with a unit in each room? Let me know the model numbers of your units as well for reference.

logger:
  default: error
  logs:
    custom_components.daikinskyport: debug
    daikinskyport: debug
    climate.daikinskyport: debug

Hello, can anyone confirm they are actively using this integration with an Amana smart thermostat (ATST-CWE-BL-A)? The home integration option on the thermostat directs to Daikin One Open API. @rmurfster, you mentioned you have an Amana S-series heat pump, that is what I have, but want to confirm this will work before jumping in to HA.

That’s a DaikinOne+ thermostat with an Amana logo (Daikin and Amama are the same company).

1 Like

Sorry for late reply, I guess I didn’t have notifications turned on here.

It is 4 Central Air systems and 5 mini splits (larger house)
Central Air: DX17VSS601BA, DX17VSS421BA, DX17VSS421BA, DX17VSS361BA
Mini Splits: (Will update later with model numbers)

Side note: I’ll gladly hire you to help me to fix this if you’d be willing. Not sure if there’s a way to Private Message here or not.

Here are my logs:

2024-06-20 09:16:03.151 WARNING (SyncWorker_1) [homeassistant.loader] We found a custom integration daikinskyport which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-06-20 09:16:08.295 WARNING (MainThread) [hass_nabucasa.cloud_api] Fetched https://alexa-api.nabucasa.com/access_token (400)
2024-06-20 09:16:13.807 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' accesses hass.components.frontend. This is deprecated and will stop working in Home Assistant 2024.9, it should be updated to import functions used from frontend directly at custom_components/hacs/frontend.py, line 68: hass.components.frontend.async_register_built_in_panel(, please create a bug report at https://github.com/hacs/integration/issues
2024-06-20 09:16:14.730 INFO (MainThread) [custom_components.daikinskyport] Daikin Skyport Starting
2024-06-20 09:16:14.731 DEBUG (MainThread) [custom_components.daikinskyport] Using email: mm********@gmail.com
2024-06-20 09:16:19.670 WARNING (SyncWorker_2) [daikinskyport] Device is offline.
2024-06-20 09:16:22.408 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport _async_update_data
2024-06-20 09:16:22.408 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport data updated successfully
2024-06-20 09:16:22.421 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'daikinskyport' calls `async_add_job`, which is deprecated and will be removed in Home Assistant 2025.4; Please review https://developers.home-assistant.io/blog/2024/03/13/deprecate_add_run_job for replacement options at custom_components/daikinskyport/__init__.py, line 96: hass.async_add_job(, please create a bug report at https://github.com/apetrycki/daikinskyport/issues
2024-06-20 09:16:22.534 ERROR (MainThread) [homeassistant.components.sensor] Error while setting up daikinskyport platform for sensor
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 356, in _async_setup_platform
    await asyncio.shield(awaitable)
  File "/config/custom_components/daikinskyport/sensor.py", line 132, in async_setup_entry
    sensors = coordinator.daikinskyport.get_sensors(index)
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/daikinskyport/daikinskyport.py", line 223, in get_sensors
    sensors.append({"name": f"{name} Outdoor fan", "value": round(thermostat['ctOutdoorFanRequestedDemandPercentage'] / DAIKIN_PERCENT_MULTIPLIER, 1), "type": "demand"})
                                                                  ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
KeyError: 'ctOutdoorFanRequestedDemandPercentage'
2024-06-20 09:16:22.551 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:16:22.575 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:16:22.579 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: mostlycloudy
2024-06-20 09:16:22.583 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:16:22.587 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: rain
2024-06-20 09:16:22.591 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:16:22.594 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:16:22.598 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:16:22.602 ERROR (MainThread) [homeassistant.components.climate] Error while setting up daikinskyport platform for climate
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 356, in _async_setup_platform
    await asyncio.shield(awaitable)
  File "/config/custom_components/daikinskyport/climate.py", line 236, in async_setup_entry
    entities.append(Thermostat(coordinator, index, thermostat))
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/daikinskyport/climate.py", line 426, in __init__
    if (self.thermostat["ctOutdoorNoofCoolStages"] > 0):
        ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
KeyError: 'ctOutdoorNoofCoolStages'
2024-06-20 09:16:22.613 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:22.615 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:22.617 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:22.619 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:22.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:22.623 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:22.625 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:22.626 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:22.717 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' accesses hass.helpers.event. This is deprecated and will stop working in Home Assistant 2024.11, it should be updated to import functions used from event directly at custom_components/hacs/base.py, line 642: self.hass.helpers.event.async_track_time_interval(, please create a bug report at https://github.com/hacs/integration/issues
2024-06-20 09:16:52.576 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:16:52.578 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:16:52.580 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: mostlycloudy
2024-06-20 09:16:52.583 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:16:52.585 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: rain
2024-06-20 09:16:52.587 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:16:52.589 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:16:52.591 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:16:52.616 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:52.617 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:52.618 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:52.619 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:52.619 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:52.620 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:52.620 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:52.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:16:56.574 WARNING (SyncWorker_1) [daikinskyport] Device is offline.
2024-06-20 09:16:59.437 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport _async_update_data
2024-06-20 09:16:59.437 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport data updated successfully
2024-06-20 09:17:22.577 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:17:22.579 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:17:22.582 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: mostlycloudy
2024-06-20 09:17:22.587 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:17:22.589 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: rain
2024-06-20 09:17:22.592 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:17:22.594 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:17:22.599 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:17:22.617 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:22.617 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:22.618 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:22.619 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:22.619 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:22.620 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:22.620 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:22.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:26.433 WARNING (SyncWorker_5) [daikinskyport] Device is offline.
2024-06-20 09:17:29.406 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport _async_update_data
2024-06-20 09:17:29.406 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport data updated successfully
2024-06-20 09:17:52.577 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:17:52.580 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:17:52.582 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: mostlycloudy
2024-06-20 09:17:52.586 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:17:52.588 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: rain
2024-06-20 09:17:52.590 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:17:52.593 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:17:52.599 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:17:52.618 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:52.618 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:52.619 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:52.620 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:52.620 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:52.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:52.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:52.622 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:17:56.375 WARNING (SyncWorker_1) [daikinskyport] Device is offline.
2024-06-20 09:17:59.099 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport _async_update_data
2024-06-20 09:17:59.100 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport data updated successfully
2024-06-20 09:18:22.579 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:18:22.581 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:18:22.583 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: mostlycloudy
2024-06-20 09:18:22.587 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:18:22.589 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: rain
2024-06-20 09:18:22.591 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:18:22.593 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:18:22.596 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:18:22.619 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:22.619 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:22.620 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:22.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:22.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:22.622 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:22.622 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:22.623 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:26.244 WARNING (SyncWorker_2) [daikinskyport] Device is offline.
2024-06-20 09:18:29.095 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport _async_update_data
2024-06-20 09:18:29.095 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport data updated successfully
2024-06-20 09:18:52.580 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:18:52.583 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:18:52.585 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: mostlycloudy
2024-06-20 09:18:52.589 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:18:52.591 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: rain
2024-06-20 09:18:52.593 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:18:52.595 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:18:52.597 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:18:52.620 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:52.620 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:52.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:52.622 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:52.622 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:52.623 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:52.623 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:52.624 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:18:56.551 WARNING (SyncWorker_0) [daikinskyport] Device is offline.
2024-06-20 09:18:59.453 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport _async_update_data
2024-06-20 09:18:59.454 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport data updated successfully
2024-06-20 09:19:22.582 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:19:22.584 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:19:22.586 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: mostlycloudy
2024-06-20 09:19:22.589 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:19:22.591 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: rain
2024-06-20 09:19:22.594 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:19:22.596 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:19:22.598 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:19:22.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:22.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:22.622 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:22.623 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:22.623 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:22.624 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:22.625 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:22.625 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:25.999 WARNING (SyncWorker_0) [daikinskyport] Device is offline.
2024-06-20 09:19:28.545 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport _async_update_data
2024-06-20 09:19:28.545 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport data updated successfully
2024-06-20 09:19:52.583 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:19:52.586 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:19:52.588 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: mostlycloudy
2024-06-20 09:19:52.592 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:19:52.595 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: rain
2024-06-20 09:19:52.599 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:19:52.601 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: clear
2024-06-20 09:19:52.605 DEBUG (MainThread) [custom_components.daikinskyport] Weather icon for weatherTodayIcon: sunny
2024-06-20 09:19:52.621 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:52.622 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:52.623 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:52.623 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:52.624 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:52.624 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:52.625 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:52.625 DEBUG (MainThread) [custom_components.daikinskyport] Updating switch entity
2024-06-20 09:19:55.839 WARNING (SyncWorker_2) [daikinskyport] Device is offline.
2024-06-20 09:19:58.278 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport _async_update_data
2024-06-20 09:19:58.278 DEBUG (MainThread) [custom_components.daikinskyport] Daikin Skyport data updated successfully