custom for >5 resources
Fork of mbedConnectorInterface by
Diff: api/Options.cpp
- Revision:
- 15:8ada80242804
- Parent:
- 4:84159d67d32d
- Child:
- 19:e2cbaeeea509
diff -r 5cfaeee144bc -r 8ada80242804 api/Options.cpp --- a/api/Options.cpp Tue Feb 03 06:51:34 2015 +0000 +++ b/api/Options.cpp Thu Feb 05 14:49:04 2015 +0000 @@ -105,4 +105,19 @@ return &this->m_dynamic_resources; } +// WiFi SSID +string Options::getWiFiSSID() { + return this->m_wifi_ssid; +} + +// WiFi AuthType +WiFiAuthTypes Options::getWiFiAuthType() { + return this->m_wifi_auth_type; +} + +// WiFi AuthKey +string Options::getWiFiAuthKey() { + return this->m_wifi_auth_key; +} + } // namespace Connector