Connect your Home Assistant instance with Lark/Feishu for bidirectional communication.
- Send notifications from Home Assistant to Lark (text, images, interactive cards)
- Receive commands from Lark to trigger Home Assistant automations
- Interactive buttons in cards that execute Home Assistant services
- Multi-language support (English, 繁體中文, 简体中文)
- Easy setup through UI configuration flow
- Create a Lark bot application at Lark Open Platform
- Install this integration via HACS
- Add the integration in Home Assistant Settings → Integrations
- Enter your App ID and App Secret
- Select default notification targets
- Start sending notifications and receiving commands!
action: notify.lark
data:
message: "Hello from Home Assistant!"action: notify.lark
data:
title: "🔔 Doorbell"
message: "Someone is at the door"
data:
image_url: "http://camera/snapshot.jpg"
buttons:
- text: "Open Door"
action: lock.unlock
entity_id: lock.front_doorautomation:
- alias: "Turn on lights from Lark"
trigger:
- platform: event
event_type: lark_command
event_data:
text: "開燈"
action:
- action: light.turn_on
entity_id: light.living_roomFor full documentation, visit the GitHub repository.