Allow global usage of CEC (#1052)

This commit is contained in:
Pascal Vizeli
2020-02-06 12:48:01 +01:00
committed by GitHub
parent 7062117d46
commit 3148aacadd
3 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,9 @@
# Changelog # Changelog
## 2.4
- Use new `video` feature of Supervisor 199
## 2.3 ## 2.3
- Add support for Meson AOCEC - Add support for Meson AOCEC

View File

@@ -24,10 +24,6 @@ This add-on has no configuration and runs out of the box.
1. Start the add-on. 1. Start the add-on.
2. Check the add-on log output to see the result. 2. Check the add-on log output to see the result.
## Known issues and limitations
- This add-on can only be used on devices that support the Video Core (vc).
## Support ## Support
Got questions? Got questions?

View File

@@ -1,13 +1,13 @@
{ {
"name": "CEC Scanner", "name": "CEC Scanner",
"version": "2.3", "version": "2.4",
"slug": "cec_scan", "slug": "cec_scan",
"description": "Scan for HDMI CEC devices", "description": "Scan for HDMI CEC devices",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/cec_scan", "url": "https://github.com/home-assistant/hassio-addons/tree/master/cec_scan",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"], "arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "once", "startup": "once",
"boot": "manual", "boot": "manual",
"devices": ["/dev/vchiq:/dev/vchiq:rwm"], "video": true,
"options": {}, "options": {},
"schema": {}, "schema": {},
"image": "homeassistant/{arch}-addon-cec_scan" "image": "homeassistant/{arch}-addon-cec_scan"