-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
170 lines (170 loc) · 4.07 KB
/
app.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"id": "org.fx-2.SSBv1",
"name": {
"en": "SSBv1"
},
"description": {
"en": "Connect your Homey with Samsung soundbar"
},
"version": "0.1.0",
"brandColor": "#E3B30B",
"homeyCommunityTopicId": 9333,
"sdk": 2,
"compatibility": ">=1.5.13",
"category": [
"video"
],
"tags": {
"en": [
"SSBv1"
],
"nl": [
"SSBv1"
],
"de": [
"SSBv1"
]
},
"author": {
"name": "EddieX666",
"email": "[email protected]",
"website": "http://www.vgpc.no"
},
"contributing": {
"donate": {
"paypal": {
"username": "eddiex666"
}
}
},
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"bugs": {
"url": "https://github.com/eddiex666/org.fx-2.SSBv1/issues"
},
"dependencies": {
"request": "^2.81.0"
},
"flow": {
"actions": [
{
"id": "powerstate_deepStandy",
"title": {
"en": "deep standby mode",
"de": "Tiefschlaf modus"
},
"hint": {
"en": "No Software Control will be possible, after executing of this Command!",
"de": "Nach dem ausführen dieses Kommandos wird keine weitere Software Kontrolle möglich sein!"
}
},
{
"id": "powerstate_restart_e2",
"title": {
"en": "reboot SSBv1 software",
"de": "Neustart SSBv1 Software"
}
},
{
"id": "powerstate_rebootBox",
"title": {
"en": "reboot receiver",
"de": "Neustart Receiver"
}
},
{
"id": "command_send",
"title": {
"en": "send command as ID",
"de": "Kontrollbefehl als ID senden"
},
"hint": {
"en": "For supported Command ID's please look at http://SSBv1.fx-2.org",
"de": "Für unterstützte ID's bitte unter http://SSBv1.fx-2.org schauen"
},
"args": [
{
"name": "command",
"type": "number",
"step": 1,
"placeholder": {
"en": "command ID",
"de": "Befehls ID"
}
}
]
},
{
"id": "message_send",
"title": {
"en": "send message",
"de": "Nachricht versenden"
},
"hint": {
"en": "Message needs the following format: \n\nType|Timeout|Text \n\nTypes: \n0 = YES / NO question \n1 = Info \n2 = MESSAGE \n3 = ATTENTION \nTimeout = Seconds or 0 for endless display \nMessage = Your Text",
"de": "Nachrichten müssen im folgenden Format eingegeben werden: \n\nTyp|Anzeigezeit|Text \n\nTyp: \n0 = Ja / Nein Frage \n1 = Information \n2 = Nachricht \n 3 = Warnung \nAnzeigezeit = Sekunden oder 0 für dauerhaft \nMessage = Nachrichtentext"
},
"args": [
{
"name": "msg_text_full",
"type": "text",
"placeholder": {
"en": "Message Text",
"de": "Nachrichten Text"
}
}
]
},
{
"id": "powerstate_off",
"title": {
"en": "standby mode",
"de": "standby einleiten"
}
},
{
"id": "powerstate_on",
"title": {
"en": "standby wake",
"de": "standby verlassen"
}
},
{
"id": "vol_mute",
"title": {
"en": "Volume mute",
"de": "Lautstärke stumm"
}
},
{
"id": "vol_set",
"title": {
"en": "set Volume to (0-100)",
"de": "Lautstärke festlegen (0-100)"
},
"args": [
{
"name": "volume",
"type": "number",
"min": 0,
"max": 100,
"step": 1,
"placeholder": {
"en": "Volume set (0% - 100%)",
"de": "Lautstärke festlegen (0% - 100%)"
}
}
]
},
{
"id": "vol_unmute",
"title": {
"en": "Volume unmute",
"de": "Lautstärke stumm aufheben"
}
}
]
}
}