2024年11月21日星期四 下午11:40:00

Developer Tools Services

10 个月 前
#26283 引用
Developer Tools Services


0
10 个月 前
#26284 引用
1
0
10 个月 前
#26285 引用
小爱音响TTS -  Xiaomi Miot Auto 插件

小爱音响在通过 Xiaomi Miot Auto 插件接入到HA后会生成一个 media_player 实体,该实体可以控制播放暂停、调节音量和静音等。很多朋友会觉得没什么用,甚至有时候还控制不了。
其实更多的功能需要通过HA服务去调用,服务还可被用于自动化、脚本、模板实体等。本插件为小爱提供了 xiaomi_miot.intelligent_speaker 服务可以实现TTS和执行语音命令。

调试HA服务可以进入:开发者工具 > 服务


让小爱朗读文本(TTS):


service: xiaomi_miot.intelligent_speaker
data:
  execute: false
  silent: false
  throw: false
  entity_id: media_player.xiaomi_lx06_026c_play_control
  text: "5555"


http://192.168.2.50:38123/developer-tools/service


run ok
0
6 个月 前
#35238 引用
homepod mini  tts


service: tts.edge_tts_say
data:
  entity_id: media_player.qi_ju_shi
  message: My name is hanna
  language: zh-CN


run ok
0
5 个月 前
#39349 引用
service: conversation.process
data:
  text: 关客厅的灯
  language: zh-cn


output


response:
  speech:
    plain:
      speech: 客厅灯已关闭
      extra_data: null
  card: {}
  language: zh-cn
  response_type: action_done
  data:
    targets: []
    success:
      - name: 客厅
        type: area
        id: ke_ting
      - name: 吸顶灯 Light
        type: entity
        id: light.yeelink_ceiling21_5f74_light
      - name: Aqara Hub M1S Light
        type: entity
        id: light.lumi_acn01_edb6_light
      - name: 领普人体存在传感器ES1ZB(MI) Indicator Light
        type: entity
        id: light.linp_hb01_c930_indicator_light
    failed: []
conversation_id: null



case 2:
service: conversation.process
data:
  text: 关灯
  language: zh-cn

output

response:
  speech:
    plain:
      speech: 找不到名为 灯 的实体
      extra_data: null
  card: {}
  language: zh-cn
  response_type: error
  data:
    code: no_valid_targets
conversation_id: null
0
4 个月 前
#41442 引用
service: xiaomi_miot.intelligent_speaker
data:
  execute: true
  silent: true
  entity_id: media_player.xiaomi_lx06_026c_play_control
  text: 关空调
0