65 lines
2.4 KiB
C++
65 lines
2.4 KiB
C++
//******************************************************************************************
|
|
// File: IS_Contact.h
|
|
// Authors: Dan G Ogorchock & Daniel J Ogorchock (Father and Son)
|
|
//
|
|
// Summary: IS_Contact is a class which implements the SmartThings "Contact Sensor" device capability.
|
|
// It inherits from the st::InterruptSensor class.
|
|
//
|
|
// Create an instance of this class in your sketch's global variable section
|
|
// For Example: st::IS_Contact sensor6(F("contact1"), PIN_CONTACT, HIGH, true, 500);
|
|
//
|
|
// st::IS_Contact() constructor requires the following arguments
|
|
// - String &name - REQUIRED - the name of the object - must match the Groovy ST_Anything DeviceType tile name
|
|
// - byte pin - REQUIRED - the Arduino Pin to be used as a digital input
|
|
// - bool iState - REQUIRED - LOW or HIGH - determines which value indicates the interrupt is true
|
|
// - bool internalPullup - OPTIONAL - true == INTERNAL_PULLUP
|
|
// - long numReqCounts - OPTIONAL - number of counts before changing state of input (prevent false alarms)
|
|
//
|
|
// Change History:
|
|
//
|
|
// Date Who What
|
|
// ---- --- ----
|
|
// 2015-01-03 Dan & Daniel Original Creation
|
|
// 2015-03-17 Dan Ogorchock Added optional "numReqCounts" constructor argument/capability
|
|
// 2018-08-30 Dan Ogorchock Modified comment section above to comply with new Parent/Child Device Handler requirements
|
|
//
|
|
//
|
|
//******************************************************************************************
|
|
|
|
#ifndef ST_IS_CONTACT_H
|
|
#define ST_IS_CONTACT_H
|
|
|
|
#include "InterruptSensor.h"
|
|
|
|
namespace st
|
|
{
|
|
class IS_Contact: public InterruptSensor
|
|
{
|
|
private:
|
|
//inherits everything necessary from parent InterruptSensor Class
|
|
|
|
public:
|
|
//constructor - called in your sketch's global variable declaration section
|
|
IS_Contact(const __FlashStringHelper *name, byte pin, bool iState, bool internalPullup = false, long numReqCounts = 0); //(defaults to NOT using internal pullup resistors, and required counts = 0)
|
|
|
|
//destructor
|
|
virtual ~IS_Contact();
|
|
|
|
//initialization function
|
|
virtual void init();
|
|
|
|
//called periodically by Everything class to ensure ST Cloud is kept consistent with the state of the contact sensor
|
|
virtual void refresh();
|
|
|
|
//handles what to do when interrupt is triggered
|
|
virtual void runInterrupt();
|
|
|
|
//handles what to do when interrupt is ended
|
|
virtual void runInterruptEnded();
|
|
|
|
};
|
|
}
|
|
|
|
|
|
#endif
|