SmartThings Constructor
| 15 | // SmartThings Constructor |
| 16 | //******************************************************************************* |
| 17 | SmartThings::SmartThings(SmartThingsCallout_t *callout, String shieldType, bool enableDebug, int transmitInterval) : |
| 18 | _calloutFunction(callout), |
| 19 | _shieldType(shieldType), |
| 20 | _isDebugEnabled(enableDebug), |
| 21 | m_nTransmitInterval(transmitInterval) |
| 22 | { |
| 23 | |
| 24 | } |
| 25 | |
| 26 | //***************************************************************************** |
| 27 | //SmartThings::~SmartThings() |
nothing calls this directly
no outgoing calls
no test coverage detected