Arduino/WiFi/WiFi.h

99 lines
2.5 KiB
C
Raw Normal View History

2011-02-28 04:49:08 -08:00
#ifndef WiFi_h
#define WiFi_h
#include <inttypes.h>
extern "C" {
#include "utility/wl_definitions.h"
2011-02-28 04:49:08 -08:00
}
#include "IPAddress.h"
#include "WiFiClient.h"
#include "WiFiServer.h"
2011-02-28 04:49:08 -08:00
class WiFiClass
{
private:
// this data are stored in EEPROM and loaded at begin
// The next connect overwrite these values
static char _ssid[WL_SSID_MAX_LENGTH];
static char _key[WL_WEP_KEY_MAX_LENGTH];
static char _passph[WL_WPA_KEY_MAX_LENGTH];
2011-03-01 10:38:14 -08:00
static wl_status_t _status;
2011-02-28 04:49:08 -08:00
static void init();
2011-02-28 04:49:08 -08:00
public:
static int16_t _state[MAX_SOCK_NUM];
2011-02-28 04:49:08 -08:00
static uint16_t _server_port[MAX_SOCK_NUM];
2011-03-01 10:38:14 -08:00
2011-02-28 04:49:08 -08:00
WiFiClass();
// Get thefirst socket available
static uint8_t getSocket();
// Start Wifi connection with latest settings
int begin();
2011-02-28 04:49:08 -08:00
// Start Wifi connection with no encryption
int begin(char* ssid);
2011-02-28 04:49:08 -08:00
// Start Wifi connection with WEP encryption
int begin(char* ssid, uint8_t key_idx, const char* key);
2011-02-28 04:49:08 -08:00
// Start Wifi connection with passphrase
// the most secure supported mode will be automatically selected
int begin(char* ssid, const char *passphrase);
2011-02-28 04:49:08 -08:00
// Disconnect from the network
int disconnect(void);
2011-02-28 04:49:08 -08:00
//Get the interface MAC address.
uint8_t* macAddress(uint8_t* mac);
2011-02-28 04:49:08 -08:00
2011-03-01 10:38:14 -08:00
//Get the DHCP information related to IP
2011-06-05 16:27:45 -07:00
IPAddress localIP();
2011-02-28 04:49:08 -08:00
//Get the DHCP information related to subnetMask
IPAddress subnetMask();
2011-02-28 04:49:08 -08:00
//Get the DHCP information related to gateway IP
IPAddress gatewayIP();
2011-02-28 04:49:08 -08:00
// Return the current SSID associated with the network
char* SSID();
2011-02-28 04:49:08 -08:00
// Return the current BSSID associated with the network
uint8_t* BSSID(uint8_t* bssid);
2011-02-28 04:49:08 -08:00
// Return the current RSSI /Received Signal Strength in dBm) associated with the network
int32_t RSSI();
// Return the Encryption Type associated with the network
uint8_t encryptionType();
2011-02-28 04:49:08 -08:00
// Start scan WiFi networks available and return the discovered number
uint8_t scanNetworks();
// Return SSID item associated with the network identified with networkItem
char* SSID(uint8_t networkItem);
// Return the Encryption Type associated with the network identified with networkItem
uint8_t encryptionType(uint8_t networkItem);
// Return the current RSSI /Received Signal Strength in dBm) associated with the network identified with networkItem
int32_t RSSI(uint8_t networkItem);
2011-02-28 04:49:08 -08:00
2011-04-05 14:24:17 -07:00
// Return Connection status
uint8_t status();
// function used for test
uint8_t test();
friend class WiFiClient;
friend class WiFiServer;
2011-02-28 04:49:08 -08:00
};
extern WiFiClass WiFi;
#endif