Implementation of the WifiPlusClick hardware module.

Dependents:   WifiPlusKlickExample

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers WifiPlusClick.h Source File

WifiPlusClick.h

00001 #ifndef __WIFIPLUSCLICK_H__
00002 #define __WIFIPLUSCLICK_H__
00003 
00004 #include "Wifi.h"
00005 
00006 class WifiPlusClick : public Wifi
00007 {
00008 public:
00009     WifiPlusClick(PinName tx, PinName rx, PinName rst, bool dhcp, const char * ssid, WPA_SECURITY_t sec, const char* passphrase, int plen);
00010     
00011     bool connect();
00012     
00013     bool connect(IPADDRESS_t *ipAddress, IPADDRESS_t* subnetMask, IPADDRESS_t* ipGateway);
00014  
00015     bool disconnect();   
00016 };
00017 
00018 #endif // __WIFIPLUSCLICK_H__