-
Notifications
You must be signed in to change notification settings - Fork 0
/
Transmission.ino
executable file
·221 lines (182 loc) · 7.38 KB
/
Transmission.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
/**********************************************************************************************\
* verzendt een event en geeft dit tevens weer op SERIAL
* Als UseRawSignal=true, dan wordt er geen signaal opgebouwd, maar de actuele content van de
* RawSignal buffer gebruikt. In dit geval werkt de WaitFree niet.
\*********************************************************************************************/
boolean SendEvent(struct NodoEventStruct *ES, boolean UseRawSignal, boolean Display, boolean WaitForFree)
{
ES->Direction=VALUE_DIRECTION_OUTPUT;
byte Port=ES->Port;
if(Settings.WaitFreeNodo==VALUE_ON)
{
if(BusyNodo!=0) // Als een Nodo heeft aangegeven busy te zijn, dan wachten.
{
if(!Wait(30,true,0,false))
{
for(byte x=1;x<=31;x++)
if(BusyNodo&(1<<x))
RaiseMessage(MESSAGE_BUSY_TIMEOUT,x);
BusyNodo=0;
}
}
if(ES->Type!=ESP_TYPE_SYSTEM && ES->Command!=SYSTEM_COMMAND_CONFIRMED)
{
ES->Flags|=TRANSMISSION_BUSY | TRANSMISSION_QUEUE | TRANSMISSION_QUEUE_NEXT;
RequestForConfirm=true;
}
}
// loop de plugins langs voor eventuele afhandeling van dit event.
if(!UseRawSignal) PluginCall(PLUGIN_EVENT_OUT, ES,0);
// Stuur afhankelijk van de instellingen het event door naar I2C, RF, IR. Eerst wordt het event geprint,daarna een korte wachttijd om
// te zorgen dat er een minimale wachttijd tussen de signlen zit. Tot slot wordt het signaal verzonden.
if(WaitForFree)
if(Port==VALUE_SOURCE_RF || Port==VALUE_SOURCE_IR ||(Settings.TransmitRF==VALUE_ON && Port==VALUE_ALL))
WaitFree();
if(!UseRawSignal)
ESP_2_RawSignal(ES);
// Respecteer een minimale tijd tussen verzenden van events. Wachten alvorens event te verzenden.
while(millis()<HoldTransmission);
// Verstuur signaal als IR
if(Settings.TransmitIR==VALUE_ON && (Port==VALUE_SOURCE_IR || Port==VALUE_ALL))
{
ES->Port=VALUE_SOURCE_IR;
if(Display)PrintEvent(ES,VALUE_ALL);
RawSendIR();
}
// Verstuur signaal als RF
if(Settings.TransmitRF==VALUE_ON && (Port==VALUE_SOURCE_RF || Port==VALUE_ALL))
{
ES->Port=VALUE_SOURCE_RF;
if(Display)PrintEvent(ES,VALUE_ALL);
RawSendRF();
}
HoldTransmission=DELAY_BETWEEN_TRANSMISSIONS+millis();
}
/*********************************************************************************************\
* Deze funktie berekend de CRC-8 checksum uit van een NodoEventStruct.
* Als de Checksum al correct gevuld was wordt er een true teruggegeven. Was dit niet het geval
* dan wordt NodoEventStruct.Checksum gevuld met de juiste waarde en een false teruggegeven.
\*********************************************************************************************/
boolean Checksum(NodoEventStruct *event)
{
byte OldChecksum=event->Checksum;
byte NewChecksum=ESP_VERSION_MAJOR; // Verwerk versie in checksum om communicatie tussen verschillende versies te voorkomen
event->Checksum=0; // anders levert de beginsituatie een andere checksum op
for(int x=0;x<sizeof(struct NodoEventStruct);x++)
NewChecksum^(*((byte*)event+x));
event->Checksum=NewChecksum;
return(OldChecksum==NewChecksum);
}
/**********************************************************************************************\
* Deze functie wacht totdat de 433 en de IR band vrij zijn of er een timeout heeft plaats gevonden.
* Er wordt gemeten hoeveel geldige pulsen ( > MIN_PULSE_LENGTH) er zich voordoen binnen een
* vast tijdsframe. Als er spikes zijn (=ruis) of er zijn geen pulsen, dan wordt teruggekeerd.
\*********************************************************************************************/
void WaitFree(void)
{
unsigned long TimeOutTimer=millis()+WAIT_FREE_RX_TIMEOUT; // tijd waarna de routine wordt afgebroken in milliseconden
unsigned long WindowTimer;
int x,y;
Led(BLUE);
do
{
WindowTimer=millis()+250;
x=0;
while(WindowTimer>millis())
{
if((*portInputRegister(IRport)&IRbit)==0) // Puls op RF?
{
x++;
if(pulseIn(PIN_IR_RX_DATA,LOW) < MIN_PULSE_LENGTH && x>0) // Was het een spike?
x=0;
}
if((*portInputRegister(RFport)&RFbit)==RFbit) // Pulse op IR
{
y++;
if(pulseIn(PIN_RF_RX_DATA,HIGH) < MIN_PULSE_LENGTH && y>0) // Was het een spike?
y=0;
}
}
}while(TimeOutTimer>millis() && (x>0 || y>0)); // Zolang nog pulsen op RF of IR en nog geen timeout
Led(RED);
}
boolean Domoticz_getData(int idx, float *data)
{
boolean success=false;
char host[20];
sprintf(host,"%u.%u.%u.%u",Settings.Server_IP[0],Settings.Server_IP[1],Settings.Server_IP[2],Settings.Server_IP[3]);
Serial.print("connecting to ");
Serial.println(host);
// Use WiFiClient class to create TCP connections
WiFiClient client;
if (!client.connect(host, Settings.ServerPort)) {
Serial.println("connection failed");
return false;
}
// We now create a URI for the request
String url = "/json.htm?type=devices&rid=";
url += idx;
Serial.print("Requesting URL: ");
Serial.println(url);
// This will send the request to the server
client.print(String("GET ") + url + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
"Connection: close\r\n\r\n");
unsigned long timer=millis()+200;
while(!client.available() && millis()<timer) {}
// Read all the lines of the reply from server and print them to Serial
while(client.available()){
String line = client.readStringUntil('\n');
if (line.substring(10,14) == "Data")
{
String strValue=line.substring(19);
byte pos=strValue.indexOf(' ');
strValue=strValue.substring(0,pos);
strValue.trim();
float value = strValue.toFloat();
*data=value;
Serial.println("Succes!");
success=true;
}
}
Serial.println("closing connection");
return success;
}
boolean Domoticz_sendData(int idx, float value)
{
boolean success=false;
char host[20];
sprintf(host,"%u.%u.%u.%u",Settings.Server_IP[0],Settings.Server_IP[1],Settings.Server_IP[2],Settings.Server_IP[3]);
Serial.print("connecting to ");
Serial.println(host);
// Use WiFiClient class to create TCP connections
WiFiClient client;
if (!client.connect(host, Settings.ServerPort)) {
Serial.println("connection failed");
return false;
}
// We now create a URI for the request
String url = "/json.htm?type=command¶m=udevice&idx=";
url += idx;
url += "&svalue=";
url += value;
Serial.print("Requesting URL: ");
Serial.println(url);
// This will send the request to the server
client.print(String("GET ") + url + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
"Connection: close\r\n\r\n");
unsigned long timer=millis()+200;
while(!client.available() && millis()<timer) {}
// Read all the lines of the reply from server and print them to Serial
while(client.available()){
String line = client.readStringUntil('\n');
if (line.substring(0,15) == "HTTP/1.0 200 OK")
{
Serial.println("Succes!");
success=true;
}
}
Serial.println("closing connection");
return success;
}