1
0
mirror of https://github.com/daniviga/bite.git synced 2024-11-23 13:26:14 +01:00
bite/arduino/tempLightSensor/tempLightSensor.ino

108 lines
2.7 KiB
Arduino
Raw Normal View History

2020-06-02 22:38:20 +02:00
#include <EEPROM.h>
2020-06-02 00:57:20 +02:00
#include <Ethernet.h>
#include <ArduinoJson.h>
#define DEBUG_TO_SERIAL 1
#define AREF_VOLTAGE 3.3
const String serverName = "sensor.server.domain";
const size_t capacity = JSON_OBJECT_SIZE(1) + 2*JSON_OBJECT_SIZE(6);
DynamicJsonDocument doc(capacity);
JsonObject payload = doc.createNestedObject("payload");
JsonObject temp = payload.createNestedObject("temperature");
int tempPin = A0;
int photocellPin = A1;
2020-06-02 22:38:20 +02:00
struct netConfig {
IPAddress address;
int port;
};
netConfig config;
2020-06-02 00:57:20 +02:00
const String URL = "/telemetry/";
2020-06-02 22:38:20 +02:00
const int postDelay = 10 * 1000;
2020-06-02 00:57:20 +02:00
void setup(void) {
Serial.begin(9600);
analogReference(EXTERNAL);
2020-06-02 22:38:20 +02:00
byte mac[6];
char serial[9];
2020-06-02 00:57:20 +02:00
2020-06-02 22:38:20 +02:00
int eeAddress = 0;
EEPROM.get(eeAddress, mac);
eeAddress += sizeof(mac);
EEPROM.get(eeAddress, serial);
eeAddress += sizeof(serial);
Serial.println("Initialize Ethernet with DHCP:");
2020-06-02 00:57:20 +02:00
if (Ethernet.begin(mac) == 0) {
Serial.println("Failed to configure Ethernet using DHCP");
2020-06-02 22:38:20 +02:00
if (Ethernet.hardwareStatus() == EthernetNoHardware) {
Serial.println("Ethernet shield was not found. Sorry, can't run without hardware. :(");
} else if (Ethernet.linkStatus() == LinkOFF) {
Serial.println("Ethernet cable is not connected.");
}
2020-06-02 00:57:20 +02:00
// no point in carrying on, so do nothing forevermore:
2020-06-02 22:38:20 +02:00
while (true) {
delay(1);
}
}
EEPROM.get(eeAddress, config);
2020-06-02 00:57:20 +02:00
2020-06-02 22:38:20 +02:00
Serial.print("IoT #");
Serial.print(serial);
Serial.println(" started at address:");
Serial.println(Ethernet.localIP());
2020-06-02 00:57:20 +02:00
Serial.println();
2020-06-02 22:38:20 +02:00
Serial.println("Connecting to:");
Serial.print(config.address);
Serial.print(":");
Serial.println(config.port);
2020-06-02 00:57:20 +02:00
2020-06-02 22:38:20 +02:00
doc["device"] = serial; // FIXME
2020-06-02 00:57:20 +02:00
payload["id"] = serverName;
}
void loop(void) {
2020-06-02 22:38:20 +02:00
int photocellReading = analogRead(photocellPin);
int tempReading = analogRead(tempPin);
2020-06-02 00:57:20 +02:00
float tempVoltage = tempReading * AREF_VOLTAGE / 1024.0;
float tempC = (tempVoltage - 0.5) * 100 ;
payload["light"] = photocellReading;
temp["celsius"] = tempC;
temp["raw"] = tempReading;
temp["volts"] = tempVoltage;
2020-06-02 22:38:20 +02:00
if (EthernetClient client = client.connect(config.address, config.port)) {
2020-06-02 00:57:20 +02:00
client.print("POST ");
client.print(URL);
client.println(" HTTP/1.1");
client.print("Host: ");
2020-06-02 22:38:20 +02:00
printAddr(config.address, &client);
2020-06-02 00:57:20 +02:00
client.print(":");
2020-06-02 22:38:20 +02:00
client.println(config.port);
2020-06-02 00:57:20 +02:00
client.println("Content-Type: application/json");
client.print("Content-Length: ");
client.println(measureJsonPretty(doc));
client.println("Connection: close");
client.println();
serializeJson(doc, client);
client.stop();
#if DEBUG_TO_SERIAL
serializeJsonPretty(doc, Serial);
#endif
}
delay(postDelay);
}