-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskFlyport.c
125 lines (73 loc) · 2.05 KB
/
taskFlyport.c
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
#include "taskFlyport.h"
#include "time.h"
time_t now;
struct tm *ts;
struct tm mytime;
DWORD epoch = 0;
// Para configurar GMT deve-se somar
// ou subtrair de acordo com zona GTM
// para Brazil deve-se subtrair por 3
int GMT_hour_adding = -3;
void leSensorTemperatura()
{
return 0;
}
void rtccConfig()
{
epoch = SNTPGetUTCSeconds();
now = (time_t)epoch;
ts = localtime(&now);
ts->tm_hour = (ts->tm_hour + GMT_hour_adding);
if(ts->tm_hour > 24)
{
ts->tm_hour = ts->tm_hour - 24;
}
else if( ts->tm_hour < 0)
{
ts->tm_hour = ts->tm_hour +24;
}
RTCCSet(ts);
//RTCCAlarmConf(ts,REPEAT_INFINITE, EVERY_HALF_SEC, &set_analogOutput);
}
void FlyportTask()
{
float tempCelsius = 0;
//UDP Udpsock = INVALID_SOCKET;
char msg[500];
//int cnt = 0;
BOOL flagErr = FALSE;
int myAdcValue = 0;
// Flyport connects to default network
WFConnect(WF_DEFAULT);
while(WFGetStat() != CONNECTED);
while(!DHCPAssigned);
UARTWrite(1,"Tentando UDP!\n");
int UdpSocket = UDPClientOpen("192.168.43.33","5555");
int UdpRxLength = 0;
while(1){
vTaskDelay(50);
//UARTWrite(1,"Flyport Wi-fi connected UDP...hello world!\r\n");
//LM35 Possui como saida 10mV para cada grau Cº
myAdcValue = ADCVal(2);
//Converte a temperatura em V para Cº
tempCelsius = (myAdcValue *(5/1023))/0.01 ;
sprintf(msg,"Flyport Wi-fi connected UDP temp: %f !\r\n", tempCelsius);
UARTWrite(1,msg);
//Cria mensagem para enviar para o servidor
//sprintf(msg,"%s","Hello server aqui eh o Fly!!");
//Connecta o cliente TCP ao servidor
if(!UdpSocket)
{
UARTWrite(1, "Não foi possivel encontrar o servidor UDP\r\n");
}
if(flagErr)
{
UARTWrite(1,"\r\nTime error... \r\n");
}
//envia a mensagem
UdpRxLength = UDPRxLen(UdpSocket);
UDPWrite(UdpSocket,(BYTE*)msg,strlen(msg));
sprintf(msg,"\r\nLength data: %d\r\n",UdpRxLength);
UARTWrite(1,msg);
}
}