forked from DanielOgorchock/ST_Anything
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmartThings.cpp
More file actions
34 lines (29 loc) · 1.01 KB
/
SmartThings.cpp
File metadata and controls
34 lines (29 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//*******************************************************************************
// SmartThings Arduino Library Base Class
//
// License
// (C) Copyright 2017 Dan Ogorchock
//
// History
// 2017-02-04 Dan Ogorchock Created
//*******************************************************************************
#include <SmartThings.h>
namespace st
{
//*******************************************************************************
// SmartThings Constructor
//*******************************************************************************
SmartThings::SmartThings(SmartThingsCallout_t *callout, String shieldType, bool enableDebug, int transmitInterval) :
_calloutFunction(callout),
_shieldType(shieldType),
_isDebugEnabled(enableDebug),
m_nTransmitInterval(transmitInterval)
{
}
//*****************************************************************************
//SmartThings::~SmartThings()
//*****************************************************************************
SmartThings::~SmartThings()
{
}
}