Configure aeotec temp sensor on hassio

HI,
would you be able to help me?

how to configure aeotec temp sensor on hassio.

-sensor.aeotec_zw100_multisensor_6_temperature
to trigger “on” ,at a certain temperature 8 ℃ , z wave wall outlet :
-switch.telldus_tzwp100_plugin_switch_switch_4

and at a certain temperature14 ℃ trigger off,
-switch.telldus_tzwp100_plugin_switch_switch_4.

The switch.telldus_tzwp100_plugin_switch_switch_4 ,is connected to heat fan.
Any suggestions?
Thanks
Christian

If what you are after is the switch to turn on when the temp is at or below 8C and off when the temp is at or above 14C, you need two automations. One to turn off, one to turn on.

- alias: Heater Turn On
  id: '12345'
  initial_state: true
  trigger:
  - platform: state
    entity_id: sensor.aeotec_zw100_multisensor_6_temperature
    below: '9'
  action:
  - service: switch.turn_on
    entity_id: switch.telldus_tzwp100_plugin_switch_switch_4

- alias: Heater Turn Off
  id: '54321'
  initial_state: true
  trigger:
  - platform: state
    entity_id: sensor.aeotec_zw100_multisensor_6_temperature
    above: '13'
  action:
  - service: switch.turn_off
    entity_id: switch.telldus_tzwp100_plugin_switch_switch_4

Thanks,
I will try.