st-anything/lib/SmartThings/SmartThings.cpp
Gašper Dobrovoljc ec125f27db
IP Configuration
2023-03-11 15:11:03 +01:00

35 lines
1.0 KiB
C++

//*******************************************************************************
// 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()
{
}
}