muart-group / esphome

ESPHome fork for development of the mitsubishi_uart component. Check out the documentation for more info:
https://muart-group.github.io/
9 stars 0 forks source link

Remote temperatures reported in F aren't converted to C #6

Open Sammy1Am opened 1 year ago

Sammy1Am commented 1 year ago

Any sensors providing values in F will not be converted before being sent to the system (likely resulting in an out of range error)

KazWolfe commented 6 months ago

Workaround until this is patched in code:

sensors:
  - platform: homeassistant
    id: living_room_temperature
    entity_id: sensor.airthings_living_room_temperature
    filters:
      - lambda: return ((x - 32.0) * (5.0 / 9.0));