2015-07-06 22:43:52 +02:00
|
|
|
/***************************************************
|
2015-06-11 00:38:34 +02:00
|
|
|
Adafruit MQTT Library CC3000 Example
|
|
|
|
|
|
|
|
Designed specifically to work with the Adafruit WiFi products:
|
|
|
|
----> https://www.adafruit.com/products/1469
|
|
|
|
|
2015-07-06 22:43:52 +02:00
|
|
|
Adafruit invests time and resources providing this open source code,
|
|
|
|
please support Adafruit and open-source hardware by purchasing
|
2015-06-11 00:38:34 +02:00
|
|
|
products from Adafruit!
|
|
|
|
|
2015-07-06 22:43:52 +02:00
|
|
|
Written by Limor Fried/Ladyada for Adafruit Industries.
|
2015-06-11 00:38:34 +02:00
|
|
|
MIT license, all text above must be included in any redistribution
|
|
|
|
****************************************************/
|
2015-06-05 06:25:00 +02:00
|
|
|
#include <Adafruit_SleepyDog.h>
|
2015-06-03 00:37:15 +02:00
|
|
|
#include <Adafruit_CC3000.h>
|
|
|
|
#include <SPI.h>
|
|
|
|
#include "utility/debug.h"
|
|
|
|
#include "Adafruit_MQTT.h"
|
|
|
|
#include "Adafruit_MQTT_CC3000.h"
|
|
|
|
|
2015-06-05 06:25:00 +02:00
|
|
|
/*************************** CC3000 Pins ***********************************/
|
|
|
|
|
|
|
|
#define ADAFRUIT_CC3000_IRQ 3 // MUST be an interrupt pin!
|
|
|
|
#define ADAFRUIT_CC3000_VBAT 5 // VBAT & CS can be any digital pins.
|
|
|
|
#define ADAFRUIT_CC3000_CS 10
|
|
|
|
// Use hardware SPI for the remaining pins
|
|
|
|
// On an UNO, SCK = 13, MISO = 12, and MOSI = 11
|
|
|
|
|
|
|
|
/************************* WiFi Access Point *********************************/
|
|
|
|
|
|
|
|
#define WLAN_SSID "...your SSID..." // can't be longer than 32 characters!
|
|
|
|
#define WLAN_PASS "...your password..."
|
2015-07-06 22:43:52 +02:00
|
|
|
#define WLAN_SECURITY WLAN_SEC_WPA2 // Can be: WLAN_SEC_UNSEC, WLAN_SEC_WEP,
|
2015-06-05 06:25:00 +02:00
|
|
|
// WLAN_SEC_WPA or WLAN_SEC_WPA2
|
|
|
|
|
|
|
|
/************************* Adafruit.io Setup *********************************/
|
|
|
|
|
|
|
|
#define AIO_SERVER "io.adafruit.com"
|
|
|
|
#define AIO_SERVERPORT 1883
|
|
|
|
#define AIO_USERNAME "...your AIO username (see https://accounts.adafruit.com)..."
|
2015-07-06 22:43:52 +02:00
|
|
|
#define AIO_KEY "...your AIO key..."
|
2015-06-05 06:25:00 +02:00
|
|
|
|
|
|
|
/************ Global State (you don't need to change this!) ******************/
|
|
|
|
|
|
|
|
// Setup the main CC3000 class, just like a normal CC3000 sketch.
|
|
|
|
Adafruit_CC3000 cc3000 = Adafruit_CC3000(ADAFRUIT_CC3000_CS, ADAFRUIT_CC3000_IRQ, ADAFRUIT_CC3000_VBAT);
|
|
|
|
|
2015-10-05 21:26:02 +02:00
|
|
|
// Store the MQTT server, username, and password in flash memory.
|
2015-06-05 06:25:00 +02:00
|
|
|
// This is required for using the Adafruit MQTT library.
|
|
|
|
const char MQTT_SERVER[] PROGMEM = AIO_SERVER;
|
|
|
|
const char MQTT_USERNAME[] PROGMEM = AIO_USERNAME;
|
|
|
|
const char MQTT_PASSWORD[] PROGMEM = AIO_KEY;
|
2015-06-03 00:37:15 +02:00
|
|
|
|
2015-06-05 06:25:00 +02:00
|
|
|
// Setup the CC3000 MQTT class by passing in the CC3000 class and MQTT server and login details.
|
2015-10-05 21:26:02 +02:00
|
|
|
Adafruit_MQTT_CC3000 mqtt(&cc3000, MQTT_SERVER, AIO_SERVERPORT, MQTT_USERNAME, MQTT_PASSWORD);
|
2015-06-03 00:37:15 +02:00
|
|
|
|
2015-06-05 06:25:00 +02:00
|
|
|
// You don't need to change anything below this line!
|
|
|
|
#define halt(s) { Serial.println(F( s )); while(1); }
|
|
|
|
|
|
|
|
// CC3000connect is a helper function that sets up the CC3000 and connects to
|
|
|
|
// the WiFi network. See the cc3000helper.cpp tab above for the source!
|
|
|
|
boolean CC3000connect(const char* wlan_ssid, const char* wlan_pass, uint8_t wlan_security);
|
|
|
|
|
|
|
|
/****************************** Feeds ***************************************/
|
|
|
|
|
2015-07-06 22:43:52 +02:00
|
|
|
// Setup a feed called 'photocell' for publishing.
|
2015-06-05 06:25:00 +02:00
|
|
|
// Notice MQTT paths for AIO follow the form: <username>/feeds/<feedname>
|
|
|
|
const char PHOTOCELL_FEED[] PROGMEM = AIO_USERNAME "/feeds/photocell";
|
2015-06-03 00:37:15 +02:00
|
|
|
Adafruit_MQTT_Publish photocell = Adafruit_MQTT_Publish(&mqtt, PHOTOCELL_FEED);
|
|
|
|
|
2015-07-06 22:43:52 +02:00
|
|
|
// Setup a feed called 'onoff' for subscribing to changes.
|
2015-06-05 06:25:00 +02:00
|
|
|
const char ONOFF_FEED[] PROGMEM = AIO_USERNAME "/feeds/onoff";
|
2015-06-03 00:37:15 +02:00
|
|
|
Adafruit_MQTT_Subscribe onoffbutton = Adafruit_MQTT_Subscribe(&mqtt, ONOFF_FEED);
|
|
|
|
|
2015-06-05 06:25:00 +02:00
|
|
|
/*************************** Sketch Code ************************************/
|
2015-06-03 00:37:15 +02:00
|
|
|
|
|
|
|
void setup() {
|
|
|
|
Serial.begin(115200);
|
|
|
|
|
|
|
|
Serial.println(F("Adafruit MQTT demo"));
|
|
|
|
|
|
|
|
Serial.print(F("Free RAM: ")); Serial.println(getFreeRam(), DEC);
|
|
|
|
|
|
|
|
// Initialise the CC3000 module
|
|
|
|
Serial.print(F("\nInit the CC3000..."));
|
2015-07-06 22:43:52 +02:00
|
|
|
if (!cc3000.begin())
|
2015-06-03 00:37:15 +02:00
|
|
|
halt("Failed");
|
|
|
|
|
|
|
|
mqtt.subscribe(&onoffbutton);
|
|
|
|
|
2015-06-05 06:25:00 +02:00
|
|
|
while (! CC3000connect(WLAN_SSID, WLAN_PASS, WLAN_SECURITY)) {
|
2015-06-03 00:37:15 +02:00
|
|
|
Serial.println(F("Retrying WiFi"));
|
2015-07-15 00:54:04 +02:00
|
|
|
delay(1000);
|
2015-06-03 00:37:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t x=0;
|
|
|
|
|
|
|
|
void loop() {
|
2015-06-05 06:25:00 +02:00
|
|
|
// Make sure to reset watchdog every loop iteration!
|
2015-06-03 00:37:15 +02:00
|
|
|
Watchdog.reset();
|
2015-07-06 22:43:52 +02:00
|
|
|
|
2015-07-05 23:29:13 +02:00
|
|
|
// 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();
|
2015-06-05 06:25:00 +02:00
|
|
|
|
2015-06-03 00:37:15 +02:00
|
|
|
// this is our 'wait for incoming subscription packets' busy subloop
|
2015-06-05 06:25:00 +02:00
|
|
|
Adafruit_MQTT_Subscribe *subscription;
|
2015-07-02 13:43:10 +02:00
|
|
|
while ((subscription = mqtt.readSubscription(1000))) {
|
2015-06-03 00:37:15 +02:00
|
|
|
if (subscription == &onoffbutton) {
|
2015-07-06 22:43:52 +02:00
|
|
|
Serial.print(F("Got: "));
|
2015-06-03 00:37:15 +02:00
|
|
|
Serial.println((char *)onoffbutton.lastread);
|
|
|
|
}
|
|
|
|
}
|
2015-07-06 22:43:52 +02:00
|
|
|
|
2015-06-03 00:37:15 +02:00
|
|
|
// Now we can publish stuff!
|
2015-07-06 22:43:52 +02:00
|
|
|
Serial.print(F("\nSending photocell val "));
|
2015-06-03 00:37:15 +02:00
|
|
|
Serial.print(x);
|
|
|
|
Serial.print("...");
|
|
|
|
if (! photocell.publish(x++)) {
|
|
|
|
Serial.println(F("Failed"));
|
|
|
|
} else {
|
|
|
|
Serial.println(F("OK!"));
|
|
|
|
}
|
2015-10-22 20:13:19 +02:00
|
|
|
|
|
|
|
// ping the server to keep the mqtt connection alive
|
|
|
|
if(! mqtt.ping()) {
|
|
|
|
Serial.println(F("MQTT Ping failed."));
|
|
|
|
}
|
|
|
|
|
2015-06-03 00:37:15 +02:00
|
|
|
}
|
2015-07-05 23:29:13 +02:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
// Stop if already connected.
|
|
|
|
if (mqtt.connected()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Serial.print("Connecting to MQTT... ");
|
|
|
|
|
|
|
|
while ((ret = mqtt.connect()) != 0) { // connect will return 0 for connected
|
2015-07-02 13:01:05 +02:00
|
|
|
Serial.println(mqtt.connectErrorString(ret));
|
|
|
|
if (ret < 0)
|
2015-07-05 23:29:13 +02:00
|
|
|
CC3000connect(WLAN_SSID, WLAN_PASS, WLAN_SECURITY); // y0w, lets connect to wifi again
|
|
|
|
Serial.println("Retrying MQTT connection in 5 seconds...");
|
|
|
|
mqtt.disconnect();
|
|
|
|
delay(5000); // wait 5 seconds
|
|
|
|
}
|
|
|
|
Serial.println("MQTT Connected!");
|
|
|
|
}
|