ScratMan / HASmartThermostat

Smart Thermostat with PID controller for HomeAssistant
352 stars 50 forks source link

Output control not linked to control_output #121

Closed HermesHonshappo closed 1 year ago

HermesHonshappo commented 1 year ago

Describe the bug I did upgrade to the latest version today. I'm using 5 instances of smart_thermostat. On the one controlling my heated floor, I noticed when I bumped the temperature up that the water pump was not constantly on.

So I checked values, and even though the control_output was at 100%, hvac_action was staying on "heating" for maximum 1 minute. And the switch controlling the water pump was only staying "on" for one minute as well. It wasn't respecting the min cycle, which I set at 3 minutes So there doesn't seem to be a correct compute of "hvac_action" when control_output is at 100%. I haven't tried with other values, but I could if required.

I have done a fallback to version 2022.2.1, and hvac_action is staying in "heating", and the water pump is on constantly. It has been on for over 15 minutes.

Expected behavior When control_output is at 100%, the hvac_action: should be constantly "heating" (=on), and the output switch should be constantly on. Wasn't the case with the latest version

Screenshots Here is graph over time. I have templates that extract hvac_action, to be able to create the graphs below.

Screenshot 2023-01-31 at 14 59 04

Here is with 2023.1.1. Output was on for 1 minute max

Screenshot 2023-01-31 at 14 52 28

The dark grey bars are when I rebooted HA. I have tried several reboots, to troubleshoot.

Here is back with 2022.2.1, output has been on for 16 mins

Screenshot 2023-01-31 at 15 03 07

Desktop (please complete the following information):

Additional context Here is the config.yaml for this thermostat

- platform: smart_thermostat
  name: Thermostat Ch. Ian PID Dalle
  unique_id: c8d8a872-84ac-41dd-9cf5-7e3a28868de5
  heater: switch.switch_tableau_electrique_m1_pompe_chauffage
  target_sensor: sensor.temp_dalle_ch_ian_average_temperature_hacs_1h
  ac_mode: False
  keep_alive:
    seconds: 60
  pwm : 1800                  #30 minutes
  sampling_period: 00:05:00
  min_cycle_duration: 180     #3 minutes
  cold_tolerance: 0
  hot_tolerance: 0.1
  min_temp: 10
  max_temp: 27
  away_temp: 15
  sleep_temp: 22
  comfort_temp: 25
  preset_sync_mode: sync
  kp : 40
  ki : 0.0009
  kd : 30000
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 1.5
#  debug: true

Also: I had debug set to "true", since I'm graphing & displaying the various pid_p, etc. While I was still on 2023.1.1, I commented this line and rebooted HA, to see if it was linked to debug mode, but it didn't change anything

Let me know if I can test something.

ScratMan commented 1 year ago

Hi, i can't see this behaviour on my setup. Could you please activate the logger for the thermostat adding the lines below in the configuration.yaml from HA, reinstall 2023.1.1, reproduce the issue, save the log content and post it here?

logger:
  logs:
    custom_components.smart_thermostat: debug

Thanks.

HermesHonshappo commented 1 year ago

OK here goes. I just reinstalled 2023.1.1, and set the target temp t 27°C. The PID thermostat version 2022.2.1 had successfully brought the floor to 25°C before.

Pics below

The pump activity. Turns on for 1 min, then off for 2 mins

Screenshot 2023-02-01 at 12 03 56

The graph. the switch to 2023.1.1 is when you see the small dark grey bar in the timeline. As you can see before I had long cycles, that was 2022.2.1 maintaining the 25°C temp

Screenshot 2023-02-01 at 12 04 27

After the reboot, I bump the target temp to 27°C, after a minute, the smart thermostat computes a new control_output to 100%, and the behavior re-appears

Log below home-assistant_2023-02-01T11-05-22.644Z.log

HermesHonshappo commented 1 year ago

Made another try. This time I set the target temp to 25.5 The idea was to have the control-output to a value that is not zero, and not 100%

Pic:

Screenshot 2023-02-01 at 12 24 49

So control output is now 55.4%

However, the pump only turned on for 32 seconds, after 12mins 28 secs of inactivity

Screenshot 2023-02-01 at 12 26 44

Associated log (I started the file just after the last line of the file above

home-assistant_2023-02-01T11-27-45.571Z.log

HermesHonshappo commented 1 year ago

Last, the pics and log with 2022.2.1 (I downloaded old version, rebooted, and set the temp to 27°C again). Now the control output is 95.5%. hvac-action has been "heating" and pump switch has been on for over 4 mins now, and pump if flowing water.

Screenshot 2023-02-01 at 12 49 54

Log file

home-assistant_2023-02-01T11-50-05.038Z.log

Let me know if I can try anything else

matusk commented 1 year ago

Sorry for off topic. @HermesHonshappo I like your chart, how did you add the time frame and date range? Can you please share your code?

HermesHonshappo commented 1 year ago

I extract "hvac-action" attribute from the thermostat with a template

- sensor:
  - name: "Mode thermostat Pièce"
    unique_id: 46545436c250-d1ce-4fc7-895d-ce6c1654413b
    icon: mdi:heating-coil
    state: "{{ state_attr('climate.thermostat_ch_parents', 'hvac_action') }}"

I also generate a few values to create the graph with the orange vertical bars, and the purple target temp. I wanted to re-create something that looks like the "history" tab of HA.

  - name: "Temp. thermostat Pièce"
    unique_id: 5785692f-2aa3-45af-bed4-536225eed3f0
    icon: mdi:thermostat
    state: "{{ state_attr('climate.thermostat_ch_parents', 'temperature') }}"
  - name: "Heating curve thermostat Pièce"
    unique_id: 95e2bf2b-9874-455d-8e55-48cc3949a78d
    icon: mdi:heat-wave
    unit_of_measurement: "°C"
    state: >
        {% set Temp = states('sensor.temperature_chambre_parents_temperature') %}
        {% set Status = states('sensor.mode_thermostat_piece') %}
        {% if (Status == 'heating') %}
            {{ Temp }}
        {% else %} 0
        {% endif %}

Then it is displayed with an add-on called "history-explorer-card"

type: custom:history-explorer-card
showUnavailable: false
decimation: fast
refresh:
  interval: 60
statistics:
  enabled: true
  mode: mean
  period: hour
header: hide
uiLayout:
  toolbar: bottom
  selector: hide
cardName: historycard-temp-ch_parents
combineSameUnits: false
tooltipShowDuration: true
defaultTimeRange: 1d
stateColors:
  door.on: blue
  motion.on: yellow
  unavailable: darkgray
  idle: lightgray
  heating: orange
  'off': darkblue
graphs:
  - type: line
    options:
      showTimeLabels: false
      ymin: 10
    entities:
      - entity: sensor.temperature_chambre_parents_temperature
        name: T° Ch. Parents
        color: '#FF4000A0'
        width: 2
      - entity: sensor.heating_curve_thermostat_piece
        name: Chauffage
        color: transparent
        fill: '#FF8000A0'
        width: 1
        lineMode: stepped
      - entity: sensor.temp_thermostat_piece
        name: T° consigne
        color: purple
        fill: rgba(230,230,230,1)
        width: 1
        lineMode: stepped
  - type: timeline
    entities:
      - entity: sensor.mode_thermostat_piece
ScratMan commented 1 year ago

Hello, I looked at the logs, but could not identify what switches off the heater.

I pushed some commits to get more explicit logs to be able to identify what is requesting the switch. It occurs after the keep alive period, so it looks like there is a condition somewhere in the code that allows to switch off the heater while the on time is not elapsed.

I'm suspecting it comes from this block, but can't figure why:

            if not self._active or self._attr_hvac_mode == HVACMode.OFF:
                if self._attr_hvac_mode == HVACMode.OFF and self._is_device_active:
                    _LOGGER.debug("%s: %s is active while HVAC mode is %s. Turning it OFF.",
                                  self.entity_id, self._heater_entity_id, self._attr_hvac_mode)
                    if self._pwm:
                        await self._async_heater_turn_off(force=True)
                    else:
                        self._control_output = 0
                        data = {ATTR_ENTITY_ID: self._heater_entity_id,
                                ATTR_VALUE: self._control_output}
                        await self.hass.services.async_call(NUMBER_DOMAIN, SERVICE_SET_VALUE, data)
                await self.async_update_ha_state()
                return

Maybe the self._attr_hvac_mode is not set correctly.

Could you please switch your install to the master branch to point on the latest commits and test again ? We should see in the logs one of these messages when the switch toggles OFF after the keep-alive period:

_LOGGER.debug("%s: Turn OFF heater from async_set_hvac_mode(%s)", self.entity_id, hvac_mode)
_LOGGER.debug("%s: %s is active while HVAC mode is %s. Turning it OFF.", self.entity_id, self._heater_entity_id, self._attr_hvac_mode)
_LOGGER.info("%s: Output is 0. Request turning OFF %s", self.entity_id, self._heater_entity_id)
_LOGGER.info("%s: ON time passed. Request turning OFF %s", self.entity_id, self._heater_entity_id)
HermesHonshappo commented 1 year ago

Could you please switch your install to the master branch to point on the latest commits and test again ?

I'm OK but not sure how to do this. I'm using HA on a dedicated machine, HAOS, and using the Smart thermostat as an integration installed with HACS. How would I install a specific version with HACS? BY using a custom repo in HACS and entering this github?

matusk commented 1 year ago

@HermesHonshappo you can redownload Smart thermostat (PID) via HACS and from version selector choose "master" branch.

dstewartwhite commented 1 year ago

I have had the same issue, be it simpler, Since upgrading the output was in short pulses (10sec) only every 16 minutes. I have since reverted to the previous version 2022.2.1 and the output is now correct and the temperature required is being maintained

ScratMan commented 1 year ago

@dstewartwhite, @HermesHonshappo, do you use some integration reload services in your home assistant automations or scripts?

dstewartwhite commented 1 year ago

No I do not use either as I have only started using HA some 4 months ago and still learning

HermesHonshappo commented 1 year ago

@dstewartwhite, @HermesHonshappo, do you use some integration reload services in your home assistant automations or scripts?

Yes, I do, but not for this integration. I'm reloading the LG integration when I detect that it no longer reports the status from my fridge.

Didn't have the time to make new tests with master branch, but hopefully tomorrow

ScratMan commented 1 year ago

I could reproduce the issue when having multiple thermostats and using the reload service. It looks as if the keep_alive timer were merged all together. I'm now checking the behaviour after a reboot.

HermesHonshappo commented 1 year ago

OK tested the master branch this morning

Set temp to 27°, PID output is 100%, pump cycles after 1 minute:

Screenshot 2023-02-08 at 08 39 39

Associated log

home-assistant_2023-02-08T07-40-39.285Z.log

ScratMan commented 1 year ago

It seems the installation is not on the master branch. The messages in the log should be like [custom_components.smart_thermostat.climate] climate.thermostat_ch_ian_pid_dalle: <log message>

To install master branch on french HA, go to HACS, click on "Intégrations", select the Smart Thermostat (PID), click on the three dots menu in the top right corner and select "Retélécharger". Wait for the "Sélectionner la version" field to be available, and select master in the bottom of the list, next click on "Télécharger". Once the integration is installed, reboot HA.

HermesHonshappo commented 1 year ago

OK I may have downloaded the wrong version. Tried again with the master branch

Screenshot 2023-02-08 at 09 50 57 Screenshot 2023-02-08 at 09 51 12

Pump cycles every minute

Screenshot 2023-02-08 at 10 35 51

Logfile

home-assistant_2023-02-08T09-35-59.163Z.log

ScratMan commented 1 year ago

OK, much better. So it looks like the HVAC_Mode is seen as OFF, so when the keep_alive timer triggers a check, it sees the heater as ON while the thermostat is supposed to be OFF. May be linked to a configuration with multiple thermostats, that's why I didn't see the issue at first with only one set at home.

Could you please provide the configuration Yaml for all your smart_thermostat instances ?

HermesHonshappo commented 1 year ago

Sure. It's all in a climate.yaml file that is imported at HA start

- platform: smart_thermostat
  name: Thermostat Salon
  unique_id: dfa26e22-f6f3-4b7d-9c3d-0b1cfef1a3a3
  heater: input_boolean.commande_chauffage_salon
  target_sensor: sensor.temperature_salon_temperature
  ac_mode: False
  target_temp_step: 0.1
  keep_alive:
    seconds: 60
  pwm: 00:15:00
  min_cycle_duration: 00:03:00
  cold_tolerance: 0
  hot_tolerance: 0
  min_temp: 10
  max_temp: 24
  away_temp: 12
  sleep_temp: 15.5
  comfort_temp: 18
  preset_sync_mode: sync
  kp : 50
  ki : 0.005
  kd : 50000
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 4

- platform: smart_thermostat
  name: Thermostat SdB M2
  unique_id: 580e04e0-9da4-4da4-9eae-c48d047bd002
  heater: input_boolean.commande_chauffage_salle_de_bain_m2
  target_sensor: sensor.temperature_salle_de_bain_temperature
  ac_mode: False
  target_temp_step: 0.1
  keep_alive:
    seconds: 60
  pwm: 00:15:00
  min_cycle_duration: 00:03:00
  cold_tolerance: 0
  hot_tolerance: 0
  min_temp: 10
  max_temp: 24
  away_temp: 12
  sleep_temp: 15.5
  comfort_temp: 18
  preset_sync_mode: sync
  kp : 50
  ki : 0.008
  kd : 50000
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 4
#  debug: true

- platform: smart_thermostat
  name: Thermostat Ch. Parents
  unique_id: d28ba05c-63f4-4893-8df3-48594e3fe77d
  heater: input_boolean.commande_chauffage_ch_parents
  target_sensor: sensor.temperature_chambre_parents_temperature
  ac_mode: False
  target_temp_step: 0.1
  keep_alive:
    seconds: 60
  pwm: 00:15:00
  min_cycle_duration: 00:03:00
  cold_tolerance: 0
  hot_tolerance: 0
  min_temp: 10
  max_temp: 24
  away_temp: 12
  sleep_temp: 15.5
  comfort_temp: 18
  preset_sync_mode: sync
  kp : 50
  ki : 0.008
  kd : 50000
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 4
#  debug: true

- platform: smart_thermostat
  name: Thermostat Ch. Mômes
  unique_id: 15263b8f-e428-4872-8cb6-d263b8c3b9d8
  heater: input_boolean.commande_chauffage_ch_momes
  target_sensor: sensor.temperature_chambre_momes_temperature
  ac_mode: False
  target_temp_step: 0.1
  keep_alive:
    seconds: 60
  pwm: 00:15:00
  min_cycle_duration: 00:03:00
  cold_tolerance: 0
  hot_tolerance: 0
  min_temp: 10
  max_temp: 24
  away_temp: 12
  sleep_temp: 15.5
  comfort_temp: 18
  preset_sync_mode: sync
  kp : 50
  ki : 0.005
  kd : 50000
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 4
#  debug: true

- platform: smart_thermostat
  name: Thermostat Ch. Ian PID
  unique_id: 59045b01-811b-47da-91da-194dcff41fee
  heater: switch.switch_tableau_electrique_m1_pompe_chauffage
  target_sensor: sensor.temperature_ch_ian_temperature
  target_temp_step: 0.1
  ac_mode: False
  keep_alive:
    seconds: 60
  pwm: 00:30:00
  sampling_period: 00:05:00
  min_cycle_duration: 00:03:00
  cold_tolerance: 0.1
  hot_tolerance: 0.1
  min_temp: 10
  max_temp: 24
  away_temp: 12
  sleep_temp: 16
  comfort_temp: 18
  preset_sync_mode: sync
#autotune results
#  kp : 7.23432
#  ki : 0.00184
#  kd : 2032.44078
  kp : 7.23432
  ki : 0.00184
  kd : 2032.44078
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 1
#  debug: true

- platform: smart_thermostat
  name: Thermostat Ch. Ian PID Dalle
  unique_id: c8d8a872-84ac-41dd-9cf5-7e3a28868de5
  heater: switch.switch_tableau_electrique_m1_pompe_chauffage
  target_sensor: sensor.temp_dalle_ch_ian_average_temperature_hacs_1h
  ac_mode: False
  keep_alive:
    seconds: 60
  pwm : 1800                  #30 minutes
  sampling_period: 00:05:00
  min_cycle_duration: 180     #3 minutes
  cold_tolerance: 0
  hot_tolerance: 0.1
  min_temp: 10
  max_temp: 27
  away_temp: 15
  sleep_temp: 22
  comfort_temp: 25
  preset_sync_mode: sync
  kp : 40
  ki : 0.0009
  kd : 30000
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 1.5
#  debug: true
ScratMan commented 1 year ago

Thanks. You have two thermostats sharing the same heater entity, that's why you face the issue. If the first thermostat consider there is no need for heat while the second one needs to heat, the keep_alive loop of the first thermostat will force the heater off. This is new in 2023.1.0 and made to ensure the thermostat keeps the control on the heater, otherwise the thermostat could consider the heater as off while the heater was physically on ; this could lead to infinite heating.

In your case you need to use Boolean inputs in thermostats configs and manage the switch.switch_tableau_electrique_m1_pompe_chauffage through an automation or a script to perform a logical OR between both inputs, and that will be triggered by the state changes of the inputs and a timer (to ensure the heater doesn't remains on forever if a state change is missed).

dstewartwhite commented 1 year ago

Hi. Not wishing to confuse the issue, but I have only one thermostat (config below), and the code is in the main configuration.yaml file. This configuration worked successfully over the last few months and is working now that I have reverted to version 2022.2.1

climate:

ScratMan commented 1 year ago

Hi. Not wishing to confuse the issue, but I have only one thermostat (config below), and the code is in the main configuration.yaml file. This configuration worked successfully over the last few months and is working now that I have reverted to version 2022.2.1

climate:

  • platform: smart_thermostat name: Smart Thermostat (PID) unique_id: smart_thermostat_01 heater: switch.greenhouse_right_sockets_socket_1 target_sensor: sensor.propagator_temperature_humidity_temperature outdoor_sensor: sensor.temperature_humidity_sensor_3_temperature min_temp: -10 max_temp: 40 ac_mode: False target_temp: 3 keep_alive: seconds: 30 sampling_period: 00:00:30 target_temp_step: 0.1 kp: 1.0 ki: 0 kd: 0

    ke: 0.6

    pwm: 00:01:00

Please post logs with master branch installed

HermesHonshappo commented 1 year ago

In your case you need to use Boolean inputs in thermostats configs

OK, makes sense. It's something I had planned to do anyway, since the pump should not be directly controlled, but only opened if one of the thermostat is on. Later the thermostats will trigger independant valves on the floor water control unit. And the pump should be on if at least one of the floor circuit valves is open.

But do you mean that I can use boolean inputs directly in the thermostat config? I have done this:

In input_boolean.yaml that is included in configuration.yaml

commande_pompe_1:
  name: Commande Pompe chauffage - Circuit 1
  initial: false
  icon: mdi:pipe-valve
commande_pompe_2:
  name: Commande Pompe chauffage - Circuit 2
  initial: false
  icon: mdi:pipe-valve

Then in climate.yaml:

- platform: smart_thermostat
  name: Thermostat Ch. Ian PID
  unique_id: 59045b01-811b-47da-91da-194dcff41fee
  heater: input_boolean.commande_pompe_1
  target_sensor: sensor.temperature_ch_ian_temperature
  target_temp_step: 0.1
  ac_mode: False
  keep_alive:
    seconds: 60
  pwm: 00:30:00
  sampling_period: 00:05:00
  min_cycle_duration: 00:03:00
  cold_tolerance: 0.1
  hot_tolerance: 0.1
  min_temp: 10
  max_temp: 24
  away_temp: 12
  sleep_temp: 16
  comfort_temp: 18
  preset_sync_mode: sync
#autotune results
#  kp : 7.23432
#  ki : 0.00184
#  kd : 2032.44078
  kp : 7.23432
  ki : 0.00184
  kd : 2032.44078
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 1
#  debug: true

- platform: smart_thermostat
  name: Thermostat Ch. Ian PID Dalle
  unique_id: c8d8a872-84ac-41dd-9cf5-7e3a28868de5
  heater: input_boolean.commande_pompe_2
  target_sensor: sensor.temp_dalle_ch_ian_average_temperature_hacs_1h
  ac_mode: False
  keep_alive:
    seconds: 60
  pwm : 1800                  #30 minutes
  sampling_period: 00:05:00
  min_cycle_duration: 180     #3 minutes
  cold_tolerance: 0
  hot_tolerance: 0.1
  min_temp: 10
  max_temp: 27
  away_temp: 15
  sleep_temp: 22
  comfort_temp: 25
  preset_sync_mode: sync
  kp : 40
  ki : 0.0009
  kd : 30000
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 1.5
#  debug: true

I'm testing right now, to see how it behaves with the master branch. So far, the pump has been on for more than a minute, so it seems to work better.

dstewartwhite commented 1 year ago

Hi Adrien

As I have said previously, I am new to HA, so do not know or understand how to select the log with Master Branch installed. I have attach a log file that lists “custom_components.smart_thermostat.climate”, maybe this can be of help. You say that I am using only a kp of 1.0 will lead to a 1% duty-cycle for a 1° error. However this has proved, using trial and error to give me a less than 0.2C variation in desired temperature. Is it possible that somehow I have configured kp with a multiplier and that with the new version this has been removed and the kp was actually 1.0 so having no effect?

Regards

Dave

@.***

@.***

Sent from Mailhttps://go.microsoft.com/fwlink/?LinkId=550986 for Windows

From: Adrien @.> Sent: 08 February 2023 14:59 To: @.> Cc: @.>; @.> Subject: Re: [ScratMan/HASmartThermostat] Output control not linked to control_output (Issue #121)

Hi. Not wishing to confuse the issue, but I have only one thermostat (config below), and the code is in the main configuration.yaml file. This configuration worked successfully over the last few months and is working now that I have reverted to version 2022.2.1

climate: · platform: smart_thermostat name: Smart Thermostat (PID) unique_id: smart_thermostat_01 heater: switch.greenhouse_right_sockets_socket_1 target_sensor: sensor.propagator_temperature_humidity_temperature outdoor_sensor: sensor.temperature_humidity_sensor_3_temperature min_temp: -10 max_temp: 40 ac_mode: False target_temp: 3 keep_alive: seconds: 30 sampling_period: 00:00:30 target_temp_step: 0.1 kp: 1.0 ki: 0 kd: 0

ke: 0.6

pwm: 00:01:00

Please post logs with master branch installed

— Reply to this email directly, view it on GitHubhttps://github.com/ScratMan/HASmartThermostat/issues/121#issuecomment-1422730335, or unsubscribehttps://github.com/notifications/unsubscribe-auth/A3I7ONIZ4X6WFOKZOJMPIJDWWOYGXANCNFSM6AAAAAAUMPNONE. You are receiving this because you were mentioned.Message ID: @.***>

2023-02-08 17:44:09.020 WARNING (SyncWorker_2) [homeassistant.loader] We found a custom integration ble_monitor 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 2023-02-08 17:44:09.034 WARNING (SyncWorker_2) [homeassistant.loader] We found a custom integration smart_thermostat 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 2023-02-08 17:44:09.064 WARNING (SyncWorker_2) [homeassistant.loader] We found a custom integration hacs 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 2023-02-08 17:44:09.079 WARNING (SyncWorker_2) [homeassistant.loader] We found a custom integration variable 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 2023-02-08 17:44:09.132 WARNING (SyncWorker_2) [homeassistant.loader] We found a custom integration powercalc 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 2023-02-08 17:44:09.133 WARNING (SyncWorker_2) [homeassistant.loader] We found a custom integration multiscrape 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 2023-02-08 17:44:11.840 INFO (MainThread) [homeassistant.setup] Setup of domain logger took 0.0 seconds 2023-02-08 17:44:11.840 INFO (MainThread) [homeassistant.bootstrap] Setting up frontend: {'frontend'} 2023-02-08 17:44:11.905 INFO (MainThread) [homeassistant.setup] Setting up device_automation 2023-02-08 17:44:11.906 INFO (MainThread) [homeassistant.setup] Setup of domain device_automation took 0.0 seconds 2023-02-08 17:44:12.321 INFO (MainThread) [homeassistant.setup] Setting up lovelace 2023-02-08 17:44:12.325 INFO (MainThread) [homeassistant.setup] Setting up http 2023-02-08 17:44:12.347 INFO (MainThread) [homeassistant.setup] Setup of domain lovelace took 0.0 seconds 2023-02-08 17:44:12.406 INFO (MainThread) [homeassistant.setup] Setup of domain http took 0.1 seconds 2023-02-08 17:44:12.424 INFO (MainThread) [homeassistant.setup] Setting up api 2023-02-08 17:44:12.428 INFO (MainThread) [homeassistant.setup] Setup of domain api took 0.0 seconds 2023-02-08 17:44:12.428 INFO (MainThread) [homeassistant.setup] Setting up auth 2023-02-08 17:44:12.430 INFO (MainThread) [homeassistant.setup] Setup of domain auth took 0.0 seconds 2023-02-08 17:44:12.459 INFO (MainThread) [homeassistant.setup] Setting up config 2023-02-08 17:44:12.489 INFO (MainThread) [homeassistant.setup] Setting up diagnostics 2023-02-08 17:44:12.523 INFO (MainThread) [homeassistant.setup] Setting up repairs 2023-02-08 17:44:12.524 INFO (MainThread) [homeassistant.setup] Setup of domain repairs took 0.0 seconds 2023-02-08 17:44:12.939 INFO (MainThread) [homeassistant.setup] Setup of domain config took 0.5 seconds 2023-02-08 17:44:12.940 INFO (MainThread) [homeassistant.setup] Setup of domain diagnostics took 0.5 seconds 2023-02-08 17:44:13.022 INFO (MainThread) [homeassistant.setup] Setting up file_upload 2023-02-08 17:44:13.023 INFO (MainThread) [homeassistant.setup] Setup of domain file_upload took 0.0 seconds 2023-02-08 17:44:13.504 INFO (MainThread) [homeassistant.setup] Setting up image_upload 2023-02-08 17:44:13.505 INFO (MainThread) [homeassistant.setup] Setting up websocket_api 2023-02-08 17:44:13.506 INFO (MainThread) [homeassistant.setup] Setup of domain websocket_api took 0.0 seconds 2023-02-08 17:44:13.509 INFO (MainThread) [homeassistant.setup] Setup of domain image_upload took 0.0 seconds 2023-02-08 17:44:13.536 INFO (SyncWorker_9) [homeassistant.loader] Loaded device_tracker from homeassistant.components.device_tracker 2023-02-08 17:44:13.700 INFO (MainThread) [homeassistant.setup] Setting up search 2023-02-08 17:44:13.700 INFO (MainThread) [homeassistant.setup] Setup of domain search took 0.0 seconds 2023-02-08 17:44:16.117 INFO (MainThread) [homeassistant.setup] Setting up analytics 2023-02-08 17:44:16.226 INFO (MainThread) [homeassistant.setup] Setting up person 2023-02-08 17:44:16.246 INFO (MainThread) [homeassistant.setup] Setup of domain analytics took 0.1 seconds 2023-02-08 17:44:16.266 INFO (MainThread) [homeassistant.setup] Setup of domain person took 0.0 seconds 2023-02-08 17:44:16.289 INFO (SyncWorker_4) [homeassistant.loader] Loaded panel_custom from homeassistant.components.panel_custom 2023-02-08 17:44:16.293 INFO (MainThread) [homeassistant.setup] Setting up onboarding 2023-02-08 17:44:16.318 INFO (MainThread) [homeassistant.setup] Setup of domain onboarding took 0.0 seconds 2023-02-08 17:44:16.319 INFO (MainThread) [homeassistant.setup] Setting up frontend 2023-02-08 17:44:16.442 INFO (MainThread) [homeassistant.setup] Setup of domain frontend took 0.1 seconds 2023-02-08 17:44:16.444 INFO (MainThread) [homeassistant.bootstrap] Setting up recorder: {'recorder'} 2023-02-08 17:44:16.447 INFO (MainThread) [homeassistant.setup] Setting up recorder 2023-02-08 17:44:16.452 INFO (MainThread) [homeassistant.components.http] Now listening on port 8123 2023-02-08 17:44:16.688 INFO (MainThread) [homeassistant.setup] Setup of domain recorder took 0.2 seconds 2023-02-08 17:44:16.690 INFO (MainThread) [homeassistant.bootstrap] Setting up stage 1: {'dhcp', 'http', 'bluetooth', 'hassio', 'api', 'cloud', 'zeroconf', 'websocket_api', 'ssdp', 'usb', 'webhook', 'network'} 2023-02-08 17:44:16.691 INFO (MainThread) [homeassistant.setup] Setting up hassio 2023-02-08 17:44:16.718 INFO (MainThread) [homeassistant.setup] Setting up webhook 2023-02-08 17:44:16.719 INFO (MainThread) [homeassistant.setup] Setup of domain webhook took 0.0 seconds 2023-02-08 17:44:17.301 INFO (MainThread) [homeassistant.setup] Setting up dhcp 2023-02-08 17:44:17.301 INFO (MainThread) [homeassistant.setup] Setup of domain dhcp took 0.0 seconds 2023-02-08 17:44:17.410 INFO (MainThread) [homeassistant.setup] Setting up usb 2023-02-08 17:44:17.412 INFO (MainThread) [homeassistant.setup] Setup of domain usb took 0.0 seconds 2023-02-08 17:44:17.417 INFO (MainThread) [homeassistant.setup] Setting up network 2023-02-08 17:44:17.422 INFO (MainThread) [homeassistant.setup] Setup of domain network took 0.0 seconds 2023-02-08 17:44:17.529 INFO (SyncWorker_9) [homeassistant.loader] Loaded alexa from homeassistant.components.alexa 2023-02-08 17:44:17.548 INFO (SyncWorker_3) [homeassistant.loader] Loaded google_assistant from homeassistant.components.google_assistant 2023-02-08 17:44:18.185 INFO (MainThread) [homeassistant.setup] Setting up bluetooth 2023-02-08 17:44:18.276 INFO (SyncWorker_5) [homeassistant.loader] Loaded camera from homeassistant.components.camera 2023-02-08 17:44:18.638 INFO (MainThread) [homeassistant.setup] Setting up zeroconf 2023-02-08 17:44:18.648 INFO (MainThread) [homeassistant.setup] Setup of domain zeroconf took 0.0 seconds 2023-02-08 17:44:19.024 INFO (MainThread) [homeassistant.setup] Setting up ssdp 2023-02-08 17:44:19.182 INFO (MainThread) [homeassistant.components.zeroconf] Starting Zeroconf broadcast 2023-02-08 17:44:19.198 INFO (SyncWorker_2) [homeassistant.loader] Loaded media_player from homeassistant.components.media_player 2023-02-08 17:44:19.207 INFO (MainThread) [homeassistant.setup] Setup of domain ssdp took 0.2 seconds 2023-02-08 17:44:23.914 INFO (MainThread) [homeassistant.setup] Setting up cloud 2023-02-08 17:44:24.017 INFO (MainThread) [homeassistant.setup] Setup of domain cloud took 0.1 seconds 2023-02-08 17:44:24.121 INFO (MainThread) [homeassistant.setup] Setup of domain bluetooth took 5.9 seconds 2023-02-08 17:44:26.693 WARNING (MainThread) [homeassistant.setup] Setup of hassio is taking over 10 seconds. 2023-02-08 17:44:31.694 INFO (MainThread) [homeassistant.setup] Setup of domain hassio took 15.0 seconds 2023-02-08 17:44:51.497 INFO (SyncWorker_8) [homeassistant.loader] Loaded binary_sensor from homeassistant.components.binary_sensor 2023-02-08 17:44:51.500 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor 2023-02-08 17:44:51.502 INFO (MainThread) [homeassistant.setup] Setup of domain binary_sensor took 0.0 seconds 2023-02-08 17:44:51.554 INFO (SyncWorker_9) [homeassistant.loader] Loaded update from homeassistant.components.update 2023-02-08 17:44:51.625 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.hassio 2023-02-08 17:44:51.696 INFO (SyncWorker_7) [homeassistant.loader] Loaded qnap from homeassistant.components.qnap 2023-02-08 17:44:51.709 INFO (MainThread) [homeassistant.setup] Setting up update 2023-02-08 17:44:51.710 INFO (MainThread) [homeassistant.setup] Setup of domain update took 0.0 seconds 2023-02-08 17:44:51.734 INFO (MainThread) [homeassistant.components.update] Setting up update.hassio 2023-02-08 17:44:51.914 INFO (SyncWorker_6) [homeassistant.loader] Loaded time_date from homeassistant.components.time_date 2023-02-08 17:44:51.978 INFO (SyncWorker_0) [homeassistant.loader] Loaded history_stats from homeassistant.components.history_stats 2023-02-08 17:44:52.778 INFO (MainThread) [homeassistant.setup] Setting up sensor 2023-02-08 17:44:52.779 INFO (MainThread) [homeassistant.setup] Setup of domain sensor took 0.0 seconds 2023-02-08 17:44:52.779 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.qnap 2023-02-08 17:44:52.780 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.time_date 2023-02-08 17:44:52.780 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.history_stats 2023-02-08 17:44:52.809 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.hassio 2023-02-08 17:44:52.811 INFO (MainThread) [homeassistant.setup] Setting up light 2023-02-08 17:44:52.812 INFO (MainThread) [homeassistant.setup] Setting up group 2023-02-08 17:44:53.071 INFO (MainThread) [homeassistant.setup] Setting up template 2023-02-08 17:44:53.072 INFO (MainThread) [homeassistant.setup] Setup of domain template took 0.0 seconds 2023-02-08 17:44:53.073 INFO (MainThread) [homeassistant.setup] Setting up select 2023-02-08 17:44:53.074 INFO (MainThread) [homeassistant.setup] Setup of domain select took 0.0 seconds 2023-02-08 17:44:53.075 INFO (MainThread) [homeassistant.setup] Setting up utility_meter 2023-02-08 17:44:53.075 INFO (MainThread) [homeassistant.setup] Setup of domain utility_meter took 0.0 seconds 2023-02-08 17:44:53.104 INFO (MainThread) [homeassistant.setup] Setup of domain light took 0.3 seconds 2023-02-08 17:44:53.263 INFO (MainThread) [homeassistant.setup] Setup of domain group took 0.5 seconds 2023-02-08 17:44:53.266 INFO (MainThread) [homeassistant.setup] Setting up powercalc 2023-02-08 17:44:53.412 INFO (MainThread) [homeassistant.setup] Setup of domain powercalc took 0.1 seconds 2023-02-08 17:44:53.429 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.powercalc 2023-02-08 17:44:53.430 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.powercalc 2023-02-08 17:44:53.430 INFO (MainThread) [homeassistant.bootstrap] Setting up stage 2: {'energy', 'utility_meter', 'input_number', 'input_select', 'template', 'timer', 'search', 'ipp', 'sun', 'climate', 'input_datetime', 'person', 'multiscrape', 'application_credentials', 'image_upload', 'automation', 'mqtt', 'roku', 'integration', 'map', 'dlna_dms', 'input_boolean', 'diagnostics', 'mobile_app', 'history', 'onboarding', 'ffmpeg', 'lovelace', 'influxdb', 'powercalc', 'scene', 'media_source', 'repairs', 'ibeacon', 'auth', 'system_health', 'group', 'hardware', 'file_upload', 'hacs', 'sensor', 'analytics', 'device_automation', 'nut', 'default_config', 'nmap_tracker', 'select', 'input_button', 'persistent_notification', 'config', 'light', 'script', 'blueprint', 'conversation', 'bluetooth_adapters', 'zone', 'schedule', 'logbook', 'my', 'input_text', 'radio_browser', 'trace', 'tag', 'homeassistant_alerts', 'counter', 'upnp', 'tuya'} 2023-02-08 17:44:53.440 INFO (MainThread) [homeassistant.setup] Setting up input_number 2023-02-08 17:44:53.441 INFO (MainThread) [homeassistant.setup] Setting up input_select 2023-02-08 17:44:53.443 INFO (MainThread) [homeassistant.setup] Setting up timer 2023-02-08 17:44:53.446 INFO (MainThread) [homeassistant.setup] Setting up sun 2023-02-08 17:44:53.447 INFO (MainThread) [homeassistant.setup] Setup of domain sun took 0.0 seconds 2023-02-08 17:44:53.565 INFO (MainThread) [homeassistant.setup] Setting up climate 2023-02-08 17:44:53.567 INFO (MainThread) [homeassistant.setup] Setup of domain climate took 0.0 seconds 2023-02-08 17:44:53.606 INFO (MainThread) [homeassistant.setup] Setting up input_datetime 2023-02-08 17:44:53.608 INFO (MainThread) [homeassistant.setup] Setting up integration 2023-02-08 17:44:53.608 INFO (MainThread) [homeassistant.setup] Setup of domain integration took 0.0 seconds 2023-02-08 17:44:53.609 INFO (MainThread) [homeassistant.setup] Setting up input_boolean 2023-02-08 17:44:53.698 INFO (MainThread) [homeassistant.setup] Setting up history 2023-02-08 17:44:53.699 INFO (MainThread) [homeassistant.setup] Setup of domain history took 0.0 seconds 2023-02-08 17:44:53.702 INFO (MainThread) [homeassistant.setup] Setting up scene 2023-02-08 17:44:53.702 INFO (MainThread) [homeassistant.components.scene] Setting up scene.homeassistant 2023-02-08 17:44:53.705 INFO (MainThread) [homeassistant.setup] Setting up input_button 2023-02-08 17:44:53.706 INFO (MainThread) [homeassistant.setup] Setting up blueprint 2023-02-08 17:44:53.706 INFO (MainThread) [homeassistant.setup] Setup of domain blueprint took 0.0 seconds 2023-02-08 17:44:53.707 INFO (MainThread) [homeassistant.setup] Setting up zone 2023-02-08 17:44:53.793 INFO (MainThread) [homeassistant.setup] Setting up schedule 2023-02-08 17:44:53.815 INFO (MainThread) [homeassistant.setup] Setting up input_text 2023-02-08 17:44:53.817 INFO (MainThread) [homeassistant.setup] Setting up trace 2023-02-08 17:44:53.817 INFO (MainThread) [homeassistant.setup] Setup of domain trace took 0.0 seconds 2023-02-08 17:44:53.884 INFO (MainThread) [homeassistant.setup] Setting up tag 2023-02-08 17:44:53.921 INFO (MainThread) [homeassistant.setup] Setting up homeassistant_alerts 2023-02-08 17:44:53.922 INFO (MainThread) [homeassistant.setup] Setup of domain homeassistant_alerts took 0.0 seconds 2023-02-08 17:44:53.986 INFO (MainThread) [homeassistant.setup] Setting up counter 2023-02-08 17:44:53.995 INFO (MainThread) [homeassistant.components.climate] Setting up climate.smart_thermostat 2023-02-08 17:44:54.049 DEBUG (MainThread) [custom_components.smart_thermostat.climate] PID Gains for Smart Thermostat (PID) (smart_thermostat_01): kp = 1.0, ki = 0.0, kd = 0.0 2023-02-08 17:44:54.095 INFO (SyncWorker_7) [homeassistant.loader] Loaded esphome from homeassistant.components.esphome 2023-02-08 17:44:54.113 INFO (SyncWorker_1) [homeassistant.loader] Loaded ruuvi_gateway from homeassistant.components.ruuvi_gateway 2023-02-08 17:44:54.154 INFO (MainThread) [homeassistant.setup] Setting up application_credentials 2023-02-08 17:44:54.155 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.integration 2023-02-08 17:44:54.167 INFO (SyncWorker_9) [homeassistant.loader] Loaded shelly from homeassistant.components.shelly 2023-02-08 17:44:54.192 INFO (MainThread) [homeassistant.setup] Setting up map 2023-02-08 17:44:54.192 INFO (MainThread) [homeassistant.setup] Setup of domain map took 0.0 seconds 2023-02-08 17:44:54.194 INFO (MainThread) [homeassistant.setup] Setup of domain scene took 0.5 seconds 2023-02-08 17:44:54.210 INFO (MainThread) [homeassistant.setup] Setting up media_source 2023-02-08 17:44:54.213 INFO (MainThread) [homeassistant.setup] Setting up system_health 2023-02-08 17:44:54.349 INFO (MainThread) [homeassistant.setup] Setting up logbook 2023-02-08 17:44:54.397 INFO (MainThread) [homeassistant.setup] Setting up my 2023-02-08 17:44:54.397 INFO (MainThread) [homeassistant.setup] Setup of domain my took 0.0 seconds 2023-02-08 17:44:54.402 INFO (MainThread) [homeassistant.setup] Setting up energy 2023-02-08 17:44:54.403 INFO (MainThread) [homeassistant.setup] Setup of domain energy took 0.0 seconds 2023-02-08 17:44:54.485 INFO (MainThread) [homeassistant.setup] Setting up automation 2023-02-08 17:44:54.487 INFO (MainThread) [homeassistant.setup] Setup of domain tag took 0.6 seconds 2023-02-08 17:44:54.658 INFO (MainThread) [homeassistant.setup] Setting up ipp 2023-02-08 17:44:54.658 INFO (MainThread) [homeassistant.setup] Setup of domain ipp took 0.0 seconds 2023-02-08 17:44:56.954 INFO (MainThread) [homeassistant.setup] Setting up multiscrape 2023-02-08 17:44:57.197 INFO (SyncWorker_0) [homeassistant.loader] Loaded switch from homeassistant.components.switch 2023-02-08 17:44:57.519 INFO (MainThread) [homeassistant.setup] Setup of domain media_source took 3.3 seconds 2023-02-08 17:44:57.520 INFO (MainThread) [homeassistant.setup] Setup of domain system_health took 3.3 seconds 2023-02-08 17:44:57.520 INFO (MainThread) [homeassistant.setup] Setup of domain logbook took 3.2 seconds 2023-02-08 17:44:57.784 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.energy 2023-02-08 17:44:57.787 INFO (MainThread) [homeassistant.setup] Setup of domain application_credentials took 3.6 seconds 2023-02-08 17:44:57.790 INFO (MainThread) [homeassistant.setup] Setup of domain timer took 4.3 seconds 2023-02-08 17:44:57.796 INFO (MainThread) [homeassistant.setup] Setup of domain counter took 3.8 seconds 2023-02-08 17:44:57.882 INFO (SyncWorker_8) [homeassistant.loader] Loaded switch_as_x from homeassistant.components.switch_as_x 2023-02-08 17:44:57.818 ERROR (MainThread) [homeassistant.components.sensor] Error adding entities for domain sensor with platform qnap Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 442, in async_add_entities await asyncio.gather(tasks) File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 717, in _async_add_entity await entity.add_to_platform_finish() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 814, in add_to_platform_finish self.async_write_ha_state() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 566, in async_write_ha_state self._async_write_ha_state() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 607, in _async_write_ha_state state = self._stringify_state(available) File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 572, in _stringify_state if (state := self.state) is None: File "/usr/src/homeassistant/homeassistant/components/sensor/init.py", line 466, in state value = self.native_value File "/usr/src/homeassistant/homeassistant/components/qnap/sensor.py", line 394, in native_value data = self._api.data["bandwidth"][self.monitor_device] KeyError: 'eth0' 2023-02-08 17:44:57.945 INFO (MainThread) [homeassistant.setup] Setup of domain input_number took 4.5 seconds 2023-02-08 17:44:57.952 INFO (MainThread) [homeassistant.setup] Setup of domain input_select took 4.5 seconds 2023-02-08 17:44:57.958 INFO (MainThread) [homeassistant.setup] Setup of domain input_datetime took 4.4 seconds 2023-02-08 17:44:57.959 INFO (MainThread) [homeassistant.setup] Setup of domain zone took 4.3 seconds 2023-02-08 17:45:02.132 INFO (MainThread) [homeassistant.setup] Setting up mqtt 2023-02-08 17:45:02.133 INFO (MainThread) [homeassistant.setup] Setup of domain mqtt took 0.0 seconds 2023-02-08 17:45:02.141 INFO (MainThread) [homeassistant.setup] Setup of domain automation took 7.7 seconds 2023-02-08 17:45:02.142 ERROR (MainThread) [homeassistant.components.sensor] Error while setting up qnap platform for sensor Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 301, in _async_setup_platform await asyncio.gather(pending) File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 442, in async_add_entities await asyncio.gather(*tasks) File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 717, in _async_add_entity await entity.add_to_platform_finish() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 814, in add_to_platform_finish self.async_write_ha_state() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 566, in async_write_ha_state self._async_write_ha_state() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 607, in _async_write_ha_state state = self._stringify_state(available) File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 572, in _stringify_state if (state := self.state) is None: File "/usr/src/homeassistant/homeassistant/components/sensor/init.py", line 466, in state value = self.native_value File "/usr/src/homeassistant/homeassistant/components/qnap/sensor.py", line 394, in native_value data = self._api.data["bandwidth"][self.monitor_device] KeyError: 'eth0' 2023-02-08 17:45:02.168 INFO (MainThread) [homeassistant.setup] Setup of domain input_boolean took 8.6 seconds 2023-02-08 17:45:02.170 INFO (MainThread) [homeassistant.setup] Setup of domain schedule took 8.4 seconds 2023-02-08 17:45:02.171 INFO (MainThread) [homeassistant.setup] Setup of domain input_text took 8.4 seconds 2023-02-08 17:45:02.172 WARNING (MainThread) [homeassistant.config_entries] Config entry 'EPSON ET-3750 Series' for ipp integration not ready yet: Invalid response from API: Error occurred while communicating with IPP server.; Retrying in background 2023-02-08 17:45:02.441 INFO (MainThread) [homeassistant.setup] Setting up roku 2023-02-08 17:45:02.441 INFO (MainThread) [homeassistant.setup] Setup of domain roku took 0.0 seconds 2023-02-08 17:45:02.738 INFO (MainThread) [homeassistant.setup] Setting up dlna_dms 2023-02-08 17:45:02.739 INFO (MainThread) [homeassistant.setup] Setup of domain dlna_dms took 0.0 seconds 2023-02-08 17:45:02.861 INFO (MainThread) [homeassistant.setup] Setting up ffmpeg 2023-02-08 17:45:03.324 INFO (MainThread) [homeassistant.setup] Setup of domain input_button took 9.6 seconds 2023-02-08 17:45:12.041 INFO (MainThread) [homeassistant.setup] Setting up influxdb 2023-02-08 17:45:12.051 WARNING (MainThread) [homeassistant.setup] Setup of multiscrape is taking over 10 seconds. 2023-02-08 17:45:12.054 WARNING (MainThread) [homeassistant.config_entries] Config entry 'Now TV - YD00HP384777' for roku integration not ready yet: Invalid response from API: Timeout occurred while connecting to device; Retrying in background 2023-02-08 17:45:12.055 ERROR (MainThread) [homeassistant.components.mqtt.client] Failed to connect to MQTT server due to exception: [Errno -2] Name does not resolve 2023-02-08 17:45:12.355 INFO (MainThread) [homeassistant.setup] Setup of domain ffmpeg took 9.5 seconds 2023-02-08 17:45:12.365 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.mqtt 2023-02-08 17:45:12.366 INFO (MainThread) [homeassistant.components.climate] Setting up climate.mqtt 2023-02-08 17:45:12.366 INFO (MainThread) [homeassistant.components.light] Setting up light.mqtt 2023-02-08 17:45:12.367 INFO (MainThread) [homeassistant.components.select] Setting up select.mqtt 2023-02-08 17:45:12.368 INFO (MainThread) [homeassistant.components.scene] Setting up scene.mqtt 2023-02-08 17:45:12.368 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.mqtt 2023-02-08 17:45:12.369 INFO (MainThread) [homeassistant.components.update] Setting up update.mqtt 2023-02-08 17:45:12.369 ERROR (MainThread) [custom_components.multiscrape.coordinator] Scraper_noname_0 # Updating failed with exception: 2023-02-08 17:45:12.676 INFO (MainThread) [homeassistant.setup] Setting up hardware 2023-02-08 17:45:12.699 INFO (SyncWorker_3) [homeassistant.loader] Loaded alarm_control_panel from homeassistant.components.alarm_control_panel 2023-02-08 17:45:12.729 INFO (SyncWorker_0) [homeassistant.loader] Loaded button from homeassistant.components.button 2023-02-08 17:45:12.737 INFO (MainThread) [homeassistant.setup] Setting up camera 2023-02-08 17:45:12.741 INFO (MainThread) [homeassistant.setup] Setup of domain camera took 0.0 seconds 2023-02-08 17:45:12.742 INFO (MainThread) [homeassistant.setup] Setting up device_tracker 2023-02-08 17:45:12.749 INFO (MainThread) [homeassistant.setup] Setting up switch 2023-02-08 17:45:12.751 INFO (MainThread) [homeassistant.setup] Setup of domain switch took 0.0 seconds 2023-02-08 17:45:12.771 INFO (SyncWorker_4) [homeassistant.loader] Loaded cover from homeassistant.components.cover 2023-02-08 17:45:12.775 INFO (SyncWorker_10) [homeassistant.loader] Loaded humidifier from homeassistant.components.humidifier 2023-02-08 17:45:12.786 INFO (SyncWorker_7) [homeassistant.loader] Loaded number from homeassistant.components.number 2023-02-08 17:45:12.795 INFO (SyncWorker_3) [homeassistant.loader] Loaded text from homeassistant.components.text 2023-02-08 17:45:12.802 INFO (SyncWorker_6) [homeassistant.loader] Loaded siren from homeassistant.components.siren 2023-02-08 17:45:12.805 INFO (SyncWorker_0) [homeassistant.loader] Loaded vacuum from homeassistant.components.vacuum 2023-02-08 17:45:12.807 INFO (SyncWorker_8) [homeassistant.loader] Loaded fan from homeassistant.components.fan 2023-02-08 17:45:12.809 INFO (MainThread) [homeassistant.setup] Setting up alarm_control_panel 2023-02-08 17:45:12.810 INFO (MainThread) [homeassistant.setup] Setup of domain alarm_control_panel took 0.0 seconds 2023-02-08 17:45:12.811 INFO (MainThread) [homeassistant.setup] Setting up button 2023-02-08 17:45:12.812 INFO (MainThread) [homeassistant.setup] Setup of domain button took 0.0 seconds 2023-02-08 17:45:12.812 INFO (MainThread) [homeassistant.components.camera] Setting up camera.mqtt 2023-02-08 17:45:12.976 INFO (SyncWorker_5) [homeassistant.loader] Loaded lock from homeassistant.components.lock 2023-02-08 17:45:12.979 INFO (MainThread) [homeassistant.setup] Setup of domain device_tracker took 0.2 seconds 2023-02-08 17:45:12.980 INFO (MainThread) [homeassistant.components.switch] Setting up switch.mqtt 2023-02-08 17:45:12.982 ERROR (MainThread) [custom_components.multiscrape.coordinator] Scraper_noname_1 # Updating failed with exception: 2023-02-08 17:45:13.158 INFO (MainThread) [homeassistant.setup] Setup of domain influxdb took 1.1 seconds 2023-02-08 17:45:13.160 INFO (MainThread) [homeassistant.setup] Setting up script 2023-02-08 17:45:13.162 INFO (MainThread) [homeassistant.setup] Setting up cover 2023-02-08 17:45:13.166 INFO (MainThread) [homeassistant.setup] Setup of domain cover took 0.0 seconds 2023-02-08 17:45:13.167 INFO (MainThread) [homeassistant.setup] Setting up humidifier 2023-02-08 17:45:13.169 INFO (MainThread) [homeassistant.setup] Setup of domain humidifier took 0.0 seconds 2023-02-08 17:45:13.170 INFO (MainThread) [homeassistant.setup] Setting up number 2023-02-08 17:45:13.171 INFO (MainThread) [homeassistant.setup] Setup of domain number took 0.0 seconds 2023-02-08 17:45:13.172 INFO (MainThread) [homeassistant.setup] Setting up text 2023-02-08 17:45:13.173 INFO (MainThread) [homeassistant.setup] Setup of domain text took 0.0 seconds 2023-02-08 17:45:13.174 INFO (MainThread) [homeassistant.setup] Setting up siren 2023-02-08 17:45:13.175 INFO (MainThread) [homeassistant.setup] Setup of domain siren took 0.0 seconds 2023-02-08 17:45:13.176 INFO (MainThread) [homeassistant.setup] Setting up vacuum 2023-02-08 17:45:13.180 INFO (MainThread) [homeassistant.setup] Setup of domain vacuum took 0.0 seconds 2023-02-08 17:45:13.181 INFO (MainThread) [homeassistant.setup] Setting up fan 2023-02-08 17:45:13.185 INFO (MainThread) [homeassistant.setup] Setup of domain fan took 0.0 seconds 2023-02-08 17:45:13.185 INFO (MainThread) [homeassistant.components.alarm_control_panel] Setting up alarm_control_panel.mqtt 2023-02-08 17:45:13.186 INFO (MainThread) [homeassistant.components.button] Setting up button.mqtt 2023-02-08 17:45:13.187 INFO (MainThread) [homeassistant.setup] Setting up lock 2023-02-08 17:45:13.188 INFO (MainThread) [homeassistant.setup] Setup of domain lock took 0.0 seconds 2023-02-08 17:45:13.189 INFO (MainThread) [homeassistant.components.device_tracker] Setting up device_tracker.mqtt 2023-02-08 17:45:14.523 INFO (MainThread) [homeassistant.setup] Setting up hacs 2023-02-08 17:45:14.523 INFO (MainThread) [homeassistant.setup] Setup of domain hacs took 0.0 seconds 2023-02-08 17:45:14.529 INFO (MainThread) [homeassistant.components.cover] Setting up cover.mqtt 2023-02-08 17:45:14.529 INFO (MainThread) [homeassistant.components.humidifier] Setting up humidifier.mqtt 2023-02-08 17:45:14.530 INFO (MainThread) [homeassistant.components.number] Setting up number.mqtt 2023-02-08 17:45:14.532 INFO (MainThread) [homeassistant.components.text] Setting up text.mqtt 2023-02-08 17:45:14.533 INFO (MainThread) [homeassistant.components.siren] Setting up siren.mqtt 2023-02-08 17:45:14.534 INFO (MainThread) [homeassistant.components.vacuum] Setting up vacuum.mqtt 2023-02-08 17:45:14.535 INFO (MainThread) [homeassistant.components.fan] Setting up fan.mqtt 2023-02-08 17:45:14.536 INFO (MainThread) [homeassistant.components.lock] Setting up lock.mqtt 2023-02-08 17:45:14.810 INFO (MainThread) [homeassistant.setup] Setup of domain hardware took 2.1 seconds 2023-02-08 17:45:14.822 INFO (MainThread) [custom_components.hacs]

HACS (Home Assistant Community Store)

Version: 1.30.1 This is a custom integration If you have any issues with this you need to open an issue here: https://github.com/hacs/integration/issues

2023-02-08 17:45:14.839 INFO (MainThread) [homeassistant.setup] Setup of domain multiscrape took 17.9 seconds 2023-02-08 17:45:15.146 INFO (MainThread) [homeassistant.setup] Setting up nut 2023-02-08 17:45:15.146 INFO (MainThread) [homeassistant.setup] Setup of domain nut took 0.0 seconds 2023-02-08 17:45:15.150 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.multiscrape 2023-02-08 17:45:15.150 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.multiscrape 2023-02-08 17:45:15.343 INFO (MainThread) [homeassistant.setup] Setting up nmap_tracker 2023-02-08 17:45:15.343 INFO (MainThread) [homeassistant.setup] Setup of domain nmap_tracker took 0.0 seconds 2023-02-08 17:45:15.361 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.nut 2023-02-08 17:45:15.375 INFO (MainThread) [homeassistant.components.device_tracker] Setting up device_tracker.nmap_tracker 2023-02-08 17:45:15.726 INFO (MainThread) [homeassistant.setup] Setting up conversation 2023-02-08 17:45:15.727 INFO (MainThread) [homeassistant.setup] Setup of domain conversation took 0.0 seconds 2023-02-08 17:45:16.775 INFO (MainThread) [homeassistant.setup] Setting up radio_browser 2023-02-08 17:45:16.775 INFO (MainThread) [homeassistant.setup] Setup of domain radio_browser took 0.0 seconds 2023-02-08 17:45:16.779 INFO (MainThread) [homeassistant.setup] Setup of domain script took 3.6 seconds 2023-02-08 17:45:17.614 INFO (MainThread) [homeassistant.setup] Setting up upnp 2023-02-08 17:45:17.615 INFO (MainThread) [homeassistant.setup] Setup of domain upnp took 0.0 seconds 2023-02-08 17:45:18.448 INFO (MainThread) [homeassistant.setup] Setting up bluetooth_adapters 2023-02-08 17:45:18.449 INFO (MainThread) [homeassistant.setup] Setup of domain bluetooth_adapters took 0.0 seconds 2023-02-08 17:45:22.296 INFO (MainThread) [homeassistant.setup] Setting up tuya 2023-02-08 17:45:22.296 INFO (MainThread) [homeassistant.setup] Setup of domain tuya took 0.0 seconds 2023-02-08 17:45:22.338 INFO (MainThread) [custom_components.hacs] Restore started 2023-02-08 17:45:22.556 INFO (SyncWorker_3) [homeassistant.loader] Loaded notify from homeassistant.components.notify 2023-02-08 17:45:22.820 INFO (MainThread) [custom_components.hacs] Restore done 2023-02-08 17:45:23.367 INFO (MainThread) [homeassistant.setup] Setting up mobile_app 2023-02-08 17:45:23.795 INFO (MainThread) [homeassistant.setup] Setting up ibeacon 2023-02-08 17:45:23.796 INFO (MainThread) [homeassistant.setup] Setup of domain ibeacon took 0.0 seconds 2023-02-08 17:45:24.016 INFO (MainThread) [homeassistant.setup] Setup of domain mobile_app took 0.6 seconds 2023-02-08 17:45:24.080 INFO (MainThread) [homeassistant.components.device_tracker] Setting up device_tracker.ibeacon 2023-02-08 17:45:24.085 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.ibeacon 2023-02-08 17:45:24.093 INFO (MainThread) [homeassistant.setup] Setting up notify 2023-02-08 17:45:24.093 INFO (MainThread) [homeassistant.setup] Setup of domain notify took 0.0 seconds 2023-02-08 17:45:24.121 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.mobile_app 2023-02-08 17:45:24.124 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.mobile_app 2023-02-08 17:45:24.126 INFO (MainThread) [homeassistant.components.device_tracker] Setting up device_tracker.mobile_app 2023-02-08 17:45:24.187 INFO (MainThread) [homeassistant.components.notify] Setting up notify.mobile_app 2023-02-08 17:45:30.912 INFO (MainThread) [homeassistant.setup] Setting up default_config 2023-02-08 17:45:30.923 INFO (MainThread) [custom_components.hacs] Enable category: integration 2023-02-08 17:45:30.924 INFO (MainThread) [custom_components.hacs] Enable category: plugin 2023-02-08 17:45:30.924 INFO (MainThread) [custom_components.hacs] Enable category: theme 2023-02-08 17:45:30.924 INFO (MainThread) [custom_components.hacs] Enable category: appdaemon 2023-02-08 17:45:30.924 INFO (MainThread) [custom_components.hacs] Enable category: netdaemon 2023-02-08 17:45:30.963 INFO (MainThread) [custom_components.hacs] Setting up plugin endpoint 2023-02-08 17:45:30.963 INFO (MainThread) [custom_components.hacs] storage mode, cache for /hacsfiles/: True 2023-02-08 17:45:31.040 INFO (SyncWorker_8) [homeassistant.loader] Loaded stream from homeassistant.components.stream 2023-02-08 17:45:31.142 INFO (MainThread) [homeassistant.components.alarm_control_panel] Setting up alarm_control_panel.tuya 2023-02-08 17:45:31.172 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.tuya 2023-02-08 17:45:31.175 INFO (MainThread) [homeassistant.components.button] Setting up button.tuya 2023-02-08 17:45:31.216 INFO (MainThread) [homeassistant.components.camera] Setting up camera.tuya 2023-02-08 17:45:31.225 INFO (MainThread) [homeassistant.components.climate] Setting up climate.tuya 2023-02-08 17:45:31.237 INFO (MainThread) [homeassistant.components.cover] Setting up cover.tuya 2023-02-08 17:45:31.258 INFO (MainThread) [homeassistant.components.fan] Setting up fan.tuya 2023-02-08 17:45:31.288 INFO (MainThread) [homeassistant.components.humidifier] Setting up humidifier.tuya 2023-02-08 17:45:31.314 INFO (MainThread) [homeassistant.components.light] Setting up light.tuya 2023-02-08 17:45:31.345 INFO (MainThread) [homeassistant.components.number] Setting up number.tuya 2023-02-08 17:45:31.378 INFO (MainThread) [homeassistant.components.scene] Setting up scene.tuya 2023-02-08 17:45:31.434 INFO (MainThread) [homeassistant.components.select] Setting up select.tuya 2023-02-08 17:45:31.487 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.tuya 2023-02-08 17:45:31.613 INFO (MainThread) [homeassistant.components.siren] Setting up siren.tuya 2023-02-08 17:45:31.616 INFO (MainThread) [homeassistant.components.switch] Setting up switch.tuya 2023-02-08 17:45:31.618 INFO (MainThread) [homeassistant.components.vacuum] Setting up vacuum.tuya 2023-02-08 17:45:31.663 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.hacs 2023-02-08 17:45:32.058 DEBUG (MainThread) [custom_components.smart_thermostat.climate] Received new outdoor temperature sensor input for Smart Thermostat (PID) (climate.smart_thermostat_pid_2) at timestamp 1675878332.0581214: 1.5 2023-02-08 17:45:32.058 DEBUG (MainThread) [custom_components.smart_thermostat.climate] Received new temperature sensor input for Smart Thermostat (PID) (climate.smart_thermostat_pid_2) at timestamp 1675878332.0585585 (before None): 4.0 (before None) 2023-02-08 17:45:32.058 INFO (MainThread) [custom_components.smart_thermostat.climate] Obtained temperature 4.0 with set point 3.0. Smart thermostat Smart Thermostat (PID) (climate.smart_thermostat_pid_2) active. 2023-02-08 17:45:32.058 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -5.00 2023-02-08 17:45:32.059 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.60 2023-02-08 17:45:32.059 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: 0.00 2023-02-08 17:45:32.059 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:45:32.059 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:45:32.060 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -1.00, dt = 0.00, p=-5.00, i=2.60, d=0.00, e=0.00) 2023-02-08 17:45:32.102 INFO (MainThread) [homeassistant.setup] Setting up stream 2023-02-08 17:45:32.135 INFO (MainThread) [homeassistant.setup] Setup of domain stream took 0.0 seconds 2023-02-08 17:45:32.138 INFO (MainThread) [custom_components.hacs] Stage changed: setup 2023-02-08 17:45:32.140 INFO (MainThread) [custom_components.hacs] Stage changed: waiting 2023-02-08 17:45:32.140 INFO (MainThread) [custom_components.hacs] Setup complete, waiting for Home Assistant before startup tasks starts 2023-02-08 17:45:32.141 INFO (MainThread) [homeassistant.setup] Setup of domain default_config took 1.2 seconds 2023-02-08 17:45:37.249 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.upnp 2023-02-08 17:45:37.265 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.upnp 2023-02-08 17:45:37.865 INFO (MainThread) [homeassistant.bootstrap] Home Assistant initialized in 89.00s 2023-02-08 17:45:37.873 INFO (MainThread) [homeassistant.core] Starting Home Assistant 2023-02-08 17:45:37.885 INFO (MainThread) [custom_components.hacs] Stage changed: startup 2023-02-08 17:45:38.112 INFO (MainThread) [custom_components.hacs] Loading removed repositories 2023-02-08 17:45:39.073 INFO (MainThread) [custom_components.hacs] Loading known repositories 2023-02-08 17:45:39.099 INFO (MainThread) [homeassistant.components.roku.coordinator] Fetching roku data recovered 2023-02-08 17:45:39.648 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.roku 2023-02-08 17:45:39.930 INFO (MainThread) [homeassistant.components.select] Setting up select.roku 2023-02-08 17:45:39.960 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.roku 2023-02-08 17:45:40.020 INFO (MainThread) [homeassistant.setup] Setting up media_player 2023-02-08 17:45:40.030 INFO (MainThread) [homeassistant.setup] Setup of domain media_player took 0.0 seconds 2023-02-08 17:45:40.089 INFO (MainThread) [homeassistant.components.media_player] Setting up media_player.roku 2023-02-08 17:45:40.185 INFO (SyncWorker_2) [homeassistant.loader] Loaded remote from homeassistant.components.remote 2023-02-08 17:45:40.265 INFO (MainThread) [homeassistant.setup] Setting up remote 2023-02-08 17:45:40.267 INFO (MainThread) [homeassistant.setup] Setup of domain remote took 0.0 seconds 2023-02-08 17:45:40.276 INFO (MainThread) [homeassistant.components.remote] Setting up remote.roku 2023-02-08 17:45:40.581 INFO (MainThread) [custom_components.hacs] Starting recurring background task for downloaded repositories 2023-02-08 17:45:40.582 INFO (MainThread) [custom_components.hacs] Stage changed: running 2023-02-08 17:45:57.768 INFO (SyncWorker_10) [homeassistant.loader] Loaded qnap_qsw from homeassistant.components.qnap_qsw 2023-02-08 17:46:00.921 INFO (MainThread) [homeassistant.components.bluetooth.scanner] hci0 (00:1A:7D:DA:71:13): Bluetooth scanner has gone quiet for 90s, restarting 2023-02-08 17:46:01.454 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -5.00 2023-02-08 17:46:01.455 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.60 2023-02-08 17:46:01.455 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:46:01.455 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:46:01.455 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:46:01.455 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -1.00, dt = 29.40, p=-5.00, i=2.60, d=-0.00, e=0.00) 2023-02-08 17:46:23.923 DEBUG (MainThread) [custom_components.smart_thermostat.climate] Received new temperature sensor input for Smart Thermostat (PID) (climate.smart_thermostat_pid_2) at timestamp 1675878383.9230936 (before 1675878332.0585585): 3.8 (before 4.0) 2023-02-08 17:47:00.923 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:47:00.923 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.60 2023-02-08 17:47:00.924 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: 1.68 2023-02-08 17:47:00.924 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:47:00.924 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.28 2023-02-08 17:47:00.924 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.30 (error = -0.80, dt = 59.47, p=-4.00, i=2.60, d=1.70, e=0.00) 2023-02-08 17:47:00.924 INFO (MainThread) [custom_components.smart_thermostat.climate] Request turning on switch.greenhouse_right_sockets_socket_1 for Smart Thermostat (PID) (climate.smart_thermostat_pid_2) 2023-02-08 17:47:00.924 INFO (MainThread) [custom_components.smart_thermostat.climate] Turning on switch.greenhouse_right_sockets_socket_1 for Smart Thermostat (PID) (climate.smart_thermostat_pid_2) 2023-02-08 17:47:30.924 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:47:30.924 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:47:30.924 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:47:30.925 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:47:30.925 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:47:30.925 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.00, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:47:30.925 INFO (MainThread) [custom_components.smart_thermostat.climate] Request turning off switch.greenhouse_right_sockets_socket_1 for Smart Thermostat (PID) (climate.smart_thermostat_pid_2) 2023-02-08 17:47:30.925 INFO (MainThread) [custom_components.smart_thermostat.climate] Turning off switch.greenhouse_right_sockets_socket_1 for Smart Thermostat (PID) (climate.smart_thermostat_pid_2) 2023-02-08 17:48:00.925 INFO (MainThread) [homeassistant.components.bluetooth.scanner] hci0 (00:1A:7D:DA:71:13): Bluetooth scanner has gone quiet for 90s, restarting 2023-02-08 17:48:01.022 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:48:01.022 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:48:01.022 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:48:01.022 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:48:01.022 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:48:01.022 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.10, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:49:00.927 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:49:00.927 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:49:00.927 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:49:00.927 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:49:00.927 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:49:00.927 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 59.91, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:49:30.928 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:49:30.929 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:49:30.929 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:49:30.929 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:49:30.929 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:49:30.929 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.00, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:50:00.929 INFO (MainThread) [homeassistant.components.bluetooth.scanner] hci0 (00:1A:7D:DA:71:13): Bluetooth scanner has gone quiet for 90s, restarting 2023-02-08 17:50:00.931 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:50:00.931 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:50:00.932 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:50:00.932 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:50:00.932 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:50:00.932 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.00, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:51:00.931 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:51:00.931 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:51:00.931 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:51:00.931 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:51:00.932 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:51:00.932 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 60.00, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:51:30.934 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:51:30.934 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:51:30.934 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:51:30.934 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:51:30.934 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:51:30.935 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.00, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:52:00.936 INFO (MainThread) [homeassistant.components.bluetooth.scanner] hci0 (00:1A:7D:DA:71:13): Bluetooth scanner has gone quiet for 90s, restarting 2023-02-08 17:52:00.938 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:52:00.938 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:52:00.938 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:52:00.938 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:52:00.938 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:52:00.938 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.00, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:52:30.939 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:52:30.939 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:52:30.939 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:52:30.939 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:52:30.939 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:52:30.939 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.00, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:53:00.940 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:53:00.940 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:53:00.940 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:53:00.940 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:53:00.940 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:53:00.940 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.00, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:53:30.940 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:53:30.941 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:53:30.941 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:53:30.941 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:53:30.941 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:53:30.941 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.00, p=-4.00, i=2.40, d=-0.00, e=0.00) 2023-02-08 17:54:00.942 INFO (MainThread) [homeassistant.components.bluetooth.scanner] hci0 (00:1A:7D:DA:71:13): Bluetooth scanner has gone quiet for 90s, restarting 2023-02-08 17:54:00.944 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] P: -4.00 2023-02-08 17:54:00.944 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] I: 2.36 2023-02-08 17:54:00.944 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] D: -0.00 2023-02-08 17:54:00.944 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] E: 0.00 2023-02-08 17:54:00.944 DEBUG (MainThread) [custom_components.smart_thermostat.pid_controller] output: 0.00 2023-02-08 17:54:00.945 DEBUG (MainThread) [custom_components.smart_thermostat.climate] New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 (error = -0.80, dt = 30.00, p=-4.00, i=2.40, d=-0.00, e=0.00)

ScratMan commented 1 year ago

Hi Adrien As I have said previously, I am new to HA, so do not know or understand how to select the log with Master Branch installed. I have attach a log file that lists “custom_components.smart_thermostat.climate”, maybe this can be of help. You say that I am using only a kp of 1.0 will lead to a 1% duty-cycle for a 1° error. However this has proved, using trial and error to give me a less than 0.2C variation in desired temperature. Is it possible that somehow I have configured kp with a multiplier and that with the new version this has been removed and the kp was actually 1.0 so having no effect? Regards Dave

@dstewartwhite To install master branch, go to HACS, click on "Integrations", select the Smart Thermostat (PID), click on the three dots menu in the top right corner and select "Redownload". Wait for the "Version select" drop down list to be available, and select master in the bottom of the list, next click on "Download". Once the integration is installed, reboot HA.

The log you provided is full of New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 except one time where the output is 0.3 ; that means the heater switch will be ON 0.3% of the PWM period. As the pmw parameter is commented in your configuration, the PWM period is 900 seconds, so the heater will be on 900 * 0.3 / 100 = 2.7 seconds. So either the log is not relevant vs the issue occurrence, or the issue is caused by too low gains. But comparing the code of 2022.2.1 and 2023.1.1, I can't see any difference that could explain this different behavior. The version in master should help detect if the issue comes from unexpected switching off of the heater switch.

HermesHonshappo commented 1 year ago

In your case you need to use Boolean inputs in thermostats configs

OK, makes sense. It's something I had planned to do anyway, since the pump should not be directly controlled, but only opened if one of the thermostat is on. Later the thermostats will trigger independant valves on the floor water control unit. And the pump should be on if at least one of the floor circuit valves is open.

But do you mean that I can use boolean inputs directly in the thermostat config? I have done this:

In input_boolean.yaml that is included in configuration.yaml

commande_pompe_1:
  name: Commande Pompe chauffage - Circuit 1
  initial: false
  icon: mdi:pipe-valve
commande_pompe_2:
  name: Commande Pompe chauffage - Circuit 2
  initial: false
  icon: mdi:pipe-valve

Then in climate.yaml:

- platform: smart_thermostat
  name: Thermostat Ch. Ian PID
  unique_id: 59045b01-811b-47da-91da-194dcff41fee
  heater: input_boolean.commande_pompe_1
  target_sensor: sensor.temperature_ch_ian_temperature
  target_temp_step: 0.1
  ac_mode: False
  keep_alive:
    seconds: 60
  pwm: 00:30:00
  sampling_period: 00:05:00
  min_cycle_duration: 00:03:00
  cold_tolerance: 0.1
  hot_tolerance: 0.1
  min_temp: 10
  max_temp: 24
  away_temp: 12
  sleep_temp: 16
  comfort_temp: 18
  preset_sync_mode: sync
#autotune results
#  kp : 7.23432
#  ki : 0.00184
#  kd : 2032.44078
  kp : 7.23432
  ki : 0.00184
  kd : 2032.44078
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 1
#  debug: true

- platform: smart_thermostat
  name: Thermostat Ch. Ian PID Dalle
  unique_id: c8d8a872-84ac-41dd-9cf5-7e3a28868de5
  heater: input_boolean.commande_pompe_2
  target_sensor: sensor.temp_dalle_ch_ian_average_temperature_hacs_1h
  ac_mode: False
  keep_alive:
    seconds: 60
  pwm : 1800                  #30 minutes
  sampling_period: 00:05:00
  min_cycle_duration: 180     #3 minutes
  cold_tolerance: 0
  hot_tolerance: 0.1
  min_temp: 10
  max_temp: 27
  away_temp: 15
  sleep_temp: 22
  comfort_temp: 25
  preset_sync_mode: sync
  kp : 40
  ki : 0.0009
  kd : 30000
  outdoor_sensor: sensor.temperature_exterieur_temperature
  ke: 1.5
#  debug: true

I'm testing right now, to see how it behaves with the master branch. So far, the pump has been on for more than a minute, so it seems to work better.

OK, after a full night, a few reboots, and my ZigBee network crashing, I can now confirm that it seems to work OK

This is the one with the water pump: working

Screenshot 2023-02-09 at 09 34 36

Another one, with a electric radiator, working as well

Screenshot 2023-02-09 at 09 34 57

Thanks for the help Adrien

dstewartwhite commented 1 year ago

Hi Adrien

Here is the log using the Master branch for the period overnight, when the outside temperature caused the thermostat to activate. I propose now, unless you request something else, to upgrade to the latest version and see what happens. Tonight is not expected to be as cold but cold enough to activate the thermostat

Regards

Dave

@.***

@.***

Sent from Mailhttps://go.microsoft.com/fwlink/?LinkId=550986 for Windows

From: Adrien @.> Sent: 08 February 2023 23:28 To: @.> Cc: @.>; @.> Subject: Re: [ScratMan/HASmartThermostat] Output control not linked to control_output (Issue #121)

Hi Adrien As I have said previously, I am new to HA, so do not know or understand how to select the log with Master Branch installed. I have attach a log file that lists “custom_components.smart_thermostat.climate”, maybe this can be of help. You say that I am using only a kp of 1.0 will lead to a 1% duty-cycle for a 1° error. However this has proved, using trial and error to give me a less than 0.2C variation in desired temperature. Is it possible that somehow I have configured kp with a multiplier and that with the new version this has been removed and the kp was actually 1.0 so having no effect? Regards Dave

@dstewartwhitehttps://github.com/dstewartwhite To install master branch, go to HACS, click on "Integrations", select the Smart Thermostat (PID), click on the three dots menu in the top right corner and select "Redownload". Wait for the "Version select" drop down list to be available, and select master in the bottom of the list, next click on "Download". Once the integration is installed, reboot HA.

The log you provided is full of New PID control output for Smart Thermostat (PID) (climate.smart_thermostat_pid_2). 0.00 except one time where the output is 0.3 ; that means the heater switch will be ON 0.3% of the PWM period. As the pmw parameter is commented in your configuration, the PWM period is 900 seconds, so the heater will be on 900 * 0.3 / 100 = 2.7 seconds. So either the log is not relevant vs the issue occurrence, or the issue is caused by too low gains. But comparing the code of 2022.2.1 and 2023.1.1, I can't see any difference that could explain this different behavior. The version in master should help detect if the issue comes from unexpected switching off of the heater switch.

— Reply to this email directly, view it on GitHubhttps://github.com/ScratMan/HASmartThermostat/issues/121#issuecomment-1423372989, or unsubscribehttps://github.com/notifications/unsubscribe-auth/A3I7ONPYW6CEM7FGM2NPJTDWWQT3LANCNFSM6AAAAAAUMPNONE. You are receiving this because you were mentioned.Message ID: @.***>

2023-02-09 18:50:55.912 WARNING (SyncWorker_4) [homeassistant.loader] We found a custom integration ble_monitor 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 2023-02-09 18:50:56.614 WARNING (SyncWorker_4) [homeassistant.loader] We found a custom integration smart_thermostat 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 2023-02-09 18:50:56.722 WARNING (SyncWorker_4) [homeassistant.loader] We found a custom integration hacs 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 2023-02-09 18:50:56.795 WARNING (SyncWorker_4) [homeassistant.loader] We found a custom integration variable 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 2023-02-09 18:50:56.909 WARNING (SyncWorker_4) [homeassistant.loader] We found a custom integration powercalc 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 2023-02-09 18:50:56.992 WARNING (SyncWorker_4) [homeassistant.loader] We found a custom integration multiscrape 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 2023-02-09 18:51:09.860 INFO (MainThread) [homeassistant.setup] Setup of domain logger took 0.1 seconds 2023-02-09 18:51:09.862 INFO (MainThread) [homeassistant.bootstrap] Setting up frontend: {'frontend'} 2023-02-09 18:51:10.109 INFO (MainThread) [homeassistant.setup] Setting up device_automation 2023-02-09 18:51:10.109 INFO (MainThread) [homeassistant.setup] Setup of domain device_automation took 0.0 seconds 2023-02-09 18:51:40.368 INFO (MainThread) [homeassistant.setup] Setting up lovelace 2023-02-09 18:51:41.313 INFO (MainThread) [homeassistant.setup] Setting up http 2023-02-09 18:51:41.800 INFO (MainThread) [homeassistant.setup] Setup of domain lovelace took 1.4 seconds 2023-02-09 18:51:43.185 INFO (MainThread) [homeassistant.setup] Setup of domain http took 1.9 seconds 2023-02-09 18:51:44.886 INFO (MainThread) [homeassistant.setup] Setting up api 2023-02-09 18:51:45.113 INFO (MainThread) [homeassistant.setup] Setup of domain api took 0.2 seconds 2023-02-09 18:51:45.114 INFO (MainThread) [homeassistant.setup] Setting up auth 2023-02-09 18:51:45.115 INFO (MainThread) [homeassistant.setup] Setup of domain auth took 0.0 seconds 2023-02-09 18:51:45.602 INFO (MainThread) [homeassistant.setup] Setting up config 2023-02-09 18:51:49.163 INFO (MainThread) [homeassistant.setup] Setting up diagnostics 2023-02-09 18:51:49.806 INFO (MainThread) [homeassistant.setup] Setting up repairs 2023-02-09 18:51:49.807 INFO (MainThread) [homeassistant.setup] Setup of domain repairs took 0.0 seconds 2023-02-09 18:51:59.276 INFO (MainThread) [homeassistant.setup] Setting up file_upload 2023-02-09 18:51:59.277 INFO (MainThread) [homeassistant.setup] Setup of domain file_upload took 0.0 seconds 2023-02-09 18:51:59.277 WARNING (MainThread) [homeassistant.setup] Setup of config is taking over 10 seconds. 2023-02-09 18:51:59.765 INFO (MainThread) [homeassistant.setup] Setup of domain config took 14.2 seconds 2023-02-09 18:51:59.766 INFO (MainThread) [homeassistant.setup] Setup of domain diagnostics took 10.6 seconds 2023-02-09 18:52:10.158 INFO (MainThread) [homeassistant.setup] Setting up image_upload 2023-02-09 18:52:10.225 INFO (MainThread) [homeassistant.setup] Setting up websocket_api 2023-02-09 18:52:10.259 INFO (MainThread) [homeassistant.setup] Setup of domain websocket_api took 0.0 seconds 2023-02-09 18:52:10.747 INFO (MainThread) [homeassistant.setup] Setup of domain image_upload took 0.6 seconds 2023-02-09 18:52:11.176 INFO (SyncWorker_3) [homeassistant.loader] Loaded device_tracker from homeassistant.components.device_tracker 2023-02-09 18:52:13.694 INFO (MainThread) [homeassistant.setup] Setting up search 2023-02-09 18:52:13.695 INFO (MainThread) [homeassistant.setup] Setup of domain search took 0.0 seconds 2023-02-09 18:53:09.625 INFO (MainThread) [homeassistant.setup] Setting up analytics 2023-02-09 18:53:12.466 INFO (MainThread) [homeassistant.setup] Setting up person 2023-02-09 18:53:12.468 INFO (MainThread) [homeassistant.setup] Setup of domain analytics took 2.8 seconds 2023-02-09 18:53:12.599 INFO (MainThread) [homeassistant.setup] Setup of domain person took 0.1 seconds 2023-02-09 18:53:12.633 INFO (SyncWorker_9) [homeassistant.loader] Loaded panel_custom from homeassistant.components.panel_custom 2023-02-09 18:53:13.174 INFO (MainThread) [homeassistant.setup] Setting up onboarding 2023-02-09 18:53:13.203 INFO (MainThread) [homeassistant.setup] Setup of domain onboarding took 0.0 seconds 2023-02-09 18:53:13.288 INFO (MainThread) [homeassistant.setup] Setting up frontend 2023-02-09 18:53:13.516 INFO (MainThread) [homeassistant.setup] Setup of domain frontend took 0.2 seconds 2023-02-09 18:53:13.589 INFO (MainThread) [homeassistant.bootstrap] Setting up recorder: {'recorder'} 2023-02-09 18:53:13.591 INFO (MainThread) [homeassistant.setup] Setting up recorder 2023-02-09 18:53:16.354 INFO (MainThread) [homeassistant.components.http] Now listening on port 8123 2023-02-09 18:53:17.174 WARNING (Recorder) [homeassistant.components.recorder.util] The system could not validate that the sqlite3 database at //config/home-assistant_v2.db was shutdown cleanly 2023-02-09 18:53:19.569 WARNING (Recorder) [homeassistant.components.recorder.util] Ended unfinished session (id=321 from 2023-02-09 10:35:50.078283) 2023-02-09 18:53:28.441 WARNING (MainThread) [homeassistant.setup] Setup of recorder is taking over 10 seconds. 2023-02-09 18:53:28.445 INFO (MainThread) [homeassistant.setup] Setup of domain recorder took 14.9 seconds 2023-02-09 18:53:28.900 INFO (MainThread) [homeassistant.bootstrap] Setting up stage 1: {'zeroconf', 'cloud', 'usb', 'dhcp', 'http', 'ssdp', 'bluetooth', 'webhook', 'network', 'websocket_api', 'hassio', 'api'} 2023-02-09 18:53:29.107 INFO (MainThread) [homeassistant.setup] Setting up webhook 2023-02-09 18:53:29.162 INFO (MainThread) [homeassistant.setup] Setup of domain webhook took 0.1 seconds 2023-02-09 18:53:29.276 INFO (MainThread) [homeassistant.setup] Setting up hassio 2023-02-09 18:53:29.888 INFO (MainThread) [homeassistant.setup] Setting up usb 2023-02-09 18:53:30.096 INFO (MainThread) [homeassistant.setup] Setup of domain usb took 0.2 seconds 2023-02-09 18:53:37.603 INFO (MainThread) [homeassistant.setup] Setting up dhcp 2023-02-09 18:53:37.764 INFO (MainThread) [homeassistant.setup] Setup of domain dhcp took 0.2 seconds 2023-02-09 18:53:39.578 WARNING (MainThread) [homeassistant.setup] Setup of hassio is taking over 10 seconds. 2023-02-09 18:53:42.244 INFO (MainThread) [homeassistant.setup] Setting up network 2023-02-09 18:53:42.343 INFO (MainThread) [homeassistant.setup] Setup of domain network took 0.1 seconds 2023-02-09 18:53:43.189 INFO (SyncWorker_4) [homeassistant.loader] Loaded alexa from homeassistant.components.alexa 2023-02-09 18:53:43.344 INFO (SyncWorker_5) [homeassistant.loader] Loaded google_assistant from homeassistant.components.google_assistant 2023-02-09 18:53:43.397 INFO (SyncWorker_8) [homeassistant.loader] Loaded camera from homeassistant.components.camera 2023-02-09 18:53:51.589 INFO (MainThread) [homeassistant.setup] Setting up bluetooth 2023-02-09 18:53:53.272 ERROR (MainThread) [homeassistant.components.hassio.handler] Timeout on /supervisor/ping request 2023-02-09 18:53:53.947 WARNING (MainThread) [homeassistant.components.hassio] Not connected with the supervisor / system too busy! 2023-02-09 18:54:03.392 INFO (MainThread) [homeassistant.setup] Setting up zeroconf 2023-02-09 18:54:03.955 WARNING (MainThread) [homeassistant.setup] Setup of bluetooth is taking over 10 seconds. 2023-02-09 18:54:04.422 INFO (MainThread) [homeassistant.setup] Setup of domain zeroconf took 1.0 seconds 2023-02-09 18:54:05.315 INFO (MainThread) [homeassistant.setup] Setting up ssdp 2023-02-09 18:54:05.783 INFO (MainThread) [homeassistant.components.zeroconf] Starting Zeroconf broadcast 2023-02-09 18:54:05.802 INFO (SyncWorker_0) [homeassistant.loader] Loaded media_player from homeassistant.components.media_player 2023-02-09 18:54:26.665 INFO (MainThread) [homeassistant.setup] Setting up cloud 2023-02-09 18:54:26.715 WARNING (MainThread) [homeassistant.setup] Setup of ssdp is taking over 10 seconds. 2023-02-09 18:54:26.717 ERROR (MainThread) [homeassistant.components.hassio.handler] Timeout on /homeassistant/options request 2023-02-09 18:54:27.253 INFO (MainThread) [homeassistant.setup] Setup of domain ssdp took 21.9 seconds 2023-02-09 18:54:27.260 INFO (MainThread) [homeassistant.setup] Setup of domain cloud took 0.6 seconds 2023-02-09 18:54:27.830 INFO (MainThread) [homeassistant.setup] Setup of domain bluetooth took 36.2 seconds 2023-02-09 18:54:35.987 WARNING (MainThread) [homeassistant.config_entries] Config entry '00:1A:7D:DA:71:13' for bluetooth integration not ready yet: Bluetooth adapter None with address 00:1A:7D:DA:71:13 not found; Retrying in background 2023-02-09 18:54:36.749 ERROR (MainThread) [homeassistant.components.hassio.handler] Timeout on /supervisor/options request 2023-02-09 18:54:43.565 INFO (MainThread) [homeassistant.setup] Setup of domain hassio took 74.3 seconds 2023-02-09 18:54:59.868 WARNING (MainThread) [homeassistant.bootstrap] Waiting on integrations to complete setup: hassio 2023-02-09 18:55:02.093 INFO (SyncWorker_10) [homeassistant.loader] Loaded binary_sensor from homeassistant.components.binary_sensor 2023-02-09 18:55:02.102 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor 2023-02-09 18:55:02.103 INFO (MainThread) [homeassistant.setup] Setup of domain binary_sensor took 0.0 seconds 2023-02-09 18:55:02.219 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.hassio 2023-02-09 18:55:02.242 INFO (SyncWorker_8) [homeassistant.loader] Loaded update from homeassistant.components.update 2023-02-09 18:55:02.302 INFO (SyncWorker_3) [homeassistant.loader] Loaded qnap from homeassistant.components.qnap 2023-02-09 18:55:02.329 INFO (MainThread) [homeassistant.setup] Setting up update 2023-02-09 18:55:02.330 INFO (MainThread) [homeassistant.setup] Setup of domain update took 0.0 seconds 2023-02-09 18:55:02.347 INFO (MainThread) [homeassistant.components.update] Setting up update.hassio 2023-02-09 18:55:02.822 INFO (SyncWorker_9) [homeassistant.loader] Loaded time_date from homeassistant.components.time_date 2023-02-09 18:55:02.936 INFO (SyncWorker_4) [homeassistant.loader] Loaded history_stats from homeassistant.components.history_stats 2023-02-09 18:55:04.635 INFO (MainThread) [homeassistant.setup] Setting up sensor 2023-02-09 18:55:04.636 INFO (MainThread) [homeassistant.setup] Setup of domain sensor took 0.0 seconds 2023-02-09 18:55:04.637 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.qnap 2023-02-09 18:55:04.637 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.time_date 2023-02-09 18:55:04.638 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.history_stats 2023-02-09 18:55:04.894 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.hassio 2023-02-09 18:55:05.020 INFO (MainThread) [homeassistant.setup] Setting up light 2023-02-09 18:55:05.044 INFO (MainThread) [homeassistant.setup] Setting up group 2023-02-09 18:55:05.556 INFO (MainThread) [homeassistant.setup] Setting up template 2023-02-09 18:55:05.557 INFO (MainThread) [homeassistant.setup] Setup of domain template took 0.0 seconds 2023-02-09 18:55:05.558 INFO (MainThread) [homeassistant.setup] Setting up select 2023-02-09 18:55:05.559 INFO (MainThread) [homeassistant.setup] Setup of domain select took 0.0 seconds 2023-02-09 18:55:05.560 INFO (MainThread) [homeassistant.setup] Setting up utility_meter 2023-02-09 18:55:05.561 INFO (MainThread) [homeassistant.setup] Setup of domain utility_meter took 0.0 seconds 2023-02-09 18:55:05.611 INFO (MainThread) [homeassistant.setup] Setup of domain light took 0.6 seconds 2023-02-09 18:55:06.110 INFO (MainThread) [homeassistant.setup] Setup of domain group took 1.1 seconds 2023-02-09 18:55:06.115 INFO (MainThread) [homeassistant.setup] Setting up powercalc 2023-02-09 18:55:06.257 INFO (MainThread) [homeassistant.setup] Setup of domain powercalc took 0.1 seconds 2023-02-09 18:55:06.260 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.powercalc 2023-02-09 18:55:06.261 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.powercalc 2023-02-09 18:55:06.261 INFO (MainThread) [homeassistant.bootstrap] Setting up stage 2: {'diagnostics', 'input_number', 'hardware', 'default_config', 'template', 'analytics', 'persistent_notification', 'media_source', 'group', 'light', 'image_upload', 'logbook', 'mqtt', 'blueprint', 'integration', 'history', 'climate', 'sun', 'hacs', 'timer', 'script', 'tag', 'bluetooth_adapters', 'input_button', 'input_select', 'ipp', 'input_text', 'application_credentials', 'nmap_tracker', 'multiscrape', 'homeassistant_alerts', 'zone', 'ffmpeg', 'lovelace', 'person', 'schedule', 'my', 'conversation', 'system_health', 'mobile_app', 'input_boolean', 'map', 'dlna_dms', 'upnp', 'utility_meter', 'scene', 'counter', 'powercalc', 'tuya', 'energy', 'radio_browser', 'ibeacon', 'select', 'onboarding', 'influxdb', 'config', 'device_automation', 'repairs', 'roku', 'file_upload', 'automation', 'auth', 'sensor', 'trace', 'nut', 'search', 'input_datetime'} 2023-02-09 18:55:06.352 INFO (MainThread) [homeassistant.setup] Setting up input_number 2023-02-09 18:55:06.372 INFO (MainThread) [homeassistant.setup] Setting up blueprint 2023-02-09 18:55:06.373 INFO (MainThread) [homeassistant.setup] Setup of domain blueprint took 0.0 seconds 2023-02-09 18:55:06.373 INFO (MainThread) [homeassistant.setup] Setting up integration 2023-02-09 18:55:06.373 INFO (MainThread) [homeassistant.setup] Setup of domain integration took 0.0 seconds 2023-02-09 18:55:06.518 INFO (MainThread) [homeassistant.setup] Setting up history 2023-02-09 18:55:06.520 INFO (MainThread) [homeassistant.setup] Setup of domain history took 0.0 seconds 2023-02-09 18:55:06.649 INFO (MainThread) [homeassistant.setup] Setting up climate 2023-02-09 18:55:06.670 INFO (MainThread) [homeassistant.setup] Setup of domain climate took 0.0 seconds 2023-02-09 18:55:06.670 INFO (MainThread) [homeassistant.setup] Setting up sun 2023-02-09 18:55:06.674 INFO (MainThread) [homeassistant.setup] Setup of domain sun took 0.0 seconds 2023-02-09 18:55:06.676 INFO (MainThread) [homeassistant.setup] Setting up timer 2023-02-09 18:55:06.760 INFO (MainThread) [homeassistant.setup] Setting up tag 2023-02-09 18:55:06.761 INFO (MainThread) [homeassistant.setup] Setting up input_button 2023-02-09 18:55:06.763 INFO (MainThread) [homeassistant.setup] Setting up input_select 2023-02-09 18:55:06.823 INFO (MainThread) [homeassistant.setup] Setting up input_text 2023-02-09 18:55:06.874 INFO (MainThread) [homeassistant.setup] Setting up homeassistant_alerts 2023-02-09 18:55:06.874 INFO (MainThread) [homeassistant.setup] Setup of domain homeassistant_alerts took 0.0 seconds 2023-02-09 18:55:06.914 INFO (MainThread) [homeassistant.setup] Setting up zone 2023-02-09 18:55:06.973 INFO (MainThread) [homeassistant.setup] Setting up schedule 2023-02-09 18:55:06.974 INFO (MainThread) [homeassistant.setup] Setting up input_boolean 2023-02-09 18:55:07.013 INFO (MainThread) [homeassistant.setup] Setting up scene 2023-02-09 18:55:07.013 INFO (MainThread) [homeassistant.components.scene] Setting up scene.homeassistant 2023-02-09 18:55:07.077 INFO (MainThread) [homeassistant.setup] Setting up counter 2023-02-09 18:55:07.109 INFO (MainThread) [homeassistant.setup] Setting up trace 2023-02-09 18:55:07.109 INFO (MainThread) [homeassistant.setup] Setup of domain trace took 0.0 seconds 2023-02-09 18:55:07.127 INFO (MainThread) [homeassistant.setup] Setting up input_datetime 2023-02-09 18:55:07.138 INFO (MainThread) [homeassistant.components.climate] Setting up climate.smart_thermostat 2023-02-09 18:55:07.205 INFO (SyncWorker_10) [homeassistant.loader] Loaded ruuvi_gateway from homeassistant.components.ruuvi_gateway 2023-02-09 18:55:07.219 INFO (SyncWorker_8) [homeassistant.loader] Loaded shelly from homeassistant.components.shelly 2023-02-09 18:55:07.242 INFO (SyncWorker_5) [homeassistant.loader] Loaded esphome from homeassistant.components.esphome 2023-02-09 18:55:07.295 INFO (MainThread) [homeassistant.setup] Setting up hardware 2023-02-09 18:55:07.297 DEBUG (MainThread) [custom_components.smart_thermostat.climate] smart_thermostat_01: PID Gains kp = 1.0, ki = 0.0, kd = 0.0 2023-02-09 18:55:07.542 INFO (MainThread) [homeassistant.setup] Setting up media_source 2023-02-09 18:55:07.890 INFO (MainThread) [homeassistant.setup] Setting up logbook 2023-02-09 18:55:07.895 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.integration 2023-02-09 18:55:08.011 INFO (MainThread) [homeassistant.setup] Setting up application_credentials 2023-02-09 18:55:08.037 INFO (MainThread) [homeassistant.setup] Setting up my 2023-02-09 18:55:08.038 INFO (MainThread) [homeassistant.setup] Setup of domain my took 0.0 seconds 2023-02-09 18:55:08.074 INFO (MainThread) [homeassistant.setup] Setting up system_health 2023-02-09 18:55:08.132 INFO (MainThread) [homeassistant.setup] Setting up map 2023-02-09 18:55:08.133 INFO (MainThread) [homeassistant.setup] Setup of domain map took 0.0 seconds 2023-02-09 18:55:08.134 INFO (MainThread) [homeassistant.setup] Setup of domain scene took 1.1 seconds 2023-02-09 18:55:08.135 INFO (MainThread) [homeassistant.setup] Setting up energy 2023-02-09 18:55:08.135 INFO (MainThread) [homeassistant.setup] Setup of domain energy took 0.0 seconds 2023-02-09 18:55:08.207 INFO (MainThread) [homeassistant.setup] Setup of domain tag took 1.4 seconds 2023-02-09 18:55:08.318 INFO (MainThread) [homeassistant.setup] Setting up automation 2023-02-09 18:55:08.324 INFO (MainThread) [homeassistant.setup] Setup of domain hardware took 1.0 seconds 2023-02-09 18:55:08.389 INFO (SyncWorker_1) [homeassistant.loader] Loaded switch from homeassistant.components.switch 2023-02-09 18:55:08.438 INFO (MainThread) [homeassistant.setup] Setup of domain media_source took 0.9 seconds 2023-02-09 18:55:08.438 INFO (MainThread) [homeassistant.setup] Setup of domain logbook took 0.5 seconds 2023-02-09 18:55:08.496 INFO (MainThread) [homeassistant.setup] Setup of domain system_health took 0.4 seconds 2023-02-09 18:55:08.562 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.energy 2023-02-09 18:55:08.581 INFO (MainThread) [homeassistant.setup] Setup of domain timer took 1.9 seconds 2023-02-09 18:55:08.596 INFO (MainThread) [homeassistant.setup] Setup of domain counter took 1.5 seconds 2023-02-09 18:55:12.723 INFO (MainThread) [homeassistant.setup] Setting up mqtt 2023-02-09 18:55:12.724 INFO (MainThread) [homeassistant.setup] Setup of domain mqtt took 0.0 seconds 2023-02-09 18:55:12.798 INFO (MainThread) [homeassistant.setup] Setup of domain input_number took 6.4 seconds 2023-02-09 18:55:12.800 INFO (MainThread) [homeassistant.setup] Setup of domain automation took 4.5 seconds 2023-02-09 18:55:12.806 INFO (MainThread) [homeassistant.setup] Setup of domain zone took 5.9 seconds 2023-02-09 18:55:12.809 INFO (MainThread) [homeassistant.setup] Setup of domain input_select took 6.0 seconds 2023-02-09 18:55:12.811 INFO (MainThread) [homeassistant.setup] Setup of domain input_button took 6.0 seconds 2023-02-09 18:55:12.812 INFO (MainThread) [homeassistant.setup] Setup of domain input_text took 6.0 seconds 2023-02-09 18:55:12.813 INFO (MainThread) [homeassistant.setup] Setup of domain application_credentials took 4.8 seconds 2023-02-09 18:55:12.814 INFO (SyncWorker_8) [homeassistant.loader] Loaded switch_as_x from homeassistant.components.switch_as_x 2023-02-09 18:55:13.438 INFO (MainThread) [homeassistant.setup] Setting up hacs 2023-02-09 18:55:13.438 INFO (MainThread) [homeassistant.setup] Setup of domain hacs took 0.0 seconds 2023-02-09 18:55:15.963 ERROR (MainThread) [homeassistant.components.sensor] Error adding entities for domain sensor with platform qnap Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 442, in async_add_entities await asyncio.gather(*tasks) File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 717, in _async_add_entity await entity.add_to_platform_finish() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 814, in add_to_platform_finish self.async_write_ha_state() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 566, in async_write_ha_state self._async_write_ha_state() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 607, in _async_write_ha_state state = self._stringify_state(available) File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 572, in _stringify_state if (state := self.state) is None: File "/usr/src/homeassistant/homeassistant/components/sensor/init.py", line 466, in state value = self.native_value File "/usr/src/homeassistant/homeassistant/components/qnap/sensor.py", line 394, in native_value data = self._api.data["bandwidth"][self.monitor_device] KeyError: 'eth0' 2023-02-09 18:55:16.043 INFO (MainThread) [custom_components.hacs]

HACS (Home Assistant Community Store)

Version: 1.30.1 This is a custom integration If you have any issues with this you need to open an issue here: https://github.com/hacs/integration/issues

2023-02-09 18:55:16.088 INFO (MainThread) [homeassistant.setup] Setup of domain schedule took 9.1 seconds 2023-02-09 18:55:16.091 INFO (MainThread) [homeassistant.setup] Setup of domain input_boolean took 9.1 seconds 2023-02-09 18:55:16.092 INFO (MainThread) [homeassistant.setup] Setup of domain input_datetime took 9.0 seconds 2023-02-09 18:55:16.102 WARNING (MainThread) [homeassistant.components.sensor] Setup of sensor platform qnap is taking over 10 seconds. 2023-02-09 18:55:17.213 INFO (MainThread) [homeassistant.setup] Setting up dlna_dms 2023-02-09 18:55:17.213 INFO (MainThread) [homeassistant.setup] Setup of domain dlna_dms took 0.0 seconds 2023-02-09 18:55:17.347 ERROR (MainThread) [homeassistant.components.sensor] Error while setting up qnap platform for sensor Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 301, in _async_setup_platform await asyncio.gather(pending) File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 442, in async_add_entities await asyncio.gather(tasks) File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 717, in _async_add_entity await entity.add_to_platform_finish() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 814, in add_to_platform_finish self.async_write_ha_state() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 566, in async_write_ha_state self._async_write_ha_state() File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 607, in _async_write_ha_state state = self._stringify_state(available) File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 572, in _stringify_state if (state := self.state) is None: File "/usr/src/homeassistant/homeassistant/components/sensor/init.py", line 466, in state value = self.native_value File "/usr/src/homeassistant/homeassistant/components/qnap/sensor.py", line 394, in native_value data = self._api.data["bandwidth"][self.monitor_device] KeyError: 'eth0' 2023-02-09 18:55:17.632 INFO (MainThread) [homeassistant.setup] Setting up ipp 2023-02-09 18:55:17.632 INFO (MainThread) [homeassistant.setup] Setup of domain ipp took 0.0 seconds 2023-02-09 18:55:18.794 INFO (MainThread) [homeassistant.setup] Setting up nmap_tracker 2023-02-09 18:55:18.795 INFO (MainThread) [homeassistant.setup] Setup of domain nmap_tracker took 0.0 seconds 2023-02-09 18:55:20.334 INFO (MainThread) [homeassistant.setup] Setting up multiscrape 2023-02-09 18:55:20.427 ERROR (MainThread) [homeassistant.components.mqtt.client] Failed to connect to MQTT server due to exception: [Errno -2] Name does not resolve 2023-02-09 18:55:21.200 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.mqtt 2023-02-09 18:55:21.200 INFO (MainThread) [homeassistant.components.climate] Setting up climate.mqtt 2023-02-09 18:55:21.201 INFO (MainThread) [homeassistant.components.light] Setting up light.mqtt 2023-02-09 18:55:21.202 INFO (MainThread) [homeassistant.components.select] Setting up select.mqtt 2023-02-09 18:55:21.210 INFO (MainThread) [homeassistant.components.scene] Setting up scene.mqtt 2023-02-09 18:55:21.211 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.mqtt 2023-02-09 18:55:21.212 INFO (MainThread) [homeassistant.components.update] Setting up update.mqtt 2023-02-09 18:55:21.351 INFO (MainThread) [homeassistant.setup] Setting up camera 2023-02-09 18:55:21.355 INFO (MainThread) [homeassistant.setup] Setup of domain camera took 0.0 seconds 2023-02-09 18:55:21.357 INFO (MainThread) [homeassistant.setup] Setting up device_tracker 2023-02-09 18:55:21.359 INFO (MainThread) [homeassistant.setup] Setting up switch 2023-02-09 18:55:21.361 INFO (MainThread) [homeassistant.setup] Setup of domain switch took 0.0 seconds 2023-02-09 18:55:21.409 INFO (SyncWorker_2) [homeassistant.loader] Loaded siren from homeassistant.components.siren 2023-02-09 18:55:21.410 INFO (MainThread) [homeassistant.components.device_tracker] Setting up device_tracker.nmap_tracker 2023-02-09 18:55:21.412 INFO (SyncWorker_9) [homeassistant.loader] Loaded text from homeassistant.components.text 2023-02-09 18:55:21.493 INFO (SyncWorker_0) [homeassistant.loader] Loaded lock from homeassistant.components.lock 2023-02-09 18:55:21.516 INFO (SyncWorker_6) [homeassistant.loader] Loaded fan from homeassistant.components.fan 2023-02-09 18:55:21.525 INFO (SyncWorker_11) [homeassistant.loader] Loaded cover from homeassistant.components.cover 2023-02-09 18:55:21.528 INFO (SyncWorker_5) [homeassistant.loader] Loaded alarm_control_panel from homeassistant.components.alarm_control_panel 2023-02-09 18:55:21.544 INFO (SyncWorker_7) [homeassistant.loader] Loaded number from homeassistant.components.number 2023-02-09 18:55:21.553 INFO (SyncWorker_1) [homeassistant.loader] Loaded button from homeassistant.components.button 2023-02-09 18:55:21.577 INFO (SyncWorker_10) [homeassistant.loader] Loaded vacuum from homeassistant.components.vacuum 2023-02-09 18:55:21.647 INFO (SyncWorker_8) [homeassistant.loader] Loaded humidifier from homeassistant.components.humidifier 2023-02-09 18:55:21.724 INFO (MainThread) [homeassistant.setup] Setting up ffmpeg 2023-02-09 18:55:22.296 INFO (MainThread) [homeassistant.components.camera] Setting up camera.mqtt 2023-02-09 18:55:22.297 INFO (MainThread) [homeassistant.components.switch] Setting up switch.mqtt 2023-02-09 18:55:22.304 INFO (MainThread) [homeassistant.setup] Setup of domain device_tracker took 0.9 seconds 2023-02-09 18:55:22.305 INFO (MainThread) [homeassistant.setup] Setting up siren 2023-02-09 18:55:22.307 INFO (MainThread) [homeassistant.setup] Setup of domain siren took 0.0 seconds 2023-02-09 18:55:22.308 INFO (MainThread) [homeassistant.setup] Setting up text 2023-02-09 18:55:22.309 INFO (MainThread) [homeassistant.setup] Setup of domain text took 0.0 seconds 2023-02-09 18:55:22.311 INFO (MainThread) [homeassistant.setup] Setting up lock 2023-02-09 18:55:22.311 INFO (MainThread) [homeassistant.setup] Setup of domain lock took 0.0 seconds 2023-02-09 18:55:22.319 INFO (MainThread) [homeassistant.setup] Setting up fan 2023-02-09 18:55:22.323 INFO (MainThread) [homeassistant.setup] Setup of domain fan took 0.0 seconds 2023-02-09 18:55:22.324 INFO (MainThread) [homeassistant.setup] Setting up cover 2023-02-09 18:55:22.328 INFO (MainThread) [homeassistant.setup] Setup of domain cover took 0.0 seconds 2023-02-09 18:55:22.329 INFO (MainThread) [homeassistant.setup] Setting up alarm_control_panel 2023-02-09 18:55:22.330 INFO (MainThread) [homeassistant.setup] Setup of domain alarm_control_panel took 0.0 seconds 2023-02-09 18:55:22.330 INFO (MainThread) [homeassistant.setup] Setting up number 2023-02-09 18:55:22.331 INFO (MainThread) [homeassistant.setup] Setup of domain number took 0.0 seconds 2023-02-09 18:55:22.332 INFO (MainThread) [homeassistant.setup] Setting up button 2023-02-09 18:55:22.333 INFO (MainThread) [homeassistant.setup] Setup of domain button took 0.0 seconds 2023-02-09 18:55:22.338 INFO (MainThread) [homeassistant.setup] Setting up vacuum 2023-02-09 18:55:22.345 INFO (MainThread) [homeassistant.setup] Setup of domain vacuum took 0.0 seconds 2023-02-09 18:55:22.347 INFO (MainThread) [homeassistant.setup] Setting up humidifier 2023-02-09 18:55:22.349 INFO (MainThread) [homeassistant.setup] Setup of domain humidifier took 0.0 seconds 2023-02-09 18:55:22.515 INFO (MainThread) [homeassistant.components.device_tracker] Setting up device_tracker.mqtt 2023-02-09 18:55:22.516 INFO (MainThread) [homeassistant.components.siren] Setting up siren.mqtt 2023-02-09 18:55:22.517 INFO (MainThread) [homeassistant.components.text] Setting up text.mqtt 2023-02-09 18:55:22.517 INFO (MainThread) [homeassistant.components.lock] Setting up lock.mqtt 2023-02-09 18:55:22.518 INFO (MainThread) [homeassistant.components.fan] Setting up fan.mqtt 2023-02-09 18:55:22.519 INFO (MainThread) [homeassistant.components.cover] Setting up cover.mqtt 2023-02-09 18:55:22.519 INFO (MainThread) [homeassistant.components.alarm_control_panel] Setting up alarm_control_panel.mqtt 2023-02-09 18:55:22.520 INFO (MainThread) [homeassistant.components.number] Setting up number.mqtt 2023-02-09 18:55:22.521 INFO (MainThread) [homeassistant.components.button] Setting up button.mqtt 2023-02-09 18:55:22.522 INFO (MainThread) [homeassistant.components.vacuum] Setting up vacuum.mqtt 2023-02-09 18:55:22.523 INFO (MainThread) [homeassistant.components.humidifier] Setting up humidifier.mqtt 2023-02-09 18:55:22.524 INFO (MainThread) [homeassistant.setup] Setting up script 2023-02-09 18:55:24.037 INFO (MainThread) [homeassistant.setup] Setting up conversation 2023-02-09 18:55:24.038 INFO (MainThread) [homeassistant.setup] Setup of domain conversation took 0.0 seconds 2023-02-09 18:55:24.283 INFO (MainThread) [homeassistant.setup] Setting up upnp 2023-02-09 18:55:24.283 INFO (MainThread) [homeassistant.setup] Setup of domain upnp took 0.0 seconds 2023-02-09 18:55:25.558 INFO (MainThread) [homeassistant.setup] Setting up radio_browser 2023-02-09 18:55:25.559 INFO (MainThread) [homeassistant.setup] Setup of domain radio_browser took 0.0 seconds 2023-02-09 18:55:25.577 INFO (MainThread) [homeassistant.setup] Setup of domain ffmpeg took 3.9 seconds 2023-02-09 18:55:25.688 WARNING (MainThread) [homeassistant.config_entries] Config entry 'EPSON ET-3750 Series' for ipp integration not ready yet: Invalid response from API: Error occurred while communicating with IPP server.; Retrying in background 2023-02-09 18:55:30.676 INFO (MainThread) [homeassistant.setup] Setting up influxdb 2023-02-09 18:55:30.879 WARNING (MainThread) [homeassistant.setup] Setup of multiscrape is taking over 10 seconds. 2023-02-09 18:55:30.888 INFO (MainThread) [custom_components.hacs] Restore started 2023-02-09 18:55:30.911 INFO (MainThread) [homeassistant.setup] Setup of domain script took 8.4 seconds 2023-02-09 18:55:31.530 INFO (MainThread) [custom_components.hacs] Restore done 2023-02-09 18:55:31.824 INFO (MainThread) [homeassistant.setup] Setting up roku 2023-02-09 18:55:31.824 INFO (MainThread) [homeassistant.setup] Setup of domain roku took 0.0 seconds 2023-02-09 18:55:32.410 INFO (MainThread) [homeassistant.setup] Setting up nut 2023-02-09 18:55:32.410 INFO (MainThread) [homeassistant.setup] Setup of domain nut took 0.0 seconds 2023-02-09 18:55:32.415 INFO (MainThread) [homeassistant.setup] Setup of domain influxdb took 1.7 seconds 2023-02-09 18:55:32.698 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.nut 2023-02-09 18:55:32.984 INFO (MainThread) [homeassistant.setup] Setting up bluetooth_adapters 2023-02-09 18:55:32.984 INFO (MainThread) [homeassistant.setup] Setup of domain bluetooth_adapters took 0.0 seconds 2023-02-09 18:55:33.030 INFO (SyncWorker_6) [homeassistant.loader] Loaded notify from homeassistant.components.notify 2023-02-09 18:55:33.044 INFO (MainThread) [custom_components.hacs] Enable category: integration 2023-02-09 18:55:33.045 INFO (MainThread) [custom_components.hacs] Enable category: plugin 2023-02-09 18:55:33.045 INFO (MainThread) [custom_components.hacs] Enable category: theme 2023-02-09 18:55:33.045 INFO (MainThread) [custom_components.hacs] Enable category: appdaemon 2023-02-09 18:55:33.045 INFO (MainThread) [custom_components.hacs] Enable category: netdaemon 2023-02-09 18:55:33.068 INFO (MainThread) [custom_components.hacs] Setting up plugin endpoint 2023-02-09 18:55:33.068 INFO (MainThread) [custom_components.hacs] storage mode, cache for /hacsfiles/: True 2023-02-09 18:55:34.589 INFO (MainThread) [homeassistant.setup] Setting up tuya 2023-02-09 18:55:34.589 INFO (MainThread) [homeassistant.setup] Setup of domain tuya took 0.0 seconds 2023-02-09 18:55:34.615 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.hacs 2023-02-09 18:55:34.945 INFO (MainThread) [homeassistant.setup] Setting up mobile_app 2023-02-09 18:55:35.002 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.roku 2023-02-09 18:55:35.037 INFO (MainThread) [homeassistant.components.select] Setting up select.roku 2023-02-09 18:55:35.053 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.roku 2023-02-09 18:55:35.326 INFO (MainThread) [homeassistant.setup] Setting up ibeacon 2023-02-09 18:55:35.326 INFO (MainThread) [homeassistant.setup] Setup of domain ibeacon took 0.0 seconds 2023-02-09 18:55:35.351 INFO (MainThread) [homeassistant.setup] Setting up media_player 2023-02-09 18:55:35.360 INFO (MainThread) [homeassistant.setup] Setup of domain media_player took 0.0 seconds 2023-02-09 18:55:35.483 INFO (SyncWorker_8) [homeassistant.loader] Loaded remote from homeassistant.components.remote 2023-02-09 18:55:35.526 INFO (MainThread) [homeassistant.setup] Setup of domain mobile_app took 0.6 seconds 2023-02-09 18:55:35.538 INFO (MainThread) [homeassistant.components.media_player] Setting up media_player.roku 2023-02-09 18:55:35.568 INFO (MainThread) [homeassistant.components.device_tracker] Setting up device_tracker.ibeacon 2023-02-09 18:55:35.586 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.ibeacon 2023-02-09 18:55:35.789 INFO (MainThread) [homeassistant.setup] Setting up remote 2023-02-09 18:55:35.791 INFO (MainThread) [homeassistant.setup] Setup of domain remote took 0.0 seconds 2023-02-09 18:55:35.802 INFO (MainThread) [homeassistant.setup] Setting up notify 2023-02-09 18:55:35.803 INFO (MainThread) [homeassistant.setup] Setup of domain notify took 0.0 seconds 2023-02-09 18:55:35.860 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.mobile_app 2023-02-09 18:55:35.892 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.mobile_app 2023-02-09 18:55:35.910 INFO (MainThread) [homeassistant.components.device_tracker] Setting up device_tracker.mobile_app 2023-02-09 18:55:35.913 INFO (MainThread) [homeassistant.components.remote] Setting up remote.roku 2023-02-09 18:55:35.924 INFO (MainThread) [custom_components.hacs] Stage changed: setup 2023-02-09 18:55:35.925 INFO (MainThread) [custom_components.hacs] Stage changed: waiting 2023-02-09 18:55:35.926 INFO (MainThread) [custom_components.hacs] Setup complete, waiting for Home Assistant before startup tasks starts 2023-02-09 18:55:35.939 INFO (MainThread) [homeassistant.components.notify] Setting up notify.mobile_app 2023-02-09 18:55:36.272 INFO (MainThread) [homeassistant.setup] Setup of domain multiscrape took 15.9 seconds 2023-02-09 18:55:36.306 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.multiscrape 2023-02-09 18:55:36.307 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.multiscrape 2023-02-09 18:55:43.649 INFO (MainThread) [homeassistant.setup] Setting up default_config 2023-02-09 18:55:43.760 INFO (MainThread) [homeassistant.components.alarm_control_panel] Setting up alarm_control_panel.tuya 2023-02-09 18:55:43.855 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.tuya 2023-02-09 18:55:43.943 INFO (MainThread) [homeassistant.components.button] Setting up button.tuya 2023-02-09 18:55:43.971 INFO (SyncWorker_4) [homeassistant.loader] Loaded stream from homeassistant.components.stream 2023-02-09 18:55:44.062 INFO (MainThread) [homeassistant.components.camera] Setting up camera.tuya 2023-02-09 18:55:44.067 INFO (MainThread) [homeassistant.components.climate] Setting up climate.tuya 2023-02-09 18:55:44.101 INFO (MainThread) [homeassistant.components.cover] Setting up cover.tuya 2023-02-09 18:55:44.127 INFO (MainThread) [homeassistant.components.fan] Setting up fan.tuya 2023-02-09 18:55:44.130 INFO (MainThread) [homeassistant.components.humidifier] Setting up humidifier.tuya 2023-02-09 18:55:44.140 INFO (MainThread) [homeassistant.components.light] Setting up light.tuya 2023-02-09 18:55:44.142 INFO (MainThread) [homeassistant.components.number] Setting up number.tuya 2023-02-09 18:55:44.145 INFO (MainThread) [homeassistant.components.scene] Setting up scene.tuya 2023-02-09 18:55:44.150 INFO (MainThread) [homeassistant.components.select] Setting up select.tuya 2023-02-09 18:55:44.295 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.tuya 2023-02-09 18:55:44.317 INFO (MainThread) [homeassistant.components.siren] Setting up siren.tuya 2023-02-09 18:55:44.321 INFO (MainThread) [homeassistant.components.switch] Setting up switch.tuya 2023-02-09 18:55:44.324 INFO (MainThread) [homeassistant.components.vacuum] Setting up vacuum.tuya 2023-02-09 18:55:44.426 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: Received new external temperature: 5.8 2023-02-09 18:55:44.427 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: Received new temperature: 7.7 2023-02-09 18:55:44.427 INFO (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: Obtained temperature 7.7 with set point 3.0. Activating SmartThermostat. 2023-02-09 18:55:44.427 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 0.00, p=-23.50, i=3.40, d=0.00, e=-0.00) 2023-02-09 18:55:44.432 INFO (MainThread) [homeassistant.setup] Setting up stream 2023-02-09 18:55:44.463 INFO (MainThread) [homeassistant.setup] Setup of domain stream took 0.0 seconds 2023-02-09 18:55:44.466 INFO (MainThread) [homeassistant.setup] Setup of domain default_config took 0.8 seconds 2023-02-09 18:55:51.379 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up binary_sensor.upnp 2023-02-09 18:55:51.448 INFO (MainThread) [homeassistant.components.sensor] Setting up sensor.upnp 2023-02-09 18:55:51.623 INFO (MainThread) [homeassistant.bootstrap] Home Assistant initialized in 297.97s 2023-02-09 18:55:51.633 INFO (MainThread) [homeassistant.core] Starting Home Assistant 2023-02-09 18:55:51.638 INFO (MainThread) [custom_components.hacs] Stage changed: startup 2023-02-09 18:55:52.010 INFO (MainThread) [custom_components.hacs] Loading removed repositories 2023-02-09 18:55:52.875 INFO (MainThread) [custom_components.hacs] Loading known repositories 2023-02-09 18:55:53.219 INFO (MainThread) [custom_components.hacs] Starting recurring background task for downloaded repositories 2023-02-09 18:55:53.219 INFO (MainThread) [custom_components.hacs] Stage changed: running 2023-02-09 18:56:06.747 INFO (SyncWorker_11) [homeassistant.loader] Loaded qnap_qsw from homeassistant.components.qnap_qsw 2023-02-09 18:56:13.654 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 29.23, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 18:56:43.655 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 18:57:13.657 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 18:57:43.658 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 18:58:13.661 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 18:58:43.662 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 18:59:13.664 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 18:59:43.665 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:00:13.666 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:00:43.668 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:01:13.671 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:01:43.673 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:02:13.674 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:02:43.676 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:03:13.676 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:03:43.678 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:04:13.680 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:04:43.682 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:05:13.683 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:05:43.686 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:06:13.687 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:06:29.504 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: Received new external temperature: 5.4 2023-02-09 19:06:43.691 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:07:13.693 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:07:43.695 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:08:13.697 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:08:43.699 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:09:13.701 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:09:43.702 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:10:13.705 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:10:43.707 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.70, dt = 30.00, p=-23.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:10:56.115 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: Received new temperature: 7.4 2023-02-09 19:11:13.708 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=5.00, e=-0.00) 2023-02-09 19:11:43.711 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:12:13.713 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:12:43.715 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:13:13.715 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:13:43.718 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:14:13.720 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:14:43.721 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:14:46.519 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: Received new external temperature: 5.3 2023-02-09 19:15:13.723 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:15:43.724 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:16:13.725 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.40, dt = 30.00, p=-22.00, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:16:16.955 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: Received new temperature: 7.3 2023-02-09 19:16:43.727 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=1.70, e=-0.00) 2023-02-09 19:17:13.728 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:17:43.729 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:18:13.731 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:18:43.733 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:19:13.735 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:19:43.736 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:20:13.737 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:20:43.739 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:21:13.741 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:21:43.743 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:22:13.745 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:22:43.747 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:23:13.748 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:23:43.750 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:24:13.751 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:24:43.752 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:25:13.755 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:25:43.756 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:26:13.757 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:26:43.759 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:27:13.760 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:27:43.762 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:28:13.764 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:28:43.765 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:29:13.767 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:29:43.767 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:30:13.769 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:30:43.770 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:31:13.771 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:31:43.772 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:32:13.774 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:32:43.775 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:33:13.776 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:33:43.778 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:34:13.779 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:34:43.779 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:35:13.780 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:35:43.781 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:36:13.782 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:36:43.783 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:37:13.784 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:37:43.785 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:38:13.788 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:38:43.789 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:39:13.790 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:39:43.791 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:40:13.792 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:40:43.793 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:41:13.794 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:41:29.318 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: Received new external temperature: 5.0 2023-02-09 19:41:43.795 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:42:13.796 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:42:43.797 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:43:13.799 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:43:43.800 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: New PID control output: 0.00 (error = -4.30, dt = 30.00, p=-21.50, i=3.40, d=-0.00, e=-0.00) 2023-02-09 19:43:56.023 DEBUG (MainThread) [custom_components.smart_thermostat.climate] climate.smart_thermostat_pid_2: Received new temperature: 7.0 2023-02-09 19:

ScratMan commented 1 year ago

Hi Adrien Here is the log using the Master branch for the period overnight, when the outside temperature caused the thermostat to activate. I propose now, unless you request something else, to upgrade to the latest version and see what happens. Tonight is not expected to be as cold but cold enough to activate the thermostat Regards Dave

Please provide the logs as attachment, otherwise the thread becomes difficult to read due to very long logs displayed inline. Your last log shows no switching of the heater, as the temperature is always above the setpoint and decreasing slowly. Please confirm whether your issue is still present or not with the latest version, and attach logs in the thread when issue appears again.

dstewartwhite commented 1 year ago

Hi Adrien

I have sorted out my previous issues, its seems that reloading the Master and then upgrading to the latest version has solved the issued I had.

Thanks

Sent from Mailhttps://go.microsoft.com/fwlink/?LinkId=550986 for Windows

From: Adrien @.> Sent: 19 February 2023 17:14 To: @.> Cc: @.>; @.> Subject: Re: [ScratMan/HASmartThermostat] Output control not linked to control_output (Issue #121)

Hi Adrien Here is the log using the Master branch for the period overnight, when the outside temperature caused the thermostat to activate. I propose now, unless you request something else, to upgrade to the latest version and see what happens. Tonight is not expected to be as cold but cold enough to activate the thermostat Regards Dave

Please provide the logs as attachment, otherwise the thread becomes difficult to read due to very long logs displayed inline. Your last log shows no switching of the heater, as the temperature is always above the setpoint and decreasing slowly. Please confirm whether your issue is still present or not with the latest version, and attach logs in the thread when issue appears again.

— Reply to this email directly, view it on GitHubhttps://github.com/ScratMan/HASmartThermostat/issues/121#issuecomment-1436041996, or unsubscribehttps://github.com/notifications/unsubscribe-auth/A3I7ONIN3DO22DG3YN24JH3WYJIIXANCNFSM6AAAAAAUMPNONE. You are receiving this because you were mentioned.Message ID: @.***>