-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.ino
52 lines (41 loc) · 1.17 KB
/
message.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
#include <ArduinoJson.h>
/*#include <AzureIoTHub.h>
#include <AzureIoTProtocol_MQTT.h>
#include <AzureIoTUtility.h>*/
void readMessage(int messageId, char *payload){
// obtem leitura da umidade
float h = dht.readHumidity();
// obtem leitura da tempetatura em Celsius
float t = dht.readTemperature();
// obtem leitura da tempetatura em Fahrenheit
//float f = dht.readTemperature(true);
// checa se houver alguma falha.
if (isnan(h) || isnan(t))
{
Serial.println("Falha na leitura do sensor DHT!");
return;
}
//Para utilizar StaticJsonBuffer nesse exemplo foi necessário atualizar a biblioteca ArduinoJason.h para versão 5.0
StaticJsonBuffer<MESSAGE_MAX_LEN> jsonBuffer;
JsonObject &root = jsonBuffer.createObject();
root["deviceId"] = DEVICE_ID;
root["messageId"] = messageId;
// NAN não é valido para json, será setado NULL
if (std::isnan(t))
{
root["temperatureC"] = NULL;
}
else
{
root["temperatureC"] = t;
}
if (std::isnan(h))
{
root["humidity"] = NULL;
}
else
{
root["humidity"] = h;
}
root.printTo(payload, MESSAGE_MAX_LEN);
}