Reference.WiFiMACAddress History
Hide minor edits - Show changes to output
November 28, 2011, at 09:59 AM
by Scott Fitzgerald -
Changed lines 11-12 from:
to:
Changed lines 15-16 from:
to:
mac: a 6 byte array to hold the MAC address
November 22, 2011, at 03:45 AM
by Scott Fitzgerald -
Changed lines 19-20 from:
to:
byte array : 6 bytes representing the MAC address of your shield
Changed lines 23-24 from:
to:
(:source lang=arduino tabwidth=4:)
#include <SPI.h>
Changed line 62 from:
to:
November 21, 2011, at 09:53 PM
by Scott Fitzgerald -
Added lines 1-61:
[[WiFi]]
!!WiFi.macAddress()
!!!!Description
Gets the MAC Address of your WiFi shield
!!!!Syntax
WiFi.macAddress(); \\
!!!!Parameters
none
!!!!Returns
byte array
!!!!Example
[@
#include <WiFi.h>
char ssid[] = "yourNetwork"; // the name of your network
int status = WL_IDLE_STATUS; // the Wifi radio's status
byte mac[6]; // the MAC address of your Wifi shield
void setup()
{
Serial.begin(9600);
status = WiFi.begin(ssid);
if ( status != WL_CONNECTED) {
Serial.println("Couldn't get a wifi connection");
while(true);
}
// if you are connected, print your MAC address:
else {
WiFi.macAddress(mac);
Serial.print("MAC: ");
Serial.print(mac[5],HEX);
Serial.print(":");
Serial.print(mac[4],HEX);
Serial.print(":");
Serial.print(mac[3],HEX);
Serial.print(":");
Serial.print(mac[2],HEX);
Serial.print(":");
Serial.print(mac[1],HEX);
Serial.print(":");
Serial.println(mac[0],HEX);
}
}
void loop () {}
@]