29 lines
674 B
Arduino
Raw Normal View History

2019-01-16 16:28:20 +07:00
#include <AntaresESP8266MQTT.h>
#define ACCESSKEY "your-access-key"
#define WIFISSID "your-wifi-ssid"
#define PASSWORD "your-wifi-password"
2019-01-17 17:03:09 +07:00
#define projectName "your-project-name"
#define deviceName "your-device-name"
2019-01-16 16:28:20 +07:00
AntaresESP8266MQTT antares(ACCESSKEY);
void setup() {
2019-01-17 14:35:24 +07:00
Serial.begin(115200);
antares.setDebug(true);
antares.wifiConnection(WIFISSID, PASSWORD);
antares.setMqttServer();
2019-01-16 16:28:20 +07:00
}
void loop() {
2019-01-17 14:35:24 +07:00
antares.checkMqttConnection();
antares.add("temperature", 30);
antares.add("humidity", 75);
antares.add("message", "Hello World!");
antares.add("temperature", 45);
2019-01-17 17:03:09 +07:00
antares.printData();
2019-01-17 14:35:24 +07:00
antares.publish(projectName, deviceName);
delay(5000);
2019-01-16 16:28:20 +07:00
}