Mitsubishi WF-RAC (Smart M-Air)

Hello guys,

As i’m diving deeper and deeper into HA, my demands for myself are getting more and more complicated. Recently i’ve got two Mitsubishi airco units installed with the WF-RAC wifi module. A great job was done by jeatheak by creating a integration for this wifi module and it’s working like a charm. However, I would like to automate the airco. For instance:

On a weekday after 1700, when the temperature is below 18 degrees Celcius, turn the heat on off the airco on at 22 degrees Celsius.

The first part is not a problem, but i’m struggling with the 22 degrees part. How should I tackle this? This is what ive got:

trigger:
  - platform: time
    at: "17:00:00"
condition:
  - condition: time
    after: "16:59:00"
    before: "21:30:00"
    weekday:
      - fri
      - thu
      - wed
      - tue
      - mon
  - condition: numeric_state
    entity_id: sensor.temperaturesensor_1_temperature
    below: 18
  - condition: or
    conditions:
      - condition: zone
        entity_id: person.name2
        zone: zone.home
      - condition: zone
        entity_id: person.name
        zone: zone.home
  - condition: device
    device_id: 3816405c69657c5e32738adaaa8e45ae
    domain: climate
    entity_id: climate.aircounit_livingroom
    type: is_hvac_mode
    hvac_mode: "off"
action:
  - device_id: 3816405c69657c5e32738adaaa8e45ae
    domain: climate
    entity_id: climate.aircounit_livingroom
    type: set_hvac_mode
    hvac_mode: heat
mode: single

Can anyone point me in the right direction?

Create 2 automation? The second one is to turn off when temperature is 22 or above.

That is a possible solution, but I am curious if it is possible to send a data package to the airco setting the temperature.

Oh? There’s no entity where you can change the temperature?

I don’t have this AC yet, still waiting to get it installed.

There is a possibility to change the temperature when adding it to you dashboard, but i’m not sure how to implement it in a automation.

Nevermind, i had a golden moment. It is possible to create a scene, which you can add to the automation. Problem solved

1 Like

Can you please share your codes? :smiley: