Kirim Data Sederhana ke Antares
#include "AntaresEthernetShield.h"
#define ACCESSKEY "your-access-key"
#define applicationName "your-application-name"
#define deviceName "your-device-name"
unsigned int counter =0;
AntaresEthernetShield antares(ACCESSKEY);
void setup() {
Serial.begin(9600);
antares.StartConnection();
}
void loop() {
String text ="Hello! ";
text += String(counter);
counter++;
antares.sendData(text, applicationName, deviceName);
delay(10000);
} 
Last updated