-
Notifications
You must be signed in to change notification settings - Fork 1
/
io-package.json
117 lines (117 loc) · 4.7 KB
/
io-package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"common": {
"name": "vivitek",
"version": "0.0.2",
"news": {
"0.0.1": {
"en": "initial release",
"de": "Erstveröffentlichung",
"ru": "Начальная версия",
"pt": "lançamento inicial",
"nl": "Eerste uitgave",
"fr": "Première version",
"it": "Versione iniziale",
"es": "Versión inicial",
"pl": "Pierwsze wydanie",
"zh-cn": "首次出版"
},
"0.0.2": {
"en": "minor changes for the publication of the first release",
"de": "geringfügige Änderungen für die Veröffentlichung der ersten Version",
"ru": "мелкие изменения для публикации первого релиза",
"pt": "pequenas alterações para a publicação do primeiro lançamento",
"nl": "kleine wijzigingen voor de publicatie van de eerste release",
"fr": "changements mineurs pour la publication de la première version",
"it": "modifiche minori per la pubblicazione della prima release",
"es": "cambios menores para la publicación del primer lanzamiento",
"pl": "drobne zmiany dotyczące publikacji pierwszego wydania",
"zh-cn": "对第一个发行版的微小更改"
}
},
"title": "Vivitek Projector Control",
"titleLang": {
"en": "Vivitek Projector Control",
"de": "Vivitek Projektorsteuerung",
"ru": "Управление проектором Vivitek",
"pt": "Vivitek Projector Control",
"nl": "Vivitek Projector Control",
"fr": "Contrôle du projecteur Vivitek",
"it": "Vivitek Projector Control",
"es": "Control del proyector Vivitek",
"pl": "Sterowanie projektorem Vivitek",
"zh-cn": "Vivitek投影仪控制"
},
"desc": {
"en": "Control a Vivitek Projector via Network (RS 232 commands via telnet)",
"de": "Steuern Sie einen Vivitek-Projektor über das Netzwerk (RS 232-Befehle über Telnet)",
"ru": "Управление проектором Vivitek по сети (команды RS 232 через telnet)",
"pt": "Controlar um projetor Vivitek via rede (comandos RS 232 via telnet)",
"nl": "Bedien een Vivitek-projector via netwerk (RS 232-opdrachten via telnet)",
"fr": "Contrôlez un projecteur Vivitek via le réseau (commandes RS 232 via telnet)",
"it": "Controlla un proiettore Vivitek tramite rete (comandi RS 232 tramite telnet)",
"es": "Controle un proyector Vivitek a través de la red (comandos RS 232 a través de telnet)",
"pl": "Sterowanie projektorem Vivitek przez sieć (polecenia RS 232 przez telnet)",
"zh-cn": "通过网络控制Vivitek投影仪(通过telnet的RS 232命令)"
},
"authors": [
"Bannsaenger <[email protected]>"
],
"keywords": [
"vivitek projector"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"main": "main.js",
"icon": "vivitek.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/Bannsaenger/ioBroker.vivitek/master/admin/vivitek.png",
"readme": "https://github.com/Bannsaenger/ioBroker.vivitek/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "multimedia",
"connectionType": "local",
"dataSource": "poll",
"message": true,
"compact": true,
"materialize": true,
"dependencies": [
{
"js-controller": ">=2.0.0"
}
]
},
"native": {
"host": "127.0.0.1",
"port": 23,
"projectorType": "Vivitek DU7098Z",
"pollDelay": 1000,
"reconnectDelay": 10000,
"answerTimeout": 500,
"inactivityTimeout": 10000
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "If connected to Vivitec projector",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {
}
}
]
}