/*
This code will deploy data to your Antares project device with the following structure:
(Note that nesting the JSON object can only be done up to 2 levels using this library)
{
"temperature": random-int,
"humidity": random-int,
"wind_speed": random-float,
"rain_level": random-float,
"location" : {
"latitude": "static-string",
"longitude": "static-string"
}
}
For more information please visit https://antares.id/id/docs.html
*/
#include "AntaresESP8266HTTP.h"
#define ACCESSKEY "1910ac6859b2dffc"
#define WIFISSID "Wokwi-GUEST"
#define PASSWORD ""
#define projectName "TestHTTP"
#define deviceName "DEV66a9e048955aa75279"
AntaresESP8266HTTP antares(ACCESSKEY);
void setup() {
Serial.begin(115200);
antares.setDebug(true);
antares.wifiConnection(WIFISSID,PASSWORD);
/* Use wifiConnectionNonSecure instead if you don't want to use HTTPS
* and avoid SNTP matching */
//antares.wifiConnectionNonSecure(WIFISSID,PASSWORD);
}
void loop() {
// Variables
int temp = random(25,30) ;
int hum = random(75,90);
float windsp = float(random(20, 30))/3.33;
float rainlv = float(random(0, 20))/6.99;
String lat = "-6.8718189";
String lon = "107.5872477";
// Add variable data to storage buffer
antares.add("temperature", temp);
antares.add("humidity", hum);
antares.add("wind_speed", windsp);
antares.add("rain_level", rainlv);
antares.add("location", "latitude", lat);
antares.add("location", "longitude", lon);
// Send from buffer to Antares
antares.send(projectName, deviceName);
/*
Uncomment the line below to use HTTP instead of HTTPS.
Will be faster, but less secure
*/
// antares.sendNonSecure(projectName, deviceName);
delay(10000);
}