Tadeas Dvoracek
Published

Connect Wireless Door Bell to Cayenne

Connect wireless door bell to Cayenne and send SMS.

BeginnerProtip1 hour1,259
Connect Wireless Door Bell to Cayenne

Things used in this project

Hardware components

NodeMCU ESP8266 Breakout Board
NodeMCU ESP8266 Breakout Board
×1

Software apps and online services

Cayenne
myDevices Cayenne

Story

Read more

Schematics

Schematics timer board

Code

Code

Arduino
//#define CAYENNE_DEBUG         // Uncomment to show debug messages
#define CAYENNE_PRINT Serial  // Comment this out to disable prints and save space
#include "CayenneDefines.h"
#include "BlynkSimpleEsp8266.h"
#include "CayenneWiFiClient.h"

// Cayenne authentication token. This should be obtained from the Cayenne Dashboard.
char token[] = "TOKEN";
// Your network name and password.
char ssid[] = "SSID";
char password[] = "PASSWORD";

void setup()
{
  Serial.begin(9600);
  Cayenne.begin(token, ssid, password);
}

void loop()
{
  Cayenne.run();
}

Credits

Tadeas Dvoracek

Tadeas Dvoracek

10 projects • 40 followers

Comments