forked from letscontrolit/ESPEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathespeasy.py
262 lines (224 loc) · 8.06 KB
/
espeasy.py
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
### High level ESPEasy config.
### Things like configging a controller or device via http
### I've created it in way that you can just copy/past form parameters from Chromium's header view
from espcore import *
class EspEasy:
def __init__(self, node):
self._node=node
def control(self, **kwargs):
self._node.log.info("Control "+str(kwargs))
self._node.http_post(
page="control",
params="""
cmd:{cmd}
""".format(**kwargs),
)
def post_controller(self, index, data):
"""post controller form to espeasy"""
self._node.http_post(
twice=True, # needed for controllers and devices because of the way its implemented
page="controllers",
params="""
index:{index}
""".format(index=index),
data=data
)
def controller_domoticz_mqtt(self, index=1, controllerip=config.mqtt_broker, controllerport=config.mqtt_port, **kwargs):
"""config controller to use domoticz via mqtt"""
self._node.log.info("Configuring controller domoticz mqtt "+str(kwargs))
self.post_controller(index,"""
protocol:2
usedns:0
controllerip:{controllerip}
controllerport:{controllerport}
controlleruser:
controllerpassword:
controllersubscribe:domoticz/out
controllerpublish:domoticz/in
controllerenabled:on
""".format(controllerip=controllerip, controllerport=controllerport, **kwargs)
)
def controller_domoticz_http(self, index=1, controllerip=config.test_server, controllerport=config.http_port, **kwargs):
"""config controller to use domoticz via http"""
self._node.log.info("Configuring controller domoticz http "+str(kwargs))
self.post_controller(index,"""
protocol:1
usedns:0
controllerip:{controllerip}
controllerport:{controllerport}
controlleruser:
controllerpassword:
controllerenabled:on
""".format(controllerip=controllerip, controllerport=controllerport, **kwargs)
)
def controller_nodo(self, index=1,controllerip=config.test_server, controllerport=config.linebased_port, **kwargs):
"""config controller to use nodo"""
self._node.log.info("Configuring controller nodo "+str(kwargs))
self.post_controller(index,"""
protocol:3
usedns:0
controllerip:{controllerip}
controllerport:{controllerport}
controllerpassword:
controllerenabled:on
""".format(controllerip=controllerip, controllerport=controllerport,**kwargs)
)
def controller_thingspeak(self, index=1, **kwargs):
self._node.log.info("Configuring controller thingspeak "+str(kwargs))
self.post_controller(index,"""
protocol:4
usedns:0
controllerip:{controllerip}
controllerport:{controllerport}
controlleruser:
controllerpassword:thingspeakkey1234
controllerenabled:on
""".format(**kwargs)
)
def post_device(self, index, data):
"""post a device form to espeasy"""
self._node.log.info("Configuring tasknumber {index}".format(index=index))
self._node.http_post(
twice=True, # needed for controllers and devices because of the way its implemented
page="devices",
params="""
index:{index}
""".format(index=index),
data=data
)
# def device_p001(self, index, **kwargs):
# self._node.log.info("Config device plugin p001 "+str(kwargs))
#
# self.post_device(index, """
# TDNUM:1
# TDN:
# TDE:on
# taskdevicepin1:{taskdevicepin1}
# plugin_001_type:{plugin_001_type}
# plugin_001_button:{plugin_001_button}
# TDSD1:on
# TDID1:{TDID1}
# TDT:0
# TDVN1:Switch
# edit:1
# """.format(**kwargs)
# )
# def device_p004(self, **kwargs):
# self._node.log.info("Config ds18b20 with "+str(kwargs))
#
# self._node.http_post(
# twice=True, # needed for controllers and devices because of the way its implemented
# page="devices",
#
# params="""
# index:{index}
# """.format(**kwargs),
#
# data="""
# TDNUM:4
# TDN:temp
# TDE:on
# taskdevicepin1:{taskdevicepin1}
# plugin_004_dev:{plugin_004_dev}
# plugin_004_res:{plugin_004_res}
# TDT:5
# TDVN1:Temperature
# TDF1:
# TDVD1:2
# TDSD1:on
# TDID1:{TDID1}
# edit:1
# page:1
# """.format(**kwargs)
# )
# def device_p005(self, **kwargs):
# self._node.log.info("Config DHT22 on D3 with "+str(kwargs))
#
# self._node.http_post(
# twice=True, # needed for controllers and devices because of the way its implemented
# page="devices",
#
# params="""
# index:{index}
# """.format(**kwargs),
#
# data="""
# TDNUM:5
# TDN:
# TDE:on
# taskdevicepin1:0
# plugin_005_dhttype:22
# TDSD1:on
# TDID1:{TDID1}
# TDT:5
# TDVN1:Temperature
# TDF1:
# TDVD1:2
# TDVN2:Humidity
# TDF2:
# TDVD2:2
# edit:1
# page:1
# """.format(**kwargs)
# )
def device_p033(self, index, **kwargs):
self._node.log.info("Config dummy device "+str(kwargs))
self.post_device(index=index,
data="""
TDNUM:33
TDN:
TDE:on
plugin_033_sensortype:{plugin_033_sensortype}
TDSD1:on
TDID1:{TDID1}
TDT:1
TDVN1:first
TDVD1:2
TDVN2:second
TDVD2:2
TDVN3:third
TDVD3:2
TDVN4:fourth
TDVD4:2
edit:1
page:1
""".format(**kwargs)
)
# def device_p036(self, **kwargs):
# self._node.log.info("Config framed oled p036 with "+str(kwargs))
#
# self._node.http_post(
# twice=True, # needed for controllers and devices because of the way its implemented
# page="devices",
#
# params="""
# index:{index}
# """.format(**kwargs),
#
# data="""
# TDNUM:36
# TDN:
# TDE:on
# plugin_036_adr:60
# plugin_036_rotate:1
# plugin_036_nlines:1
# plugin_036_scroll:1
# Plugin_036_template1:espeasy
# Plugin_036_template2:test
# Plugin_036_template3:suite
# Plugin_036_template4:test1
# Plugin_036_template5:test2
# Plugin_036_template6:test3
# Plugin_036_template7:test4
# Plugin_036_template8:test5
# Plugin_036_template9:test6
# Plugin_036_template10:test7
# Plugin_036_template11:test8
# Plugin_036_template12:test9
# taskdevicepin3:-1
# plugin_036_timer:0
# TDT:1
# edit:1
# page:1
# """.format(**kwargs)
# )