User Manual

bool begin ( const char *ssid )
This is an alias for ' bool connect(const char* ssid) ' described above, and is provided to match the Arduino Client interface.
bool begin ( const char *ssid, const char *key, int enc_type = ENC_TYPE_AUTO )
This is an alias for ' bool connect(const char *ssid, const char *key, int enc_type) ' described above, and is provided to match
the Arduino Client interface.
void disconnect (void)
Disconnects from the current access point.
Parameters: None
Returns: Nothing
Network and Connection Details
The following functions provide information about the connection or the network setup when your device is connected
to an access point (AP).
bool connected ( void );
Checks if you are currently connected to an AP or not.
Parameters: None
Returns: 'True' (1) if you are currently connected to an access point (AP), otherwise 'false' (0).
uint8_t* macAddress ( uint8_t *mac );
Gets the HW mac address for the WICED Feather.
Parameters:
mac: The 6-byte uint8_t array to assign the mac address to. If you don't wish to use this field and use the
optional 'return value' instead simply provide NULL to this parameter.
Returns: A pointer to a 6-byte array containing the 48-bit HW MAC address for your WICED Feather.
uint32_t localIP ( void );
Returns the IPv4 address for your WICED Feather.
Parameters: None
Returns: A 32-bit integer containing the four bytes that make up the IPv4 address for your device.
uint32_t subnetMask ( void );
Returns the IPv4 subnet mask.
Parameters: None
© Adafruit Industries https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi Page 62 of 202