This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
forked from logantgt/harmony-span
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
96 lines (96 loc) · 2 KB
/
config.yaml
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
webserverConfig:
bindHost: 0.0.0.0
port: 8060
mqttConfig:
serverUrl: 'mqtt://localhost'
serverUsername: harmony
serverPassword: harmony
enabled: false
buttons:
- id: 0
name: Home
action: GET
url: 'http://localhost:1880/harmony?cmd=home'
httpHeaders: {}
enabled: false
- id: 1
name: Rev
action: GET
url: 'http://localhost:1880/harmony?cmd=rev'
httpHeaders: {}
enabled: false
- id: 2
name: Fwd
url: 'http://localhost:1880/harmony?cmd=fwd'
action: GET
enabled: false
- id: 3
name: Play
action: MQTT
mqttTopic: harmony
mqttMessage: '{ "cmd": "play" }'
enabled: false
- id: 4
name: Select
action: MQTT
mqttTopic: harmony
mqttMessage: '{ "cmd": "select" }'
enabled: false
- id: 5
name: Left
action: POST
url: 'http://localhost:1880/harmony'
httpHeaders:
Content-Type: application/json
enabled: false
postPayload: '{"cmd": "left"}'
- id: 6
name: Right
action: MQTT
mqttTopic: harmony
mqttMessage: '{"cmd": "right"}'
enabled: false
- id: 7
name: Down
action: MQTT
mqttTopic: harmony
mqttMessage: '{"cmd" : "down"}'
enabled: false
- id: 8
name: Up
action: MQTT
mqttTopic: harmony
mqttMessage: '{"cmd" : "up"}'
enabled: false
- id: 9
name: Back
action: MQTT
mqttTopic: harmony
mqttMessage: '{"cmd" : "back"}'
enabled: false
- id: 10
name: InstantReplay
action: MQTT
mqttTopic: harmony
mqttMessage: '{"cmd" : "instantReplay"}'
enabled: false
- id: 11
name: Info
action: GET
url: 'http://localhost:1880/harmony?cmd=info'
enabled: false
- id: 12
name: Backspace
action: GET
url: 'http://localhost:1880/harmony?cmd=backspace'
enabled: false
- id: 13
name: Search
action: GET
url: 'http://localhost:1880/harmony?cmd=search'
enabled: false
- id: 14
name: Enter
action: GET
url: 'http://localhost:1880/harmony?cmd=enter'
enabled: false