mbed Connector Endpoint interface. This interface permits a mbed endpoint to easily setup MDS resources and emit those resources to an MDS server.

Dependents:   IoT_LED_demo ServoTest uWater_Project hackathon ... more

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();