ginkage / MHI-AC-Ctrl-ESPHome

ESPHome integration for MHI-AC-Ctrl project
MIT License
112 stars 39 forks source link

room_temp_api_timeout not working #103

Closed th3sniper86 closed 1 week ago

th3sniper86 commented 2 weeks ago

I’m using an external temperature sensor to set the current room temperature using the service ‘set_api_room_temperature’. This works, but after one minute, the temperature is set back to the internal temperature sensor, despite the timeout has not passed.

IMG_0034

Tested with AC off and in heating mode with:

globals:

serrj-sv commented 1 week ago

add room_temp_timeout in MhiAcCtrl section in your yaml:

MhiAcCtrl:
  id: ${mhi_device_id}
  frame_size: ${frame_size}
  room_temp_timeout: 1800
th3sniper86 commented 1 week ago

add room_temp_timeout in MhiAcCtrl section in your yaml:

MhiAcCtrl:
  id: ${mhi_device_id}
  frame_size: ${frame_size}
  room_temp_timeout: 1800

Thanks! This resolved the issue for me.