2016-01-21 00:24:23 +01:00
|
|
|
/***************************************************
|
|
|
|
Adafruit MQTT Library WINC1500 Example
|
|
|
|
|
|
|
|
Adafruit invests time and resources providing this open source code,
|
|
|
|
please support Adafruit and open-source hardware by purchasing
|
|
|
|
products from Adafruit!
|
|
|
|
|
|
|
|
Written by Limor Fried/Ladyada for Adafruit Industries.
|
|
|
|
MIT license, all text above must be included in any redistribution
|
|
|
|
****************************************************/
|
|
|
|
#include <SPI.h>
|
|
|
|
#include "Adafruit_MQTT.h"
|
|
|
|
#include "Adafruit_MQTT_Client.h"
|
2018-01-29 20:27:41 +01:00
|
|
|
#include <WiFi101.h>
|
2016-01-21 00:24:23 +01:00
|
|
|
|
|
|
|
/************************* WiFI Setup *****************************/
|
|
|
|
#define WINC_CS 8
|
|
|
|
#define WINC_IRQ 7
|
|
|
|
#define WINC_RST 4
|
2016-08-09 23:00:01 +02:00
|
|
|
#define WINC_EN 2 // or, tie EN to VCC
|
2016-01-21 00:24:23 +01:00
|
|
|
|
|
|
|
char ssid[] = "yournetwork"; // your network SSID (name)
|
|
|
|
char pass[] = "yourpassword"; // your network password (use for WPA, or use as key for WEP)
|
|
|
|
int keyIndex = 0; // your network key Index number (needed only for WEP)
|
|
|
|
|
|
|
|
int status = WL_IDLE_STATUS;
|
|
|
|
|
|
|
|
/************************* Adafruit.io Setup *********************************/
|
|
|
|
|
|
|
|
#define AIO_SERVER "io.adafruit.com"
|
|
|
|
#define AIO_SERVERPORT 1883
|
2016-08-09 23:00:01 +02:00
|
|
|
#define AIO_USERNAME "adafruitiousername"
|
|
|
|
#define AIO_KEY "adafruitiokey"
|
2016-01-21 00:24:23 +01:00
|
|
|
|
|
|
|
/************ Global State (you don't need to change this!) ******************/
|
|
|
|
|
|
|
|
//Set up the wifi client
|
2018-01-29 20:27:41 +01:00
|
|
|
WiFiClient client;
|
2016-01-21 00:24:23 +01:00
|
|
|
|
2016-08-09 23:00:01 +02:00
|
|
|
Adafruit_MQTT_Client mqtt(&client, AIO_SERVER, AIO_SERVERPORT, AIO_USERNAME, AIO_KEY);
|
2016-01-21 00:24:23 +01:00
|
|
|
|
|
|
|
// You don't need to change anything below this line!
|
|
|
|
#define halt(s) { Serial.println(F( s )); while(1); }
|
|
|
|
|
|
|
|
/****************************** Feeds ***************************************/
|
|
|
|
|
|
|
|
// Setup a feed called 'photocell' for publishing.
|
|
|
|
// Notice MQTT paths for AIO follow the form: <username>/feeds/<feedname>
|
2016-08-09 23:00:01 +02:00
|
|
|
Adafruit_MQTT_Publish photocell = Adafruit_MQTT_Publish(&mqtt, AIO_USERNAME "/feeds/photocell");
|
2016-01-21 00:24:23 +01:00
|
|
|
|
|
|
|
// Setup a feed called 'onoff' for subscribing to changes.
|
2016-08-09 23:00:01 +02:00
|
|
|
Adafruit_MQTT_Subscribe onoffbutton = Adafruit_MQTT_Subscribe(&mqtt, AIO_USERNAME "/feeds/onoff");
|
2016-01-21 00:24:23 +01:00
|
|
|
|
|
|
|
/*************************** Sketch Code ************************************/
|
|
|
|
|
|
|
|
#define LEDPIN 13
|
|
|
|
|
2016-08-09 23:00:01 +02:00
|
|
|
|
2016-01-21 00:24:23 +01:00
|
|
|
void setup() {
|
2018-01-29 20:27:41 +01:00
|
|
|
WiFi.setPins(WINC_CS, WINC_IRQ, WINC_RST, WINC_EN);
|
2016-01-22 02:21:10 +01:00
|
|
|
|
|
|
|
while (!Serial);
|
2016-01-21 00:24:23 +01:00
|
|
|
Serial.begin(115200);
|
|
|
|
|
|
|
|
Serial.println(F("Adafruit MQTT demo for WINC1500"));
|
|
|
|
|
|
|
|
// Initialise the Client
|
|
|
|
Serial.print(F("\nInit the WiFi module..."));
|
|
|
|
// check for the presence of the breakout
|
|
|
|
if (WiFi.status() == WL_NO_SHIELD) {
|
|
|
|
Serial.println("WINC1500 not present");
|
|
|
|
// don't continue:
|
|
|
|
while (true);
|
|
|
|
}
|
|
|
|
Serial.println("ATWINC OK!");
|
|
|
|
|
|
|
|
pinMode(LEDPIN, OUTPUT);
|
|
|
|
mqtt.subscribe(&onoffbutton);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t x=0;
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
// Ensure the connection to the MQTT server is alive (this will make the first
|
|
|
|
// connection and automatically reconnect when disconnected). See the MQTT_connect
|
|
|
|
// function definition further below.
|
|
|
|
MQTT_connect();
|
|
|
|
|
|
|
|
// this is our 'wait for incoming subscription packets' busy subloop
|
|
|
|
Adafruit_MQTT_Subscribe *subscription;
|
|
|
|
while ((subscription = mqtt.readSubscription(5000))) {
|
|
|
|
if (subscription == &onoffbutton) {
|
|
|
|
Serial.print(F("Got: "));
|
|
|
|
Serial.println((char *)onoffbutton.lastread);
|
|
|
|
|
|
|
|
if (0 == strcmp((char *)onoffbutton.lastread, "OFF")) {
|
|
|
|
digitalWrite(LEDPIN, LOW);
|
|
|
|
}
|
|
|
|
if (0 == strcmp((char *)onoffbutton.lastread, "ON")) {
|
|
|
|
digitalWrite(LEDPIN, HIGH);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now we can publish stuff!
|
|
|
|
Serial.print(F("\nSending photocell val "));
|
|
|
|
Serial.print(x);
|
|
|
|
Serial.print("...");
|
|
|
|
if (! photocell.publish(x++)) {
|
|
|
|
Serial.println(F("Failed"));
|
|
|
|
} else {
|
|
|
|
Serial.println(F("OK!"));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Function to connect and reconnect as necessary to the MQTT server.
|
|
|
|
// Should be called in the loop function and it will take care if connecting.
|
|
|
|
void MQTT_connect() {
|
|
|
|
int8_t ret;
|
|
|
|
|
|
|
|
// attempt to connect to Wifi network:
|
|
|
|
while (WiFi.status() != WL_CONNECTED) {
|
|
|
|
Serial.print("Attempting to connect to SSID: ");
|
|
|
|
Serial.println(ssid);
|
|
|
|
// Connect to WPA/WPA2 network. Change this line if using open or WEP network:
|
|
|
|
status = WiFi.begin(ssid, pass);
|
|
|
|
|
|
|
|
// wait 10 seconds for connection:
|
|
|
|
uint8_t timeout = 10;
|
|
|
|
while (timeout && (WiFi.status() != WL_CONNECTED)) {
|
|
|
|
timeout--;
|
|
|
|
delay(1000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop if already connected.
|
|
|
|
if (mqtt.connected()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Serial.print("Connecting to MQTT... ");
|
|
|
|
|
|
|
|
while ((ret = mqtt.connect()) != 0) { // connect will return 0 for connected
|
|
|
|
Serial.println(mqtt.connectErrorString(ret));
|
|
|
|
Serial.println("Retrying MQTT connection in 5 seconds...");
|
|
|
|
mqtt.disconnect();
|
|
|
|
delay(5000); // wait 5 seconds
|
|
|
|
}
|
|
|
|
Serial.println("MQTT Connected!");
|
2018-01-29 20:27:41 +01:00
|
|
|
}
|