285 lines
15 KiB
C++
285 lines
15 KiB
C++
//******************************************************************************************
|
|
// File: ST_Anything_Multiples_EthernetW5x00_MEGA.ino
|
|
// Authors: Dan G Ogorchock & Daniel J Ogorchock (Father and Son)
|
|
//
|
|
// Summary: This Arduino Sketch, along with the ST_Anything library and the
|
|
// revised SmartThings
|
|
// library, demonstrates the ability of one Arduino + Ethernet W5x00
|
|
// Shield to implement a multi input/output custom device for
|
|
// integration into SmartThings. The ST_Anything library takes care
|
|
// of all of the work to schedule device updates as well as all
|
|
// communications with the Ethernet W5x00 Shield.
|
|
//
|
|
// ST_Anything_Multiples implements the following ST Capabilities in
|
|
// multiples of 2 as a demo of what is possible with a single Arduino
|
|
// - 2 x Door Control devices (used typically for Garage Doors -
|
|
// input pin (contact sensor) and output pin (relay switch)
|
|
// - 2 x Contact Sensor devices (used to monitor magnetic door
|
|
// sensors)
|
|
// - 2 x Switch devices (used to turn on a digital output (e.g.
|
|
// LED, relay, etc...)
|
|
// - 2 x Water Sensor devices (using an analog input pin to measure
|
|
// voltage from a water detector board)
|
|
// - 2 x Illuminance Measurement devices (using a photoresitor
|
|
// attached to ananlog input)
|
|
// - 2 x Voltage Measurement devices (using a photoresitor attached
|
|
// to ananlog input)
|
|
// - 2 x Smoke Detector devices (using simple digital input)
|
|
// - 2 x Carbon Monoxide Detector devices (using simple digital
|
|
// input)
|
|
// - 2 x Motion devices (used to detect motion)
|
|
// - 2 x Temperature Measurement devices (Temperature from DHT22
|
|
// device)
|
|
// - 2 x Humidity Measurement devices (Humidity from DHT22 device)
|
|
// - 2 x Relay Switch devices (used to turn on a digital output for
|
|
// a set number of cycles And On/Off times (e.g.relay, etc...))
|
|
// - 2 x Button devices (sends "pushed" if held for less than 1
|
|
// second, else sends "held"
|
|
// - 2 x Alarm devices - 1 siren only, 1 siren and strobe (using
|
|
// simple digital outputs)
|
|
// - 2 x Dimmer Switch devices - uses 2 digital outputs, one for
|
|
// on/off and one for pwm level
|
|
// - 2 x MQ-2 Smoke Detector devices (using simple analog input
|
|
// compared to user defined limit)
|
|
//
|
|
// During the development of this re-usable library, it became
|
|
// apparent that the Arduino UNO R3's very limited 2K of SRAM was
|
|
// very limiting in the number of devices that could be implemented
|
|
// simultaneously. A tremendous amount of effort has gone into
|
|
// reducing the SRAM usage, including siginificant improvements to
|
|
// the SmartThings Arduino library.
|
|
//
|
|
// Note: This sketch was fully tested on an Arduino MEGA 2560 using
|
|
// the Ethernet W5x00 Shield.
|
|
//
|
|
// Change History:
|
|
//
|
|
// Date Who What
|
|
// ---- --- ----
|
|
// 2015-01-03 Dan & Daniel Original Creation
|
|
// 2017-02-12 Dan Ogorchock Revised to use the new SMartThings v2.0 library
|
|
// 2017-04-16 Dan Ogorchock New sketch to demonstrate multiple SmartThings
|
|
// Capabilties of each type 2017-04-22 Dan Ogorchock Added Voltage, Carbon
|
|
// Monoxide, and Alarm with Strobe 2017-07-04 Dan Ogorchock Added MQ-2
|
|
// based Smoke Detection
|
|
//
|
|
//******************************************************************************************
|
|
//******************************************************************************************
|
|
// SmartThings Library for Arduino Ethernet W5x00 Shield
|
|
//******************************************************************************************
|
|
#include <SmartThingsEthernetW5x00.h> //Library to provide API to the SmartThings Ethernet W5x00 Shield
|
|
|
|
//******************************************************************************************
|
|
// ST_Anything Library
|
|
//******************************************************************************************
|
|
#include <Constants.h> //Constants.h is designed to be modified by the end user to adjust behavior of the ST_Anything library
|
|
#include <Device.h> //Generic Device Class, inherited by Sensor and Executor classes
|
|
#include <Everything.h> //Master Brain of ST_Anything library that ties everything together and performs ST Shield communications
|
|
#include <Executor.h> //Generic Executor Class, typically receives data from ST Cloud (e.g. Switch)
|
|
#include <InterruptSensor.h> //Generic Interrupt "Sensor" Class, waits for change of state on digital input
|
|
#include <PollingSensor.h> //Generic Polling "Sensor" Class, polls Arduino pins periodically
|
|
#include <Sensor.h> //Generic Sensor Class, typically provides data to ST Cloud (e.g. Temperature, Motion, etc...)
|
|
|
|
#include <EX_Alarm.h> //Implements Executor (EX)as an Alarm capability with Siren and Strobe via digital outputs to relays
|
|
#include <EX_Switch.h> //Implements an Executor (EX) via a digital output to a relay
|
|
#include <EX_Switch_Dim.h> //Implements an Executor (EX) for a switch (on/off) and pwm output (level) uses 2 digital output pins
|
|
#include <IS_Button.h> //Implements an Interrupt Sensor (IS) to monitor the status of a digital input pin for button presses
|
|
#include <IS_CarbonMonoxide.h> //Implements an Interrupt Sensor (IS) to monitor the status of a digital input pin
|
|
#include <IS_Contact.h> //Implements an Interrupt Sensor (IS) to monitor the status of a digital input pin
|
|
#include <IS_DoorControl.h> //Implements an Interrupt Sensor (IS) and Executor to monitor the status of a digital input pin and control a digital output pin
|
|
#include <IS_Motion.h> //Implements an Interrupt Sensor (IS) to detect motion via a PIR sensor on a digital input pin
|
|
#include <IS_Smoke.h> //Implements an Interrupt Sensor (IS) to monitor the status of a digital input pin
|
|
#include <PS_Illuminance.h> //Implements a Polling Sensor (PS) to measure light levels via a photo resistor on an analog input pin
|
|
#include <PS_MQ2_Smoke.h> //Implements an Polling Sensor (PS) to monitor the status of an analog input pin from a MQ2 sensor
|
|
#include <PS_TemperatureHumidity.h> //Implements a Polling Sensor (PS) to measure Temperature and Humidity via DHT library
|
|
#include <PS_Voltage.h> //Implements a Polling Sensor (PS) to measure voltage on an analog input pin
|
|
#include <PS_Water.h> //Implements a Polling Sensor (PS) to measure presence of water (i.e. leak detector) on an analog input pin
|
|
#include <S_TimedRelay.h> //Implements a Sensor to control a digital output pin with timing/cycle repeat capabilities
|
|
|
|
//**********************************************************************************************************
|
|
// Define which Arduino Pins will be used for each device
|
|
// Notes: Arduino communicates with both the W5x00 and SD card using the SPI
|
|
// bus (through the ICSP header).
|
|
// This is on digital pins 10, 11, 12, and 13 on the Uno and pins 50,
|
|
// 51, and 52 on the Mega. On both boards, pin 10 is used to select the
|
|
// W5x00 and pin 4 for the SD card. These pins cannot be used for
|
|
// general I/O. On the Mega, the hardware SS pin, 53, is not used to
|
|
// select either the W5x00 or the SD card, but it must be kept as an
|
|
// output or the SPI interface won't work. See
|
|
// https://www.arduino.cc/en/Main/ArduinoEthernetShieldV1 for details on
|
|
// the W5x00 Sield
|
|
//**********************************************************************************************************
|
|
//"RESERVED" pins for W5x00 Ethernet Shield - best to avoid
|
|
#define PIN_4_RESERVED 4 // reserved by W5x00 Shield on both UNO and MEGA
|
|
#define PIN_1O_RESERVED 10 // reserved by W5x00 Shield on both UNO and MEGA
|
|
#define PIN_11_RESERVED 11 // reserved by W5x00 Shield on UNO
|
|
#define PIN_12_RESERVED 12 // reserved by W5x00 Shield on UNO
|
|
#define PIN_13_RESERVED 13 // reserved by W5x00 Shield on UNO
|
|
#define PIN_50_RESERVED 50 // reserved by W5x00 Shield on MEGA
|
|
#define PIN_51_RESERVED 51 // reserved by W5x00 Shield on MEGA
|
|
#define PIN_52_RESERVED 52 // reserved by W5x00 Shield on MEGA
|
|
#define PIN_53_RESERVED 53 // reserved by W5x00 Shield on MEGA
|
|
|
|
//******************************************************************************************
|
|
// W5x00 Ethernet Shield Information
|
|
//******************************************************************************************
|
|
|
|
// NOTE - If your shield came with a MAC address sticker - please use that MAC
|
|
// address!
|
|
|
|
// MAC address, leave first octet 0x06, change others to be unique
|
|
byte mac[] = {0x06, 0x02, 0x03, 0x04, 0x05, 0x06};
|
|
|
|
// Arduino device IP Address
|
|
IPAddress ip(192, 168, 88, 206);
|
|
|
|
// Router gateway
|
|
IPAddress gateway(192, 168, 88, 1);
|
|
|
|
// LAN subnet mask
|
|
IPAddress subnet(255, 255, 255, 0);
|
|
|
|
// DNS server
|
|
IPAddress dnsserver(192, 168, 88, 1);
|
|
|
|
// port to run the http server on
|
|
const unsigned int serverPort = 8090;
|
|
|
|
// Smartthings Hub Information
|
|
// IPAddress hubIp(192, 168, 1, 149); // smartthings hub ip // <---You
|
|
// must edit this line! const unsigned int hubPort = 39500; // smartthings hub
|
|
// port
|
|
|
|
// Hubitat Hub Information
|
|
|
|
// hubitat hub ip
|
|
IPAddress hubIp(192, 168, 88, 251);
|
|
|
|
// hubitat hub port
|
|
const unsigned int hubPort = 39501;
|
|
|
|
//******************************************************************************************
|
|
// st::Everything::callOnMsgSend() optional callback routine. This is a sniffer
|
|
// to monitor
|
|
// data being sent to ST. This allows a user to act on data changes locally
|
|
// within the Arduino sktech withotu having to rely on the ST Cloud for
|
|
// time-critical tasks.
|
|
//******************************************************************************************
|
|
void callback(const String &msg) {
|
|
// Uncomment if it weould be desirable to using this function
|
|
// Serial.print(F("ST_Anything_Miltiples Callback: Sniffed data = "));
|
|
// Serial.println(msg);
|
|
|
|
// TODO: Add local logic here to take action when a device's value/state is
|
|
// changed
|
|
|
|
// Masquerade as the ThingShield to send data to the Arduino, as if from the
|
|
// ST Cloud (uncomment and edit following line(s) as you see fit)
|
|
// st::receiveSmartString("Put your command here!"); //use same strings that
|
|
// the Device Handler would send
|
|
}
|
|
|
|
//******************************************************************************************
|
|
// Arduino Setup() routine
|
|
//******************************************************************************************
|
|
void setup() {
|
|
//******************************************************************************************
|
|
// Declare each Device that is attached to the Arduino
|
|
// Notes: - For each device, there is typically a corresponding "tile"
|
|
// defined in your
|
|
// SmartThings Device Hanlder Groovy code, except when using new
|
|
// COMPOSITE Device Handler
|
|
// - For details on each device's constructor arguments below, please
|
|
// refer to the
|
|
// corresponding header (.h) and program (.cpp) files.
|
|
// - The name assigned to each device (1st argument below) must match
|
|
// the Groovy
|
|
// Device Handler names. (Note: "temphumid" below is the exception
|
|
// to this rule as the DHT sensors produce both "temperature" and
|
|
// "humidity". Data from that particular sensor is sent to the ST
|
|
// Hub in two separate updates, one for "temperature" and one for
|
|
// "humidity")
|
|
// - The new Composite Device Handler is comprised of a Parent DH and
|
|
// various Child
|
|
// DH's. The names used below MUST not be changed for the Automatic
|
|
// Creation of child devices to work properly. Simply increment the
|
|
// number by +1 for each duplicate device (e.g. contact1, contact2,
|
|
// contact3, etc...) You can rename the Child Devices to match your
|
|
// specific use case in the ST Phone Application.
|
|
//******************************************************************************************
|
|
// Polling Sensors
|
|
static st::IS_Button vhod1(F("vhod_24"), 24, LOW);
|
|
static st::IS_Button vhod2(F("vhod_25"), 25, LOW);
|
|
static st::IS_Button vhod3(F("vhod_26"), 26, LOW);
|
|
static st::IS_Button vhod4(F("vhod_27"), 27, LOW);
|
|
|
|
// Executors
|
|
static st::EX_Switch izhod1(F("izhod_28"), 28, LOW);
|
|
static st::EX_Switch izhod2(F("izhod_29"), 29, LOW);
|
|
static st::EX_Switch izhod3(F("izhod_30"), 30, LOW);
|
|
static st::EX_Switch izhod4(F("izhod_31"), 31, LOW);
|
|
|
|
//*****************************************************************************
|
|
// Configure debug print output from each main class
|
|
//*****************************************************************************
|
|
st::Everything::debug = true;
|
|
st::Executor::debug = true;
|
|
st::Device::debug = true;
|
|
st::PollingSensor::debug = true;
|
|
st::InterruptSensor::debug = true;
|
|
|
|
//*****************************************************************************
|
|
// Initialize the "Everything" Class
|
|
//*****************************************************************************
|
|
|
|
// Initialize the optional local callback routine (safe to comment out if not
|
|
// desired)
|
|
st::Everything::callOnMsgSend = callback;
|
|
|
|
// Create the SmartThings EthernetW5x00 Communications Object
|
|
// STATIC IP Assignment - Recommended
|
|
st::Everything::SmartThing = new st::SmartThingsEthernetW5x00(
|
|
mac, ip, gateway, subnet, dnsserver, serverPort, hubIp, hubPort,
|
|
st::receiveSmartString);
|
|
|
|
// DHCP IP Assigment - Must set your router's DHCP server to provice a static
|
|
// IP address for this device's MAC address st::Everything::SmartThing = new
|
|
// st::SmartThingsEthernetW5x00(mac, serverPort, hubIp, hubPort,
|
|
// st::receiveSmartString);
|
|
|
|
// Run the Everything class' init() routine which establishes Ethernet
|
|
// communications with the SmartThings Hub
|
|
st::Everything::init();
|
|
|
|
//*****************************************************************************
|
|
// Add each sensor to the "Everything" Class
|
|
//*****************************************************************************
|
|
st::Everything::addSensor(&vhod1);
|
|
st::Everything::addSensor(&vhod2);
|
|
st::Everything::addSensor(&vhod3);
|
|
st::Everything::addSensor(&vhod4);
|
|
|
|
//*****************************************************************************
|
|
// Add each executor to the "Everything" Class
|
|
//*****************************************************************************
|
|
st::Everything::addExecutor(&izhod1);
|
|
st::Everything::addExecutor(&izhod2);
|
|
st::Everything::addExecutor(&izhod3);
|
|
st::Everything::addExecutor(&izhod4);
|
|
|
|
//*****************************************************************************
|
|
// Initialize each of the devices which were added to the Everything Class
|
|
//*****************************************************************************
|
|
st::Everything::initDevices();
|
|
}
|
|
|
|
//******************************************************************************************
|
|
// Arduino Loop() routine
|
|
//******************************************************************************************
|
|
void loop() {
|
|
//*****************************************************************************
|
|
// Execute the Everything run method which takes care of "Everything"
|
|
//*****************************************************************************
|
|
st::Everything::run();
|
|
}
|