-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathConnectArduino.pas
More file actions
466 lines (412 loc) · 12.9 KB
/
ConnectArduino.pas
File metadata and controls
466 lines (412 loc) · 12.9 KB
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
unit ConnectArduino;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, CPort, Vcl.StdCtrls, Vcl.Buttons,
Vcl.ExtCtrls, Connection, CadSensor, Data.DB, Vcl.Grids, Vcl.DBGrids,
ChartMenu, Vcl.Mask, CadValorKwh;
type
TcpControl = class(TForm)
ComPort1: TComPort;
btnOpenCom: TBitBtn;
btnOpenConnect: TBitBtn;
btnComunicar: TBitBtn;
btnCLose: TBitBtn;
pHeader: TPanel;
Memo: TMemo;
Sensores: TBitBtn;
btnGraficos: TSpeedButton;
RBPorColeta: TRadioButton;
RBDataHora: TRadioButton;
GBRadios: TGroupBox;
GBDataHora: TGroupBox;
edtHoraInicio: TMaskEdit;
edtHoraFim: TMaskEdit;
Label3: TLabel;
Label4: TLabel;
edtDataInicio: TMaskEdit;
edtDataFim: TMaskEdit;
Label5: TLabel;
Label6: TLabel;
TimerAgendado: TTimer;
GBTime: TGroupBox;
Label2: TLabel;
EdtColetas: TMaskEdit;
ComPort2: TComPort;
btnCadValorkwh: TButton;
procedure btnOpenComClick(Sender: TObject);
procedure btnOpenConnectClick(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure btnCLoseClick(Sender: TObject);
procedure btnComunicarClick(Sender: TObject);
procedure SensoresClick(Sender: TObject);
procedure btnGraficosClick(Sender: TObject);
procedure RBPorColetaClick(Sender: TObject);
procedure EdtColetasKeyPress(Sender: TObject; var Key: Char);
procedure EdtSegundosKeyPress(Sender: TObject; var Key: Char);
procedure RBDataHoraClick(Sender: TObject);
procedure TimerAgendadoTimer(Sender: TObject);
procedure btnCadValorkwhClick(Sender: TObject);
procedure btn_VerDadosClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
cpControl: TcpControl;
RxCount1: Integer;
RxCount2: Integer;
RxComPort1: String;
RxComPort2: String;
Estatus: Integer;
Sensor_SensorID: Integer;
implementation
{$R *.dfm}
procedure TcpControl.btnCadValorkwhClick(Sender: TObject);
begin
ValorKWH := TValorKWH.Create(Application);
ValorKWH.ShowModal;
end;
procedure TcpControl.btnCLoseClick(Sender: TObject);
begin
try
ComPort1.Close;
ComPort2.Close;
if not ComPort1.Connected or ComPort2.Connected then
begin
Memo.Text := Memo.Text + 'Conexão com o Arduino finalizada!!!';
btnOpenCom.Visible := true;
btnOpenConnect.Visible := true;
btnComunicar.Visible := false;
GBTime.Visible := false;
btnCLose.Visible := false;
btnGraficos.Visible := false;
btnOpenConnect.Visible := false;
RBPorColeta.Checked := false;
RBDataHora.Checked := false;
GBRadios.Visible := false;
GBTime.Visible := false;
TimerAgendado.Enabled := false;
GBDataHora.Visible := false;
GBTime.Visible := false;
end;
Except
on E: Exception do
Memo.Text := Memo.Text + 'Erro, Detalhes: ' + E.Message;
end;
end;
procedure TcpControl.btnComunicarClick(Sender: TObject);
var
Coletas: Integer;
Data: String;
hora: String;
DataFim, HoraFim: String;
begin
if RBPorColeta.Checked then
begin
if EdtColetas.Text = '' then
begin
showMessage('Você não definiu o numero de coletas');
end
else
begin
Coletas := StrToInt(EdtColetas.Text);
Estatus := 1;
Data := DateTostr(date);
hora := Timetostr(time);
Memo.Lines.Add('Cominucando, aguarde...');
DT_connection.FDcon.Connected := true;
while Estatus = 1 do
begin
// gravar
// pegar o conteudo da serial
if ComPort2.port <> 'COM22' then
begin
ComPort2.ReadStr(RxComPort2, RxCount2);
RxCount2 := ComPort2.InputCount;
if not RxComPort2.IsEmpty then
begin
Sensor_SensorID := 2;
Memo.Lines.Add(RxComPort2);
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
DT_connection.qryColeta.SQL.Add
('Insert into Coleta (Sensor_SensorID, CValor,data,hora) values('
+ IntToStr(Sensor_SensorID) + ',' + QuotedStr(RxComPort2) + ','
+ QuotedStr(Data) + ',' + QuotedStr(hora) + ')');
DT_connection.qryColeta.ExecSQL;
try
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
DT_connection.qryColeta.SQL.Add('Select * from Coleta');
DT_connection.qryColeta.Open;
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
finally
DT_connection.qryColeta.Active := false;
Coletas := Coletas - 1;
if Coletas = 0 then
begin
Estatus := 2;
Memo.Lines.Add('ColetaFinalizada');
end;
end;
end;
end;
if ComPort1.port <> 'COM22' then
begin
ComPort1.ReadStr(RxComPort1, RxCount1);
RxCount1 := ComPort1.InputCount;
if not RxComPort1.IsEmpty then
begin
Sensor_SensorID := 1;
Memo.Lines.Add(RxComPort1);
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
DT_connection.qryColeta.SQL.Add
('Insert into Coleta (Sensor_SensorID, CValor,data,hora) values('
+ IntToStr(Sensor_SensorID) + ',' + QuotedStr(RxComPort1) + ',' +
QuotedStr(Data) + ',' + QuotedStr(hora) + ')');
DT_connection.qryColeta.ExecSQL;
try
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
DT_connection.qryColeta.SQL.Add('Select * from Coleta');
DT_connection.qryColeta.Open;
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
finally
DT_connection.qryColeta.Active := false;
Coletas := Coletas - 1;
if Coletas = 0 then
begin
Estatus := 2;
Memo.Lines.Add('ColetaFinalizada');
end;
end;
end;
end;
end;
end;
end
else
begin
if RBDataHora.Checked then
begin
Data := DateTostr(date);
hora := Timetostr(time);
if edtHoraInicio.Text = ' : : ' then
begin
showMessage('Campo hora inicío vazio, insira uma valor valido');
end;
if edtHoraFim.Text = ' : : ' then
begin
TimerAgendado.Enabled := false;
showMessage('Campo hora fim vazio, insira uma valor valido');
end;
if edtDataInicio.Text = ' / / ' then
begin
TimerAgendado.Enabled := false;
showMessage('Campo data início vazio, insira uma valor valido');
end;
if edtDataFim.Text = ' / / ' then
begin
TimerAgendado.Enabled := false;
showMessage('Campo data fim vazio, insira uma valor valido');
end;
while (edtDataInicio.Text = Data) and (edtHoraInicio.Text <> hora) do
begin
Data := DateTostr(date);
hora := Timetostr(time);
if (edtDataInicio.Text = Data) and (edtHoraInicio.Text = hora) then
begin
Memo.Lines.Add('Agendamento realizado para ' + edtDataInicio.Text +
'As: ' + edtHoraInicio.Text + 'h ' + ' e finalizara no dia: ' +
edtDataFim.Text + ' As: ' + edtHoraFim.Text + 'h ');
TimerAgendado.Enabled := true;
end;
end;
end;
end;
end;
procedure TcpControl.btnOpenComClick(Sender: TObject);
begin
ComPort1.ShowSetupDialog;
btnOpenCom.Enabled;
if Application.MessageBox('Deseja incluir mais um sensor?', 'Sensores', mb_YesNo + mb_iconquestion) = id_yes then
ComPort2.ShowSetupDialog
else
ComPort2.Connected := false;
if btnOpenCom.Enabled = true then
btnOpenConnect.Visible := true;
end;
procedure TcpControl.btnOpenConnectClick(Sender: TObject);
begin
try
// Abre a conexão serial
if ComPort1.port <> 'COM22' then
ComPort1.Open;
if ComPort2.port <> 'COM22' then
ComPort2.Open;
if ComPort1.Connected or ComPort2.Connected then
begin
Memo.Lines.Add('Conectado com sucesso');
btnOpenConnect.Visible := false;
btnOpenCom.Visible := false;
btnComunicar.Visible := true;
btnCLose.Visible := true;
btnGraficos.Visible := true;
GBRadios.Visible := true;
end
else
Memo.Text := Memo.Text + 'Conexão falhou';
Except
on E: Exception do
begin
Memo.Text := Memo.Text +
'Erro ao tentar conectar com a porta COM, Detalhes do erro: ' +
E.Message;
end;
end;
end;
procedure TcpControl.btn_VerDadosClick(Sender: TObject);
begin
if (ComPort1.port = 'COM22') then
begin
ComPort1.ReadStr(RxComPort1, RxCount1);
RxCount1 := ComPort1.InputCount;
Memo.Lines.Add('Porta: Não conectado! ' + ' Dados: Sem dados ');
end;
if (ComPort2.port = 'COM22') then
begin
ComPort2.ReadStr(RxComPort1, RxCount1);
RxCount2 := ComPort1.InputCount;
Memo.Lines.Add('Porta: Não conectado! ' + ' Dados: Sem dados ');
end;
if (ComPort1.port <> 'COM22') then
begin
ComPort1.ReadStr(RxComPort1, RxCount1);
RxCount1 := ComPort1.InputCount;
Memo.Lines.Add('Porta: ' + ComPort1.port + ' Dados: ' + RxComPort1);
end;
if (ComPort2.port <> 'COM22') then
Memo.Lines.Add('Porta: ' + ComPort2.port + ' Dados: ' + RxComPort2);
end;
procedure TcpControl.EdtColetasKeyPress(Sender: TObject; var Key: Char);
begin
If not(Key in ['0' .. '9', #08]) then
Key := #0;
end;
procedure TcpControl.EdtSegundosKeyPress(Sender: TObject; var Key: Char);
begin
If not(Key in ['0' .. '9', #08]) then
Key := #0;
end;
procedure TcpControl.FormClose(Sender: TObject; var Action: TCloseAction);
begin
ComPort1.Close;
ComPort2.Close;
end;
procedure TcpControl.RBDataHoraClick(Sender: TObject);
begin
if RBDataHora.Checked then
begin
GBTime.Visible := false;
GBDataHora.Visible := true;
end;
end;
procedure TcpControl.RBPorColetaClick(Sender: TObject);
begin
if RBPorColeta.Checked then
begin
GBTime.Visible := true;
showMessage('Defina o numero de coletas');
GBDataHora.Visible := false;
end;
end;
procedure TcpControl.SensoresClick(Sender: TObject);
Var
Sensor: TCSensor;
begin
Sensor := TCSensor.Create(Application);
Sensor.ShowModal;
end;
procedure TcpControl.TimerAgendadoTimer(Sender: TObject);
var
hora, Data: string;
begin
Data := DateTostr(date);
hora := Timetostr(time);
// ler os dados da porta
if ComPort1.port <> 'COM22' then
begin
ComPort1.ReadStr(RxComPort1, RxCount1);
RxCount1 := ComPort1.InputCount;
end;
if ComPort2.port <> 'COM22' then
begin
ComPort2.ReadStr(RxComPort2, RxCount2);
RxCount2 := ComPort2.InputCount;
end;
// tratamentos para gravar os dados no bd
if not RxComPort1.IsEmpty then
begin
Sensor_SensorID := 1;
Memo.Lines.Add(RxComPort1 + 'Setor1');
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
DT_connection.qryColeta.SQL.Add
('Insert into Coleta (Sensor_SensorID, CValor,data,hora) values(' +
IntToStr(Sensor_SensorID) + ',' + QuotedStr(RxComPort1) + ',' +
QuotedStr(Data) + ',' + QuotedStr(hora) + ')');
DT_connection.qryColeta.ExecSQL;
try
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
DT_connection.qryColeta.SQL.Add('Select * from Coleta');
DT_connection.qryColeta.Open;
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
finally
DT_connection.qryColeta.Active := false;
end;
end;
if not RxComPort2.IsEmpty then
begin
Sensor_SensorID := 2;
Memo.Lines.Add(RxComPort2 + ' Setor2');
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
DT_connection.qryColeta.SQL.Add
('Insert into Coleta (Sensor_SensorID, CValor,data,hora) values(' +
IntToStr(Sensor_SensorID) + ',' + QuotedStr(RxComPort2) + ',' +
QuotedStr(Data) + ',' + QuotedStr(hora) + ')');
DT_connection.qryColeta.ExecSQL;
try
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
DT_connection.qryColeta.SQL.Add('Select * from Coleta');
DT_connection.qryColeta.Open;
DT_connection.qryColeta.Close;
DT_connection.qryColeta.SQL.Clear;
finally
DT_connection.qryColeta.Active := false;
end;
end;
if (edtDataFim.Text = Data) and (edtHoraFim.Text = hora) then
begin
Memo.Lines.Add('Agendamento por data finalizado!');
TimerAgendado.Enabled := false;
end;
end;
procedure TcpControl.btnGraficosClick(Sender: TObject);
Var
Chart: TChart;
begin
Chart := TChart.Create(Application);
Chart.ShowModal;
DT_connection.FDcon.Connected := true;
end;
end.