GrKoR / esphome_aux_ac_component

ESPHome component for AUX based air conditioners. Direct wifi control of HVAC by ESPHome and Home Assistant. HVAC status and command feedback are available.
Other
177 stars 42 forks source link

Setting IPower Limit Off doesn't work on my AC #85

Closed Steamerzone closed 8 months ago

Steamerzone commented 9 months ago

Hello,

Setting IPower Limit Off doesn't work on my AC, I get the following from the logs:

[19:28:12][D][button:010]: 'IPower Limit Off' Pressed.
[19:28:12][D][AirCon:1645]: 0001199868: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[19:28:12][D][AirCon:1359]: 0001200016: [<=] [BB 00 07 00 00 00 0F 00] 01 11 55 20 00 60 80 80 00 00 20 00 10 E4 00 [27 09] 
[19:28:12][D][AirCon:1645]: 0001200106: [=>] [BB 00 06 80 00 00 0F 00] 01 01 55 20 00 60 80 80 00 00 20 00 10 E4 00 [27 99] 
[19:28:12][W][component:204]: Component aux_ac.climate took a long time for an operation (0.06 s).
[19:28:12][W][component:205]: Components should block for at most 20-30ms.
[19:28:12][D][AirCon:1359]: 0001200271: [<=] [BB 00 07 00 00 00 04 00] 01 01 27 99 [11 65] 
[19:28:12][D][AirCon:1645]: 0001200343: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[19:28:12][D][number:012]: 'Vertical Louvers': Sending state 6.000000
[19:28:12][D][AirCon:1359]: 0001200490: [<=] [BB 00 07 00 00 00 0F 00] 01 11 55 20 00 60 80 80 00 00 20 00 10 E4 00 [27 09] 

Setting the IPower Limit to On seems to work as expected.

Greetings,

Emile

GrKoR commented 8 months ago

Hey, Emile Could you provide model number of your air conditioner, please? And copy the log a little before the 'IPower Limit Off' Pressed line. Where you are enabling the limit.

GrKoR commented 8 months ago

@Steamerzone , it looks like your code for IPower Limit off button is incorrect. Publish your config, please.

Steamerzone commented 8 months ago

Hello,

The model number is: HG-12000BTU

I'm using the following config:

# UART0 configuration for AUX air conditioner communication
uart:
  id: ac_uart_bus
  # ATTENTION! Use GPIO4 (D2) and GPIO5 (D1) as the TX and RX for NodeMCU-like boards!
  tx_pin: GPIO1
  rx_pin: GPIO3
  baud_rate: 4800
  data_bits: 8
  parity: EVEN
  stop_bits: 1

climate:
  - platform: aux_ac
    name: "Livingroom AC"
    id: aux_id
    uart_id: ac_uart_bus
    period: 7s
    show_action: true
    display_inverted: false
    timeout: 150
    optimistic: true
    indoor_temperature:
      name: AC Indoor Temperature
      id: ac_indoor_temp
      accuracy_decimals: 1
      internal: false
    outdoor_temperature:
      name: AC Outdoor Temperature
      id: ac_outdoor_temp
      internal: false
    outbound_temperature:
      name: AC Coolant Outbound Temperature
      id: ac_outbound_temp
      internal: false
    inbound_temperature:
      name: AC Coolant Inbound Temperature
      id: ac_inbound_temp
      internal: false
    compressor_temperature:
      name: AC Compressor Temperature
      id: ac_strange_temp
      internal: false
    display_state:
      name: AC Display State
      id: ac_display_state
      internal: false
    defrost_state:
      name: AC Defrost State
      id: ac_defrost_state
      internal: false
    inverter_power:
      name: AC Inverter Power
      id: ac_inverter_power
      internal: false
    inverter_power_limit_value:
      name: AC Inverter Power Limit Value
      id: ac_inverter_power_limit_value
      internal: false
    inverter_power_limit_state:
      name: AC Inverter Power Limit State
      id: ac_inverter_power_limit_state
      internal: false
    preset_reporter:
      name: AC Preset Reporter
      id: ac_preset_reporter
      internal: false
    vlouver_state:
      name: AC Vertical Louvers State
      id: ac_vlouver_state
      internal: false
    visual:
      min_temperature: 16
      max_temperature: 32
      temperature_step: 1
    supported_modes:
      - HEAT_COOL
      - COOL
      - HEAT
      - DRY
      - FAN_ONLY
    custom_fan_modes:
      - MUTE
      - TURBO
    supported_presets:
      - SLEEP
    custom_presets:
      - CLEAN
      - HEALTH
      - ANTIFUNGUS
    supported_swing_modes:
      - VERTICAL
      - HORIZONTAL
      - BOTH

#sensor:
  # just wifi signal strength for debug purpose only
#  - platform: wifi_signal
#    name: WiFi Signal
#    update_interval: 30s
#    unit_of_measurement: "dBa"
#    accuracy_decimals: 0

switch:
  - platform: template
    name: Display
    lambda: |-
      if (id(ac_display_state).state) {
        return true;
      } else {
        return false;
      }
    turn_on_action:
      - aux_ac.display_on: aux_id
    turn_off_action:
      - aux_ac.display_off: aux_id

button:
  - platform: template
    name: VLouver Stop
    icon: "mdi:circle-small"
    on_press:
      - aux_ac.vlouver_stop: aux_id

  - platform: template
    name: VLouver Swing
    icon: "mdi:pan-vertical"
    on_press:
      - aux_ac.vlouver_swing: aux_id

  - platform: template
    name: VLouver Top
    icon: "mdi:pan-up"
    on_press:
      - aux_ac.vlouver_top: aux_id

  - platform: template
    name: VLouver Middle Above
    icon: "mdi:pan-top-left"
    on_press:
      - aux_ac.vlouver_middle_above: aux_id

  - platform: template
    name: VLouver Middle
    icon: "mdi:pan-left"
    on_press:
      - aux_ac.vlouver_middle: aux_id

  - platform: template
    name: VLouver Middle Below
    icon: "mdi:pan-bottom-left"
    on_press:
      - aux_ac.vlouver_middle_below: aux_id

  - platform: template
    name: VLouver Bottom
    icon: "mdi:pan-down"
    on_press:
      - aux_ac.vlouver_bottom: aux_id

  - platform: template
    name: IPower Limit Off
    icon: "mdi:power-plug-off-outline"
    on_press:
      - aux_ac.power_limit_off: 
          id: aux_id

  - platform: template
    name: IPower Limit On 100%
    icon: "mdi:fraction-one-half"
    on_press:
      - aux_ac.power_limit_on:
          id: aux_id
          limit: 100

  - platform: template
    name: IPower Limit On 75%
    icon: "mdi:fraction-one-half"
    on_press:
      - aux_ac.power_limit_on:
          id: aux_id
          limit: 75

  - platform: template
    name: IPower Limit On 50%
    icon: "mdi:fraction-one-half"
    on_press:
      - aux_ac.power_limit_on:
          id: aux_id
          limit: 50

  - platform: template
    name: IPower Limit On 30%
    icon: "mdi:fraction-one-half"
    on_press:
      - aux_ac.power_limit_on:
          id: aux_id
          limit: 30

number:
  - platform: template
    name: Vertical Louvers
    id: aux_id_vlouver
    icon: "mdi:circle-small"
    mode: "slider"
    min_value: 0
    max_value: 6
    step: 1
    update_interval: 10s
    lambda: |-
      return id(ac_vlouver_state).state;
    set_action:
      then:
        - aux_ac.vlouver_set:
            id: aux_id
            position: !lambda "return x;"

  - platform: template
    name: IPower Limit Value
    id: aux_id_ipower_limit_value
    icon: "mdi:battery-unknown"
    mode: "slider"
    min_value: 30
    max_value: 100
    step: 1
    set_action:
      then:
       - lambda: !lambda |-
                 id(aux_id).powerLimitationOnSequence( x );

Greetings, Emile

GrKoR commented 8 months ago

Ok, thank you!

Try to delete slider 'IPower Limit Value'. In your config it hasn't off state, synchronization with AC and may affect to the commands.

If that doesn't help, send me please this log: press several buttons (on 30%, on 70%, on 100%, off) and capture the log while you are doing this. 'IPower Limit Value' slider should be deleted from config in this test.

Steamerzone commented 8 months ago

Hello,

I've disabled the IPower Limit Value slider, but that didn't help, below are the logs: 30% 50% 75% 100% and off.

Greetings, Emile

[22:39:46][D][climate:378]: 'Livingroom AC' - Sending state:
[22:39:46][D][climate:381]:   Mode: HEAT
[22:39:46][D][climate:383]:   Action: HEATING
[22:39:46][D][climate:386]:   Fan Mode: AUTO
[22:39:46][D][climate:389]:   Custom Fan Mode: mute
[22:39:46][D][climate:392]:   Preset: NONE
[22:39:46][D][climate:395]:   Custom Preset: 
[22:39:46][D][climate:398]:   Swing Mode: OFF
[22:39:46][D][climate:401]:   Current Temperature: 19.70°C
[22:39:46][D][climate:407]:   Target Temperature: 19.00°C
[22:39:46][D][sensor:093]: 'AC Indoor Temperature': Sending state 19.70000 °C with 1 decimals of accuracy
[22:39:46][D][sensor:093]: 'AC Outdoor Temperature': Sending state 9.00000 °C with 0 decimals of accuracy
[22:39:46][D][sensor:093]: 'AC Coolant Inbound Temperature': Sending state 39.00000 °C with 0 decimals of accuracy
[22:39:46][D][sensor:093]: 'AC Coolant Outbound Temperature': Sending state 6.00000 °C with 0 decimals of accuracy
[22:39:46][D][sensor:093]: 'AC Compressor Temperature': Sending state 50.00000 °C with 0 decimals of accuracy
[22:39:46][D][sensor:093]: 'AC Inverter Power': Sending state 34.00000 % with 0 decimals of accuracy
[22:39:46][D][sensor:093]: 'AC Vertical Louvers State': Sending state 5.00000  with 0 decimals of accuracy
[22:39:46][D][sensor:093]: 'AC Inverter Power Limit Value': Sending state 100.00000 % with 0 decimals of accuracy
[22:39:46][D][text_sensor:064]: 'AC Preset Reporter': Sending state 'NONE'
[22:39:49][D][AirCon:1359]: 0000374967: [<=] [BB 00 01 00 00 00 00 00] [43 FF] 
[22:39:49][D][AirCon:1645]: 0000375005: [=>] [BB 00 01 80 01 00 08 00] 1C 27 00 00 00 00 00 00 [1E 58] 
[22:39:49][D][button:010]: 'IPower Limit On 30%' Pressed.
[22:39:49][D][AirCon:1645]: 0000375087: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:49][D][AirCon:1359]: 0000375235: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 02 A0 80 80 00 00 20 00 10 E4 00 [1D C9] 
[22:39:50][D][AirCon:1645]: 0000375324: [=>] [BB 00 06 80 00 00 0F 00] 01 01 5C 20 00 A0 80 80 00 00 20 00 10 9E 00 [20 9F] 
[22:39:50][W][component:214]: Component aux_ac.climate took a long time for an operation (0.06 s).
[22:39:50][W][component:215]: Components should block for at most 20-30ms.
[22:39:50][D][AirCon:1359]: 0000375489: [<=] [BB 00 07 00 00 00 04 00] 01 01 20 9F [18 5F] 
[22:39:50][D][AirCon:1645]: 0000375561: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:50][D][AirCon:1359]: 0000375709: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 9E 00 [20 0F] 
[22:39:50][D][climate:378]: 'Livingroom AC' - Sending state:
[22:39:50][D][climate:381]:   Mode: HEAT
[22:39:50][D][climate:383]:   Action: HEATING
[22:39:50][D][climate:386]:   Fan Mode: AUTO
[22:39:50][D][climate:389]:   Custom Fan Mode: mute
[22:39:50][D][climate:392]:   Preset: NONE
[22:39:50][D][climate:395]:   Custom Preset: 
[22:39:50][D][climate:398]:   Swing Mode: OFF
[22:39:50][D][climate:401]:   Current Temperature: 19.70°C
[22:39:50][D][climate:407]:   Target Temperature: 19.00°C
[22:39:50][D][sensor:093]: 'AC Indoor Temperature': Sending state 19.70000 °C with 1 decimals of accuracy
[22:39:50][D][sensor:093]: 'AC Outdoor Temperature': Sending state 9.00000 °C with 0 decimals of accuracy
[22:39:50][D][sensor:093]: 'AC Coolant Inbound Temperature': Sending state 39.00000 °C with 0 decimals of accuracy
[22:39:50][D][sensor:093]: 'AC Coolant Outbound Temperature': Sending state 6.00000 °C with 0 decimals of accuracy
[22:39:50][D][sensor:093]: 'AC Compressor Temperature': Sending state 50.00000 °C with 0 decimals of accuracy
[22:39:50][D][sensor:093]: 'AC Inverter Power': Sending state 34.00000 % with 0 decimals of accuracy
[22:39:50][D][sensor:093]: 'AC Vertical Louvers State': Sending state 5.00000  with 0 decimals of accuracy
[22:39:50][D][sensor:093]: 'AC Inverter Power Limit Value': Sending state 30.00000 % with 0 decimals of accuracy
[22:39:50][D][text_sensor:064]: 'AC Preset Reporter': Sending state 'NONE'
[22:39:50][D][button:010]: 'IPower Limit On 50%' Pressed.
[22:39:51][D][AirCon:1645]: 0000376287: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:51][D][AirCon:1359]: 0000376436: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 9E 00 [20 0F] 
[22:39:51][D][AirCon:1645]: 0000376526: [=>] [BB 00 06 80 00 00 0F 00] 01 01 5C 20 00 A0 80 80 00 00 20 00 10 B2 00 [20 8B] 
[22:39:51][W][component:214]: Component aux_ac.climate took a long time for an operation (0.06 s).
[22:39:51][W][component:215]: Components should block for at most 20-30ms.
[22:39:51][D][AirCon:1359]: 0000376692: [<=] [BB 00 07 00 00 00 04 00] 01 01 20 8B [18 73] 
[22:39:51][D][AirCon:1645]: 0000376763: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:51][D][AirCon:1359]: 0000376911: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 B2 00 [1F FB] 
[22:39:51][D][climate:378]: 'Livingroom AC' - Sending state:
[22:39:51][D][climate:381]:   Mode: HEAT
[22:39:51][D][climate:383]:   Action: HEATING
[22:39:51][D][climate:386]:   Fan Mode: AUTO
[22:39:51][D][climate:389]:   Custom Fan Mode: mute
[22:39:51][D][climate:392]:   Preset: NONE
[22:39:51][D][climate:395]:   Custom Preset: 
[22:39:51][D][climate:398]:   Swing Mode: OFF
[22:39:51][D][climate:401]:   Current Temperature: 19.70°C
[22:39:51][D][climate:407]:   Target Temperature: 19.00°C
[22:39:51][D][sensor:093]: 'AC Indoor Temperature': Sending state 19.70000 °C with 1 decimals of accuracy
[22:39:51][D][sensor:093]: 'AC Outdoor Temperature': Sending state 9.00000 °C with 0 decimals of accuracy
[22:39:51][D][sensor:093]: 'AC Coolant Inbound Temperature': Sending state 39.00000 °C with 0 decimals of accuracy
[22:39:51][D][sensor:093]: 'AC Coolant Outbound Temperature': Sending state 6.00000 °C with 0 decimals of accuracy
[22:39:51][D][sensor:093]: 'AC Compressor Temperature': Sending state 50.00000 °C with 0 decimals of accuracy
[22:39:51][D][sensor:093]: 'AC Inverter Power': Sending state 34.00000 % with 0 decimals of accuracy
[22:39:51][D][sensor:093]: 'AC Vertical Louvers State': Sending state 5.00000  with 0 decimals of accuracy
[22:39:51][D][sensor:093]: 'AC Inverter Power Limit Value': Sending state 50.00000 % with 0 decimals of accuracy
[22:39:51][D][text_sensor:064]: 'AC Preset Reporter': Sending state 'NONE'
[22:39:52][D][button:010]: 'IPower Limit On 75%' Pressed.
[22:39:52][D][AirCon:1645]: 0000377752: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:52][D][AirCon:1359]: 0000377900: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 B2 00 [1F FB] 
[22:39:52][D][AirCon:1645]: 0000377990: [=>] [BB 00 06 80 00 00 0F 00] 01 01 5C 20 00 A0 80 80 00 00 20 00 10 CB 00 [20 72] 
[22:39:52][W][component:214]: Component aux_ac.climate took a long time for an operation (0.06 s).
[22:39:52][W][component:215]: Components should block for at most 20-30ms.
[22:39:52][D][AirCon:1359]: 0000378171: [<=] [BB 00 07 00 00 00 04 00] 01 01 20 72 [18 8C] 
[22:39:52][D][AirCon:1645]: 0000378226: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:53][D][AirCon:1359]: 0000378357: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 CB 00 [1F E2] 
[22:39:53][D][climate:378]: 'Livingroom AC' - Sending state:
[22:39:53][D][climate:381]:   Mode: HEAT
[22:39:53][D][climate:383]:   Action: HEATING
[22:39:53][D][climate:386]:   Fan Mode: AUTO
[22:39:53][D][climate:389]:   Custom Fan Mode: mute
[22:39:53][D][climate:392]:   Preset: NONE
[22:39:53][D][climate:395]:   Custom Preset: 
[22:39:53][D][climate:398]:   Swing Mode: OFF
[22:39:53][D][climate:401]:   Current Temperature: 19.70°C
[22:39:53][D][climate:407]:   Target Temperature: 19.00°C
[22:39:53][D][sensor:093]: 'AC Indoor Temperature': Sending state 19.70000 °C with 1 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Outdoor Temperature': Sending state 9.00000 °C with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Coolant Inbound Temperature': Sending state 39.00000 °C with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Coolant Outbound Temperature': Sending state 6.00000 °C with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Compressor Temperature': Sending state 50.00000 °C with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Inverter Power': Sending state 34.00000 % with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Vertical Louvers State': Sending state 5.00000  with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Inverter Power Limit Value': Sending state 75.00000 % with 0 decimals of accuracy
[22:39:53][D][text_sensor:064]: 'AC Preset Reporter': Sending state 'NONE'
[22:39:53][D][AirCon:1645]: 0000378605: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:53][D][AirCon:1359]: 0000378753: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 CB 00 [1F E2] 
[22:39:53][D][AirCon:1645]: 0000378842: [=>] [BB 00 06 80 00 00 02 00] 21 01 [1B 7E] 
[22:39:53][D][AirCon:1359]: 0000378973: [<=] [BB 00 07 00 00 00 18 00] 01 21 E0 81 00 02 54 33 47 47 47 64 29 25 52 39 22 06 A0 F0 0E 00 00 07 [15 1F] 
[22:39:53][D][climate:378]: 'Livingroom AC' - Sending state:
[22:39:53][D][climate:381]:   Mode: HEAT
[22:39:53][D][climate:383]:   Action: HEATING
[22:39:53][D][climate:386]:   Fan Mode: AUTO
[22:39:53][D][climate:389]:   Custom Fan Mode: mute
[22:39:53][D][climate:392]:   Preset: NONE
[22:39:53][D][climate:395]:   Custom Preset: 
[22:39:53][D][climate:398]:   Swing Mode: OFF
[22:39:53][D][climate:401]:   Current Temperature: 19.70°C
[22:39:53][D][climate:407]:   Target Temperature: 19.00°C
[22:39:53][D][sensor:093]: 'AC Indoor Temperature': Sending state 19.70000 °C with 1 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Outdoor Temperature': Sending state 9.00000 °C with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Coolant Inbound Temperature': Sending state 39.00000 °C with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Coolant Outbound Temperature': Sending state 5.00000 °C with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Compressor Temperature': Sending state 50.00000 °C with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Inverter Power': Sending state 34.00000 % with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Vertical Louvers State': Sending state 5.00000  with 0 decimals of accuracy
[22:39:53][D][sensor:093]: 'AC Inverter Power Limit Value': Sending state 75.00000 % with 0 decimals of accuracy
[22:39:53][D][text_sensor:064]: 'AC Preset Reporter': Sending state 'NONE'
[22:39:54][D][button:010]: 'IPower Limit On 100%' Pressed.
[22:39:54][D][AirCon:1645]: 0000379683: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:54][D][AirCon:1359]: 0000379816: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 CB 00 [1F E2] 
[22:39:54][D][AirCon:1645]: 0000379922: [=>] [BB 00 06 80 00 00 0F 00] 01 01 5C 20 00 A0 80 80 00 00 20 00 10 E4 00 [20 59] 
[22:39:54][W][component:214]: Component aux_ac.climate took a long time for an operation (0.06 s).
[22:39:54][W][component:215]: Components should block for at most 20-30ms.
[22:39:54][D][AirCon:1359]: 0000380086: [<=] [BB 00 07 00 00 00 04 00] 01 01 20 59 [18 A5] 
[22:39:54][D][AirCon:1645]: 0000380156: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:55][D][AirCon:1359]: 0000380304: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 E4 00 [1F C9] 
[22:39:55][D][climate:378]: 'Livingroom AC' - Sending state:
[22:39:55][D][climate:381]:   Mode: HEAT
[22:39:55][D][climate:383]:   Action: HEATING
[22:39:55][D][climate:386]:   Fan Mode: AUTO
[22:39:55][D][climate:389]:   Custom Fan Mode: mute
[22:39:55][D][climate:392]:   Preset: NONE
[22:39:55][D][climate:395]:   Custom Preset: 
[22:39:55][D][climate:398]:   Swing Mode: OFF
[22:39:55][D][climate:401]:   Current Temperature: 19.70°C
[22:39:55][D][climate:407]:   Target Temperature: 19.00°C
[22:39:55][D][sensor:093]: 'AC Indoor Temperature': Sending state 19.70000 °C with 1 decimals of accuracy
[22:39:55][D][sensor:093]: 'AC Outdoor Temperature': Sending state 9.00000 °C with 0 decimals of accuracy
[22:39:55][D][sensor:093]: 'AC Coolant Inbound Temperature': Sending state 39.00000 °C with 0 decimals of accuracy
[22:39:55][D][sensor:093]: 'AC Coolant Outbound Temperature': Sending state 5.00000 °C with 0 decimals of accuracy
[22:39:55][D][sensor:093]: 'AC Compressor Temperature': Sending state 50.00000 °C with 0 decimals of accuracy
[22:39:55][D][sensor:093]: 'AC Inverter Power': Sending state 34.00000 % with 0 decimals of accuracy
[22:39:55][D][sensor:093]: 'AC Vertical Louvers State': Sending state 5.00000  with 0 decimals of accuracy
[22:39:55][D][sensor:093]: 'AC Inverter Power Limit Value': Sending state 100.00000 % with 0 decimals of accuracy
[22:39:55][D][text_sensor:064]: 'AC Preset Reporter': Sending state 'NONE'
[22:39:55][D][number:012]: 'Vertical Louvers': Sending state 5.000000
[22:39:56][D][button:010]: 'IPower Limit Off' Pressed.
[22:39:56][D][AirCon:1645]: 0000381486: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:56][D][AirCon:1359]: 0000381627: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 E4 00 [1F C9] 
[22:39:56][D][AirCon:1645]: 0000381717: [=>] [BB 00 06 80 00 00 0F 00] 01 01 5C 20 00 A0 80 80 00 00 20 00 10 E4 00 [20 59] 
[22:39:56][W][component:214]: Component aux_ac.climate took a long time for an operation (0.06 s).
[22:39:56][W][component:215]: Components should block for at most 20-30ms.
[22:39:56][D][AirCon:1359]: 0000381882: [<=] [BB 00 07 00 00 00 04 00] 01 01 20 59 [18 A5] 
[22:39:56][D][AirCon:1645]: 0000381954: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:39:56][D][AirCon:1359]: 0000382102: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 00 A0 80 80 00 00 20 00 10 E4 00 [1F C9] 
[22:39:59][D][AirCon:1359]: 0000385065: [<=] [BB 00 01 00 00 00 00 00] [43 FF] 
[22:39:59][D][AirCon:1645]: 0000385119: [=>] [BB 00 01 80 01 00 08 00] 1C 27 00 00 00 00 00 00 [1E 58] 
[22:40:00][D][AirCon:1645]: 0000385608: [=>] [BB 00 06 80 00 00 02 00] 11 01 [2B 7E] 
[22:40:00][D][AirCon:1359]: 0000385755: [<=] [BB 00 07 00 00 00 0F 00] 01 11 5C 20 01 A0 80 80 00 00 20 00 10 E4 00 [1E C9] 
[22:40:00][D][AirCon:1645]: 0000385844: [=>] [BB 00 06 80 00 00 02 00] 21 01 [1B 7E] 
[22:40:00][D][AirCon:1359]: 0000385992: [<=] [BB 00 07 00 00 00 18 00] 01 21 E0 81 00 02 55 33 47 47 47 64 29 26 52 39 22 06 9E F0 10 00 00 07 [14 1E] 
[22:40:00][D][climate:378]: 'Livingroom AC' - Sending state:
[22:40:00][D][climate:381]:   Mode: HEAT
[22:40:00][D][climate:383]:   Action: HEATING
[22:40:00][D][climate:386]:   Fan Mode: AUTO
[22:40:00][D][climate:389]:   Custom Fan Mode: mute
[22:40:00][D][climate:392]:   Preset: NONE
[22:40:00][D][climate:395]:   Custom Preset: 
[22:40:00][D][climate:398]:   Swing Mode: OFF
[22:40:00][D][climate:401]:   Current Temperature: 19.70°C
[22:40:00][D][climate:407]:   Target Temperature: 19.00°C
[22:40:00][D][sensor:093]: 'AC Indoor Temperature': Sending state 19.70000 °C with 1 decimals of accuracy
[22:40:00][D][sensor:093]: 'AC Outdoor Temperature': Sending state 9.00000 °C with 0 decimals of accuracy
[22:40:00][D][sensor:093]: 'AC Coolant Inbound Temperature': Sending state 39.00000 °C with 0 decimals of accuracy
[22:40:00][D][sensor:093]: 'AC Coolant Outbound Temperature': Sending state 6.00000 °C with 0 decimals of accuracy
[22:40:00][D][sensor:093]: 'AC Compressor Temperature': Sending state 50.00000 °C with 0 decimals of accuracy
[22:40:00][D][sensor:093]: 'AC Inverter Power': Sending state 34.00000 % with 0 decimals of accuracy
[22:40:00][D][sensor:093]: 'AC Vertical Louvers State': Sending state 5.00000  with 0 decimals of accuracy
[22:40:00][D][sensor:093]: 'AC Inverter Power Limit Value': Sending state 100.00000 % with 0 decimals of accuracy
[22:40:00][D][text_sensor:064]: 'AC Preset Reporter': Sending state 'NONE'
GrKoR commented 8 months ago

@Steamerzone thank you a lot! I found a bug with your help. Try dev-brunch. Is it solve the problem with disabling of power limitation? If it is okay, I'll merge it into master.

Steamerzone commented 8 months ago

Hello,

Yes the dev-branch fixed it, it is working correctly now. Thanks!

Emile

GrKoR commented 8 months ago

I merged it into the master. Thank you for your help! =)