Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shaonianzhentan/lovelace-camera-panel
在HA里使用的摄像监控控制面板
https://github.com/shaonianzhentan/lovelace-camera-panel
Last synced: 13 days ago
JSON representation
在HA里使用的摄像监控控制面板
- Host: GitHub
- URL: https://github.com/shaonianzhentan/lovelace-camera-panel
- Owner: shaonianzhentan
- Created: 2020-01-13T07:45:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-13T08:58:57.000Z (almost 5 years ago)
- Last Synced: 2024-10-03T20:41:26.860Z (about 1 month ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lovelace-camera-panel
在HA里使用的摄像监控控制面板# 引入到HA
```resources:
- type: js
url: /local/camera-panel.js```
# 配置卡片
```
title: 卧室的摄像头
type: 'custom:camera-panel'
url: 'https://video-dev.github.io/streams/x36xhzz/x36xhzz.m3u8'
left:
domain: mqtt
service: publish
data:
topic: /homeassistant/onvif/move
payload: left
right:
domain: mqtt
service: publish
data:
topic: /homeassistant/onvif/move
payload: right
up:
domain: mqtt
service: publish
data:
topic: /homeassistant/onvif/move
payload: up
down:
domain: mqtt
service: publish
data:
topic: /homeassistant/onvif/move
payload: down
minus:
domain: mqtt
service: publish
data:
topic: /homeassistant/onvif/move
payload: zoom_in
plus:
domain: mqtt
service: publish
data:
topic: /homeassistant/onvif/move
payload: zoom_out```