Tham khảo:

+ MQTT Switch in Home-assistant.io : link

+ Tasmota for Home Assistant : link

Bạn chọn 1 trong những cách sau để thêm thiết bị Tasmota vào Hass:

Cách 1 : MQTT Discovery 

  1. Trong Hass, bật chức năng Auto Discovery của MQTT.
  2. Vào console của Tasmota, chạy “SetOption19 1“.

Hass sẽ tự động nhận các thiết bị Tasmota và hiển thị trong config > integrations > MQTT.

Cách 2 : Hass Intergration – Tasmota

Home Assistant đã hỗ trợ thêm trực tiếp thiết bị Tasmota từ bộ tích hợp (Integration ).  Xem hướng dẫn tại trang Home Assistant.

Cách 3 : Cấu hình trong file yaml.

Thêm cấu hình switch MQTT vào configuration file của Hass:

Công tắc 3 nút:

Bạn xem hình để điều chỉnh đúng khoảng trắng ( space ) nhé.

switch:
# sonoff 3 nut
  – platform: mqtt
    name: “switch_name_1”
    state_topic: “stat/mqtt_topic/POWER1″
    command_topic: “cmnd/mqtt_topic/power1″
    payload_on: “ON”
    payload_off: “OFF”
    qos: 1
  – platform: mqtt
    name: “switch_name_2”
    state_topic: “stat/mqtt_topic/POWER2″
    command_topic: “cmnd/mqtt_topic/power2″
    payload_on: “ON”
    payload_off: “OFF”
    qos: 1
  – platform: mqtt
    name: “switch_name_3”
    state_topic: “stat/mqtt_topic/POWER3″
    command_topic: “cmnd/mqtt_topic/power3″
    payload_on: “ON”
    payload_off: “OFF”
    qos: 1

Công tắc 1 nút hoăc ổ cắm:

switch:
# sonoff 1 nut
  – platform: mqtt
    name: “switch_name”
    state_topic: “stat/mqtt_topic/POWER”
    command_topic: “cmnd/mqtt_topic/power”
    payload_on: “ON”
    payload_off: “OFF”
    qos: 1