From 4e7c4573108720d9c62b6f528b8ae910a750b4a9 Mon Sep 17 00:00:00 2001 From: Elena of Valhalla'' Grandi Date: Fri, 27 Mar 2015 22:35:55 +0100 Subject: Arduino sketch: send fixed messages via mqtt --- arduino/data_collect/data_collect.ino | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 arduino/data_collect/data_collect.ino (limited to 'arduino/data_collect') diff --git a/arduino/data_collect/data_collect.ino b/arduino/data_collect/data_collect.ino new file mode 100644 index 0000000..c8013b9 --- /dev/null +++ b/arduino/data_collect/data_collect.ino @@ -0,0 +1,25 @@ +#include +#include +#include + +#define TOPIC "data/here/temperature" + +byte mac[] = { 0xDE, 0xED, 0xBA, 0xFE, 0xFE, 0xED }; +byte server[] = { 192, 168, 1, 33 }; +byte ip[] = { 192, 168, 1, 72 }; + +EthernetClient ethClient; +PubSubClient client(server, 1883, 0, ethClient); + +void setup() { + Ethernet.begin(mac, ip); + +} + +void loop() { + client.loop(); + if (client.connect("arduinoClient")) { + client.publish(TOPIC,"12"); + } + delay(5000); +} -- cgit v1.2.3