public constructor
| 26 | //public |
| 27 | //constructor |
| 28 | Device::Device(const __FlashStringHelper *name): |
| 29 | m_pName(name) |
| 30 | { |
| 31 | if(debug) |
| 32 | { |
| 33 | Serial.print(F("Device: New Device ID: ")); |
| 34 | Serial.println(getName()); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | //destructor |
| 39 | Device::~Device() |