IR Remote Climate model problem

Hi,
I installed esphome in a wemos d1 mini with the ir remote climate component.

All works fine except the model,

In documentation I read I must set the model to have the right min and max temparature:

whirlpool Climate:

  • model (Optional, string): There are two valid models to choose from:
    • DG11J1-3A: Temperature range is from 18 to 32 (default)
    • DG11J1-91: Temperature range is from 16 to 30

I put it but the min max temperature is always default (18-30) can you help me?

Thanks

remote_receiver:
  id: rcvr
  pin:
    number: D5
    inverted: true
    mode:
      input: true
      pullup: true
  # high 55% tolerance is recommended for some remote control units
  tolerance: 55%

remote_transmitter:
  pin: D2
  carrier_duty_percent: 50%
  
climate:
  - platform: whirlpool
    name: "Clima Studio"
    model: "DG11J1-91"
    sensor: current_studio_temperature
    receiver_id: rcvr

Think you can override it

climate:
  - platform: whirlpool
    name: "Clima Studio"
    model: "DG11J1-91"
    sensor: current_studio_temperature
    receiver_id: rcvr
    visual:
      min_temperature: 16
      max_temperature: 30

Well the docs clearly say you can override it. Climate Component — ESPHome Trouble is people don’t read.

Thanks for answer with override works, but at this point the documentation is not clear…why I can choose the model if it not modify the min and max temperature?

Maybe a bug? Or maybe only used in the background?

You could dive into the code if you would like :slight_smile: