forked from letscontrolit/ESPEasyPluginPlayground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_P144_RC-Switch-TX.ino
204 lines (173 loc) · 6.64 KB
/
_P144_RC-Switch-TX.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
//#######################################################################################################
//#################################### Plugin 144: RC-Switch TX #########################################
//#######################################################################################################
// written by Jochen Krapf ([email protected])
// List of commands:
// (1) RC,<param>
// (2) RC,<param>,<param>,<param>
// List of RC params:
// (a) SEND=<binary_code>
// Send binary code with any length ("RC,SEND=000000000001010100010001")
// (b) SEND=<tristate_code>
// Send tristate code with any length ("RC,SEND=00000FFF0F0F")
// (c) SENDDEC=<decimal_code>
// Send 24 bit decimal code ("RC,SENDDEC=5393")
// (d) ON=<binary_code>
// Send binary code for simple 10 DIP switch devices ("RC,ON=1010100010")
// (e) ON=<1..4><1..4>
// Send switch position for simple 2 rotary switch devices ("RC,ON=42")
// (f) ON=<a..f><1..4><1..4>
// Send switch position for Intertechno devices ("RC,ON=a42")
// (f) OFF= as ON...
// (g) PROTOCOL=<number>
// Set protocoln for devices ("RC,PROTOCOL=2") default=1
// (h) PULSE=<number>
// Set pulse length ("RC,PULSE=320") default=320
// (i) REPEAT=<number>
// Set number of transmission repeats ("RC,REPEAT=15") default=?
//
// Combinations:
// e.g. "RC,PROTOCOL=2,PULSE=320,REPEAT=15,SEND=000000000001010100010001"
#include <RCSwitch.h> //https://github.com/sui77/rc-switch.git
static RCSwitch Plugin_144_RC = RCSwitch();
#define PLUGIN_144
#define PLUGIN_ID_144 144
#define PLUGIN_NAME_144 "RC-Switch TX"
boolean Plugin_144(byte function, struct EventStruct *event, String& string)
{
boolean success = false;
switch (function)
{
case PLUGIN_DEVICE_ADD:
{
Device[++deviceCount].Number = PLUGIN_ID_144;
Device[deviceCount].Type = DEVICE_TYPE_SINGLE;
Device[deviceCount].Ports = 0;
Device[deviceCount].VType = Sensor_VType::SENSOR_TYPE_SWITCH;
Device[deviceCount].PullUpOption = false;
Device[deviceCount].InverseLogicOption = false;
Device[deviceCount].FormulaOption = false;
Device[deviceCount].ValueCount = 0;
Device[deviceCount].SendDataOption = false;
Device[deviceCount].TimerOption = false;
Device[deviceCount].TimerOptional = false;
Device[deviceCount].GlobalSyncOption = true;
break;
}
case PLUGIN_GET_DEVICENAME:
{
string = F(PLUGIN_NAME_144);
break;
}
case PLUGIN_WEBFORM_LOAD:
{
success = true;
break;
}
case PLUGIN_WEBFORM_SAVE:
{
success = true;
break;
}
case PLUGIN_INIT:
{
int pin = Settings.TaskDevicePin1[event->TaskIndex];
if (pin >= 0)
{
String log = F("RC-Sw: Pin ");
log += pin;
log += F(" ");
Plugin_144_RC.enableTransmit(pin);
addLog(LOG_LEVEL_INFO, log);
}
if (Settings.TaskDevicePin1[event->TaskIndex] >= 0)
pinMode(Settings.TaskDevicePin1[event->TaskIndex], OUTPUT);
if (Settings.TaskDevicePin2[event->TaskIndex] >= 0)
pinMode(Settings.TaskDevicePin2[event->TaskIndex], OUTPUT);
if (Settings.TaskDevicePin3[event->TaskIndex] >= 0)
pinMode(Settings.TaskDevicePin3[event->TaskIndex], OUTPUT);
for (byte i=0; i<3; i++)
if (Settings.TaskDevicePin[i][event->TaskIndex] >= 0)
pinMode(Settings.TaskDevicePin[i][event->TaskIndex], OUTPUT);
success = true;
break;
}
case PLUGIN_WRITE:
{
String command = parseString(string, 1);
if (command == F("rc"))
{
String param;
byte paramIdx = 2;
string.replace(" ", " ");
string.replace(" =", "=");
string.replace("= ", "=");
param = parseString(string, paramIdx++);
while (param.length())
{
addLog(LOG_LEVEL_DEBUG_MORE, param);
int index = param.indexOf('=');
if (index > 0)
{
String paramKey = param.substring(0, index);
String paramVal = param.substring(index+1);
paramKey.toUpperCase();
addLog(LOG_LEVEL_DEBUG_MORE, paramKey);
addLog(LOG_LEVEL_DEBUG_MORE, paramVal);
if (paramKey == F("SEND"))
{
if (paramVal.indexOf("F") >= 0)
Plugin_144_RC.sendTriState(&(paramVal[0]));
else
Plugin_144_RC.send(&(paramVal[0]));
}
if (paramKey == F("SENDDEC"))
{
Plugin_144_RC.send(paramVal.toInt(), 24);
}
if (paramKey == F("ON"))
{
if (paramVal.length()==10) //simple 10 DIP switch
Plugin_144_RC.switchOn(&(paramVal.substring(0, 5)[0]), &(paramVal.substring(5)[0]));
else if (paramVal.length()==2) //2x rotary switch 1..4
Plugin_144_RC.switchOn(paramVal[0]-'0', paramVal[1]-'0');
else if (paramVal.length()==3) //Intertechno outlets
Plugin_144_RC.switchOn(paramVal[0], paramVal[1]-'0', paramVal[2]-'0');
}
if (paramKey == F("OFF"))
{
if (paramVal.length()==10) //simple 10 DIP switch
Plugin_144_RC.switchOff(&(paramVal.substring(0, 5)[0]), &(paramVal.substring(5)[0]));
else if (paramVal.length()==2) //2x rotary switch 1..4
Plugin_144_RC.switchOff(paramVal[0]-'0', paramVal[1]-'0');
else if (paramVal.length()==3) //Intertechno outlets
Plugin_144_RC.switchOn(paramVal[0], paramVal[1]-'0', paramVal[2]-'0');
}
if (paramKey == F("PROTOCOL"))
{
Plugin_144_RC.setProtocol(paramVal.toInt());
}
if (paramKey == F("PULSE"))
{
Plugin_144_RC.setPulseLength(paramVal.toInt());
}
if (paramKey == F("REPEAT"))
{
Plugin_144_RC.setRepeatTransmit(paramVal.toInt());
}
}
param = parseString(string, paramIdx++);
}
success = true;
}
break;
}
case PLUGIN_READ:
{
//no values
success = true;
break;
}
}
return success;
}