Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbedConnectorInterface by
Diff: api/OptionsBuilder.h
- Revision:
- 15:8ada80242804
- Parent:
- 3:11b2f4e58378
- Child:
- 19:e2cbaeeea509
--- a/api/OptionsBuilder.h Tue Feb 03 06:51:34 2015 +0000 +++ b/api/OptionsBuilder.h Thu Feb 05 14:49:04 2015 +0000 @@ -130,6 +130,24 @@ OptionsBuilder &addResource(const DynamicResource *static_resource); /** + Set the WiFi SSID + @param ssid input the WiFi SSID + */ + OptionsBuilder &setWiFiSSID(char *ssid); + + /** + Set the WiFi AuthType + @param auth_type input the WiFi AuthType + */ + OptionsBuilder &setWiFiAuthType(WiFiAuthTypes auth_type); + + /** + Set the WiFi AuthKey + @param auth_key input the WiFi AuthKey + */ + OptionsBuilder &setWiFiAuthKey(char *auth_key); + + /** Build our our immutable self */ Options *build();