@o-lukas/homebridge-smartthings-tv 1.10.1 → 1.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -243,6 +243,10 @@ Some TVs always report the same picture & sound mode. This will cause the expose
|
|
|
243
243
|
|
|
244
244
|
Sometimes the SmartThings API seems to loose the contact to the device and does not update it's state so every request will end up with an error message like `invalid device state`. To fix this try to remove the device from your SmartThings account and add it again. This seems to fix the problem.
|
|
245
245
|
|
|
246
|
+
## DisplayPort input sources do not show up
|
|
247
|
+
|
|
248
|
+
For some TVs display port sources do not show up. When having the same problem you might try to use [inputSources](#inputsources). `Id` might be something like `Display Port` but you will have to experiment a bit trying different ids until you find the the right one.
|
|
249
|
+
|
|
246
250
|
***
|
|
247
251
|
|
|
248
252
|
Since this is my first plugin it may contain some problems. Feel free to create an issue or pull request and I will try to help and fix the problems.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Homebridge SmartThings TV",
|
|
3
3
|
"name": "@o-lukas/homebridge-smartthings-tv",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.2",
|
|
5
5
|
"description": "This is a plugin for Homebridge. It offers some basic functions to control Samsung TVs using the SmartThings API.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"url": "https://github.com/o-lukas/homebridge-smartthings-tv/issues"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
|
-
"node": "
|
|
16
|
-
"homebridge": "
|
|
15
|
+
"node": "^18 || ^20",
|
|
16
|
+
"homebridge": "^1.6.0"
|
|
17
17
|
},
|
|
18
18
|
"main": "dist/index.js",
|
|
19
19
|
"scripts": {
|