forked from letscontrolit/ESPEasyPluginPlayground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_P159_Pushbutton.ino
300 lines (267 loc) · 12.3 KB
/
_P159_Pushbutton.ino
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/*##########################################################################################
############################### Plugin 159: Pushbutton ###################################
##########################################################################################
Features :
Multiple pushbutton in one plugin, with ShortPress and LongPress detection,
can be detected by rule events as buttonname#Shortpress and butonname#Longpress=button_down_time_in_ms
------------------------------------------------------------------------------------------
Copyleft Nagy Sándor 2018 - https://bitekmindenhol.blog.hu/
------------------------------------------------------------------------------------------
*/
#ifdef PLUGIN_BUILD_TESTING
#define PLUGIN_159
#define PLUGIN_ID_159 159
#define PLUGIN_NAME_159 "Switch input - Pushbutton"
#define PLUGIN_VALUENAME1_159 "I1"
#define PLUGIN_VALUENAME2_159 ""
#define PLUGIN_VALUENAME3_159 ""
#define PLUGIN_VALUENAME4_159 ""
#define P159_MaxInstances 3
boolean Plugin_159_init = false;
static bool Plugin_159_statechanged[P159_MaxInstances][4];
void ICACHE_RAM_ATTR p159_isr_1() { Plugin_159_statechanged[0][0] = true; }
void ICACHE_RAM_ATTR p159_isr_2() { Plugin_159_statechanged[0][1] = true; }
void ICACHE_RAM_ATTR p159_isr_3() { Plugin_159_statechanged[0][2] = true; }
void ICACHE_RAM_ATTR p159_isr_4() { Plugin_159_statechanged[0][3] = true; }
void ICACHE_RAM_ATTR p159_isr_5() { Plugin_159_statechanged[1][0] = true; }
void ICACHE_RAM_ATTR p159_isr_6() { Plugin_159_statechanged[1][1] = true; }
void ICACHE_RAM_ATTR p159_isr_7() { Plugin_159_statechanged[1][2] = true; }
void ICACHE_RAM_ATTR p159_isr_8() { Plugin_159_statechanged[1][3] = true; }
void ICACHE_RAM_ATTR p159_isr_9() { Plugin_159_statechanged[2][0] = true; }
void ICACHE_RAM_ATTR p159_isr_10(){ Plugin_159_statechanged[2][1] = true; }
void ICACHE_RAM_ATTR p159_isr_11(){ Plugin_159_statechanged[2][2] = true; }
void ICACHE_RAM_ATTR p159_isr_12(){ Plugin_159_statechanged[2][3] = true; }
boolean Plugin_159(byte function, struct EventStruct *event, String& string)
{
boolean success = false;
static byte Plugin_159_pinstate[P159_MaxInstances][4];
static unsigned long Plugin_159_buttons[P159_MaxInstances][4];
void (*Plugin_159_ISR[P159_MaxInstances][4])();
switch (function)
{
case PLUGIN_DEVICE_ADD:
{
Device[++deviceCount].Number = PLUGIN_ID_159;
Device[deviceCount].Type = DEVICE_TYPE_TRIPLE;
Device[deviceCount].VType = SENSOR_TYPE_SWITCH;
Device[deviceCount].Ports = 0;
Device[deviceCount].PullUpOption = true;
Device[deviceCount].InverseLogicOption = true;
Device[deviceCount].FormulaOption = true;
Device[deviceCount].ValueCount = 4;
Device[deviceCount].SendDataOption = true;
Device[deviceCount].TimerOption = true;
Device[deviceCount].TimerOptional = true;
Device[deviceCount].GlobalSyncOption = true;
break;
}
case PLUGIN_GET_DEVICENAME:
{
string = F(PLUGIN_NAME_159);
break;
}
case PLUGIN_GET_DEVICEVALUENAMES:
{
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[0], PSTR(PLUGIN_VALUENAME1_159));
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[1], PSTR(PLUGIN_VALUENAME2_159));
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[2], PSTR(PLUGIN_VALUENAME3_159));
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[3], PSTR(PLUGIN_VALUENAME4_159));
break;
}
case PLUGIN_WEBFORM_LOAD:
{
//addFormPinSelect(F("Relay 1"), F("taskdevicepin1"), Settings.TaskDevicePin1[event->TaskIndex]);
//addFormPinSelect(F("Relay 2"), F("taskdevicepin2"), Settings.TaskDevicePin2[event->TaskIndex]);
//addFormPinSelect(F("Relay 3"), F("taskdevicepin3"), Settings.TaskDevicePin3[event->TaskIndex]);
LoadTaskSettings(event->TaskIndex);
addFormPinSelect(F("4th GPIO"), F("taskdevicepin4"), Settings.TaskDevicePluginConfig[event->TaskIndex][0]);
int choice = Settings.TaskDevicePluginConfig[event->TaskIndex][1];
String buttonOptions[6];
buttonOptions[0] = F("0.8s");
buttonOptions[1] = F("1s");
buttonOptions[2] = F("1.5s");
buttonOptions[3] = F("2s");
buttonOptions[4] = F("3s");
buttonOptions[5] = F("4s");
int buttonoptionValues[6] = { 800, 1000, 1500, 2000, 3000, 4000 };
addFormSelector(F("Longpress time"), F("plugin_159_lpt"), 6, buttonOptions, buttonoptionValues, choice);
addFormNote(F("You can specify 4 normal input or pull-up input pin's above. Default push button active LOW, else choose inverted."));
byte baseaddr = 0;
if (event->TaskIndex > 0) {
for (byte TaskIndex = 0; TaskIndex < event->TaskIndex; TaskIndex++)
{
if (Settings.TaskDeviceNumber[TaskIndex] == PLUGIN_ID_159) {
baseaddr = baseaddr + 1;
}
}
}
Settings.TaskDevicePluginConfig[event->TaskIndex][2] = baseaddr;
success = true;
break;
}
case PLUGIN_WEBFORM_SAVE:
{
Settings.TaskDevicePluginConfig[event->TaskIndex][0] = getFormItemInt(F("taskdevicepin4"));
Settings.TaskDevicePluginConfig[event->TaskIndex][1] = getFormItemInt(F("plugin_159_lpt"));
success = true;
break;
}
case PLUGIN_INIT:
{
LoadTaskSettings(event->TaskIndex);
byte baseaddr = 0;
if (event->TaskIndex > 0) {
for (byte TaskIndex = 0; TaskIndex < event->TaskIndex; TaskIndex++)
{
if (Settings.TaskDeviceNumber[TaskIndex] == PLUGIN_ID_159) {
baseaddr = baseaddr + 1;
}
}
}
Settings.TaskDevicePluginConfig[event->TaskIndex][2] = baseaddr;
switch (baseaddr)
{
case 0:
Plugin_159_ISR[0][0] = p159_isr_1;
Plugin_159_ISR[0][1] = p159_isr_2;
Plugin_159_ISR[0][2] = p159_isr_3;
Plugin_159_ISR[0][3] = p159_isr_4;
break;
case 1:
Plugin_159_ISR[1][0] = p159_isr_5;
Plugin_159_ISR[1][1] = p159_isr_6;
Plugin_159_ISR[1][2] = p159_isr_7;
Plugin_159_ISR[1][3] = p159_isr_8;
break;
case 2:
Plugin_159_ISR[2][0] = p159_isr_9;
Plugin_159_ISR[2][1] = p159_isr_10;
Plugin_159_ISR[2][2] = p159_isr_11;
Plugin_159_ISR[2][3] = p159_isr_12;
break;
}
if (Settings.TaskDevicePin1[event->TaskIndex] != -1)
{
if (Settings.TaskDevicePin1PullUp[event->TaskIndex]) {
pinMode(Settings.TaskDevicePin1[event->TaskIndex], INPUT_PULLUP);
} else {
pinMode(Settings.TaskDevicePin1[event->TaskIndex], INPUT);
}
attachInterrupt(digitalPinToInterrupt(Settings.TaskDevicePin1[event->TaskIndex]), Plugin_159_ISR[baseaddr][0], CHANGE);
Plugin_159_pinstate[baseaddr][0] = !Settings.TaskDevicePin1Inversed[event->TaskIndex];
}
if (Settings.TaskDevicePin2[event->TaskIndex] != -1)
{
if (Settings.TaskDevicePin1PullUp[event->TaskIndex]) {
pinMode(Settings.TaskDevicePin2[event->TaskIndex], INPUT_PULLUP);
} else {
pinMode(Settings.TaskDevicePin2[event->TaskIndex], INPUT);
}
attachInterrupt(digitalPinToInterrupt(Settings.TaskDevicePin2[event->TaskIndex]), Plugin_159_ISR[baseaddr][1], CHANGE);
Plugin_159_pinstate[baseaddr][1] = !Settings.TaskDevicePin1Inversed[event->TaskIndex];
event->sensorType = SENSOR_TYPE_DUAL;
}
if (Settings.TaskDevicePin3[event->TaskIndex] != -1)
{
if (Settings.TaskDevicePin1PullUp[event->TaskIndex]) {
pinMode(Settings.TaskDevicePin3[event->TaskIndex], INPUT_PULLUP);
} else {
pinMode(Settings.TaskDevicePin3[event->TaskIndex], INPUT);
}
attachInterrupt(digitalPinToInterrupt(Settings.TaskDevicePin3[event->TaskIndex]), Plugin_159_ISR[baseaddr][2], CHANGE);
Plugin_159_pinstate[baseaddr][2] = !Settings.TaskDevicePin1Inversed[event->TaskIndex];
event->sensorType = SENSOR_TYPE_TRIPLE;
}
if (Settings.TaskDevicePluginConfig[event->TaskIndex][0] != -1)
{
if (Settings.TaskDevicePin1PullUp[event->TaskIndex]) {
pinMode(Settings.TaskDevicePluginConfig[event->TaskIndex][0], INPUT_PULLUP);
} else {
pinMode(Settings.TaskDevicePluginConfig[event->TaskIndex][0], INPUT);
}
attachInterrupt(digitalPinToInterrupt(Settings.TaskDevicePluginConfig[event->TaskIndex][0]), Plugin_159_ISR[baseaddr][3], CHANGE);
Plugin_159_pinstate[baseaddr][3] = !Settings.TaskDevicePin1Inversed[event->TaskIndex];
event->sensorType = SENSOR_TYPE_QUAD;
}
UserVar[event->BaseVarIndex] = 0;
UserVar[event->BaseVarIndex + 1] = 0;
UserVar[event->BaseVarIndex + 2] = 0;
UserVar[event->BaseVarIndex + 3] = 0;
String logs = String(F("PB : Task:")) + String(event->TaskIndex) + F(" instance ") + String(Settings.TaskDevicePluginConfig[event->TaskIndex][2]);
addLog(LOG_LEVEL_INFO, logs);
if (Settings.TaskDevicePluginConfig[event->TaskIndex][2] < P159_MaxInstances) {
success = true;
Plugin_159_init = true;
} else {
success = false;
logs = String(F("PB : Task init failed"));
addLog(LOG_LEVEL_INFO, logs);
}
break;
}
case PLUGIN_TEN_PER_SECOND:
{
unsigned long current_time = 0;
byte state = 0;
boolean changed = false;
String logs = F("");
if (Plugin_159_init) {
for (byte x = 0; x < 4; x++) {
if (Plugin_159_statechanged[Settings.TaskDevicePluginConfig[event->TaskIndex][2]][x]) {
byte buttonpin = -1;
switch (x)
{
case 0: buttonpin = Settings.TaskDevicePin1[event->TaskIndex];
break;
case 1: buttonpin = Settings.TaskDevicePin2[event->TaskIndex];
break;
case 2: buttonpin = Settings.TaskDevicePin3[event->TaskIndex];
break;
case 3: buttonpin = Settings.TaskDevicePluginConfig[event->TaskIndex][0];
break;
}
if (buttonpin == -1) break;
state = digitalRead(buttonpin);
if (Plugin_159_pinstate[Settings.TaskDevicePluginConfig[event->TaskIndex][2]][x] != state) { //status changed
if (current_time == 0) current_time = millis();
if (state == Settings.TaskDevicePin1Inversed[event->TaskIndex]) // button pushed
{
Plugin_159_buttons[Settings.TaskDevicePluginConfig[event->TaskIndex][2]][x] = current_time; // push started at
} else { // button released
LoadTaskSettings(event->TaskIndex);
current_time = (current_time - Plugin_159_buttons[Settings.TaskDevicePluginConfig[event->TaskIndex][2]][x]); // push duration
if (current_time < Settings.TaskDevicePluginConfig[event->TaskIndex][1]) { // short push
UserVar[event->BaseVarIndex+x] = !UserVar[event->BaseVarIndex+x];
changed = true;
String events = String(ExtraTaskSettings.TaskDeviceValueNames[x]);
events += F("#Shortpress");
rulesProcessing(events);
} else { // long push
String events = String(ExtraTaskSettings.TaskDeviceValueNames[x]);
events += F("#Longpress=");
events += String(current_time);
rulesProcessing(events);
}
}
Plugin_159_pinstate[Settings.TaskDevicePluginConfig[event->TaskIndex][2]][x] = state;
}
Plugin_159_statechanged[Settings.TaskDevicePluginConfig[event->TaskIndex][2]][x] = false;
}
}
if (changed)
{
sendData(event);
}
success = true;
break;
}
}
case PLUGIN_READ:
{
success = true;
break;
}
}
return success;
}
#endif