當前位置: 華文問答 > 數碼

「homekit」合成可視門鈴!!!TV有畫面,homepod能響鈴~

2022-07-06數碼

影片如下:

app就不提供啦,套用商城下載吧~

第一個檔:camera.yaml

- platform: ffmpeg

input: -rtsp_tramsport tcp -i rtsp://admin:[email protected]:8555/live

name: doorbell

替換處有三,admin為使用者名稱,123321為密碼,192.168.10.48:8555/live為網址

第二個檔:binary_sensor.yaml

- platform: template

sensors:

doorbell_switch:

friendly_name: Doorbell Button

value_template: "{{ is_state('sensor.0x158dXXXXXXXb2a_action', 'single') }}"

替換處有一,sensor.0x158dXXXXXXXb2a_action為按鈕實體名稱

第三個檔:homekit.yaml

- name: Doorbell

mode: accessory

filter:

include_entities:

- camera.doorbell

entity_config:

camera.doorbell:

name: Doorbell

support_audio: true

linked_doorbell_sensor: binary_sensor.doorbell_switch

可修改處: support_audio,選 true 或者 false 分別代表畫面有無錄音。

第四個檔:(添加即可,無需建立)configuration.yaml

camera: !include camera.yaml

binary_sensor: !include binary_sensor.yaml

homekit: !include homekit.yaml

把這三行包含進去~

重新開機ha~

通知欄出現二維碼~

掃碼添加~

完畢~