Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Basic ESP8266 MQTT example
- This sketch demonstrates the capabilities of the pubsub library in combination
- with the ESP8266 board/library.
- It connects to an MQTT server then:
- - publishes "hello world" to the topic "outTopic" every two seconds
- - subscribes to the topic "inTopic", printing out any messages
- it receives. NB - it assumes the received payloads are strings not binary
- - If the first character of the topic "inTopic" is an 1, switch ON the ESP Led,
- else switch it off
- It will reconnect to the server if the connection is lost using a blocking
- reconnect function. See the 'mqtt_reconnect_nonblocking' example for how to
- achieve the same result without blocking the main loop.
- To install the ESP8266 board, (using Arduino 1.6.4+):
- - Add the following 3rd party board manager under "File -> Preferences -> Additional Boards Manager URLs":
- http://arduino.esp8266.com/stable/package_esp8266com_index.json
- - Open the "Tools -> Board -> Board Manager" and click install for the ESP8266"
- - Select your ESP8266 in "Tools -> Board"
- */
- #include <ESP8266WiFi.h>
- #include <PubSubClient.h>
- #include "FastLED.h"
- // Update these with values suitable for your network.
- const char* ssid = "SSID";
- const char* password = "PASSWORD";
- const char* mqtt_server = "Host.IP";
- const char* mqtt_username = "USERNAME";
- const char* mqtt_password = "PASSWORD";
- const int mqtt_port = 1883;
- const char* state = "";
- #define SENSORNAME "strip"
- #define NUM_LEDS_PER_STRIP 9
- CRGB leftWallLeds[NUM_LEDS_PER_STRIP];
- CRGB rightWallLeds[NUM_LEDS_PER_STRIP];
- CRGB bottomLeds[NUM_LEDS_PER_STRIP];
- CRGB tempLED;
- //globals for fireplace
- byte hue = 0;
- byte counter=0;
- WiFiClient espClient;
- PubSubClient client(espClient);
- long lastMsg = 0;
- char msg[50];
- int value = 0;
- void fireplace_brighter(){
- hue++;
- delay(35);
- int i = random8(9);
- leftWallLeds[i] = CHSV(random(1,15), 255, random(80,255));
- rightWallLeds[i] = CHSV(random(10,25), 255, random(80,255));
- bottomLeds[i] = CHSV(random(240,8), 255, random(80,255));
- FastLED.show();
- delay(100);
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- leftWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- rightWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- bottomLeds[x].fadeToBlackBy(.5);
- }
- }//end fireplace_brighter
- void fireplace_faster(){
- hue++;
- delay(random(10,30));
- int i = random8(9);
- leftWallLeds[i] = CHSV(random(1,15), 255, random(80,255));
- rightWallLeds[i] = CHSV(random(10,25), 255, random(80,255));
- bottomLeds[i] = CHSV(random(240,8), 255, random(80,255));
- FastLED.show();
- delay(random(30,60));
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- leftWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- rightWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- bottomLeds[x].fadeToBlackBy(.5);
- }
- }//end fireplace_faster
- void fireplace_dynamic(){
- hue++;
- delay(random(35));
- int i = random8(9);
- leftWallLeds[i] = CHSV(random(1,15), 255, random(30,255));
- rightWallLeds[i] = CHSV(random(10,25), 255, random(30,255));
- bottomLeds[i] = CHSV(random(240,8), 255, random(45,255));
- FastLED.show();
- delay(50);
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- leftWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- rightWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- bottomLeds[x].fadeToBlackBy(.5);
- }
- }//end fireplace_dynamic
- void fireplace_dimmer(){
- hue++;
- delay(50);
- int i = random8(9);
- leftWallLeds[i] = CHSV(random(1,15), 255, random(25,160));
- rightWallLeds[i] = CHSV(random(115,125), 255, random(20,160));
- bottomLeds[i] = CHSV(random(230,245), 255, random(30,160));
- FastLED.show();
- delay(random(40,75));
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- leftWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- rightWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- bottomLeds[x].fadeToBlackBy(.5);
- }
- }//end fireplace_dimmer
- void fireplace_neon(){
- hue++;
- delay(random(20,40));
- int i = random8(9);
- leftWallLeds[i] = CHSV(random(1,255), 255, random(50,200));
- rightWallLeds[i] = CHSV(random(1,255), 255, random(50,200));
- bottomLeds[i] = CHSV(random(150,35), 255, random(80,255));
- FastLED.show();
- delay(random(50,75));
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- leftWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- rightWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- bottomLeds[x].fadeToBlackBy(.5);
- }
- }//end fireplace_neon
- void fireplace_neon_inverse(){
- hue++;
- delay(random(20,40));
- int i = random8(9);
- leftWallLeds[i] = CHSV(random(150,35), 255, random(50,200));
- rightWallLeds[i] = CHSV(random(150,35), 255, random(50,200));
- bottomLeds[i] = CHSV(random(1,255), 255, random(80,255));
- FastLED.show();
- FastLED.show();
- delay(random(50,75));
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- leftWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- rightWallLeds[x].fadeToBlackBy(.5);
- }
- for(int x=0; x<NUM_LEDS_PER_STRIP; x++){
- bottomLeds[x].fadeToBlackBy(.5);
- }
- }//end fireplace_neon_inverse
- void blackout() {
- for(int i = 0; i < NUM_LEDS_PER_STRIP; i++) {
- // set our current dot to red, green, and blue
- leftWallLeds[i] = CRGB::Black;
- rightWallLeds[i] = CRGB::Black;
- bottomLeds[i] = CRGB::Black;
- FastLED.show();
- }
- //checkState();
- }
- void setup_wifi() {
- delay(10);
- // We start by connecting to a WiFi network
- Serial.println();
- Serial.print("Connecting to ");
- Serial.println(ssid);
- WiFi.begin(ssid, password);
- while (WiFi.status() != WL_CONNECTED) {
- delay(500);
- Serial.print(".");
- }
- randomSeed(micros());
- Serial.println("");
- Serial.println("WiFi connected");
- Serial.println("IP address: ");
- Serial.println(WiFi.localIP());
- }
- /*
- void checkState(){
- if (state =="fireplace") {
- client.loop();
- fireplace();
- }
- if (state == "blackout"){
- client.loop();
- blackout();
- }
- }
- */
- void callback(char* topic, byte* payload, unsigned int length) {
- Serial.print("Message arrived [");
- Serial.print(topic);
- Serial.print("] ");
- for (int i = 0; i < length; i++) {
- Serial.print((char)payload[i]);
- }
- Serial.println();
- // Switch on the LED if an 1 was received as first character
- if ((char)payload[0] == '0') {
- state = "blackout";
- }
- if ((char)payload[0] == '1') {
- state = "fireplace_brighter";
- }
- if ((char)payload[0] == '2') {
- state = "fireplace_faster";
- }
- if ((char)payload[0] == '3') {
- state = "fireplace_dynamic";
- }
- if ((char)payload[0] == '4') {
- state = "fireplace_dimmer";
- }
- if ((char)payload[0] == '5') {
- state = "fireplace_neon";
- }
- if ((char)payload[0] == '6') {
- state = "fireplace_neon_inverse";
- }
- }
- void reconnect() {
- // Loop until we're reconnected
- while (!client.connected()) {
- Serial.print("Attempting MQTT connection...");
- // Attempt to connect
- if (client.connect(SENSORNAME, mqtt_username, mqtt_password)) {
- Serial.println("connected");
- // Once connected, publish an announcement...
- client.publish("outTopic", "hello world");
- // ... and resubscribe
- client.subscribe("inTopic");
- } else {
- Serial.print("failed, rc=");
- Serial.print(client.state());
- Serial.println(" try again in 5 seconds");
- // Wait 5 seconds before retrying
- delay(5000);
- }
- }
- }
- void setup() {
- FastLED.addLeds<NEOPIXEL, D3>(leftWallLeds, NUM_LEDS_PER_STRIP);
- FastLED.addLeds<NEOPIXEL, D5>(rightWallLeds, NUM_LEDS_PER_STRIP);
- FastLED.addLeds<NEOPIXEL, D7>(bottomLeds, NUM_LEDS_PER_STRIP);
- Serial.begin(9600);
- setup_wifi();
- client.setServer(mqtt_server, mqtt_port);
- client.setCallback(callback);
- }
- void loop() {
- if (!client.connected()) {
- reconnect();
- }
- client.loop();
- if (state == "fireplace_brighter"){
- fireplace_brighter();
- }
- if (state == "fireplace_faster"){
- fireplace_faster();
- }
- if (state == "fireplace_dynamic"){
- fireplace_dynamic();
- }
- if (state == "fireplace_dimmer"){
- fireplace_dimmer();
- }
- if (state == "fireplace_neon"){
- fireplace_neon();
- }
- if (state == "fireplace_neon_inverse"){
- fireplace_neon_inverse();
- }
- else if (state == "blackout"){
- blackout();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement