-
Notifications
You must be signed in to change notification settings - Fork 129
Closed
Description
Just in case for some bizarre reason it is different in other parts of the planet I have to state that I am using the shield in the uk.
My router reports that the mac address of the shield and of itself is in the reverse order of that shown in the example sketches.
Simply printing the mac address in the reverse order solves the issue:
byte mac[6]; WiFi.macAddress(mac); Serial.print("MAC address: "); Serial.print(mac[0], HEX); Serial.print(":"); Serial.print(mac[1], HEX); Serial.print(":"); Serial.print(mac[2], HEX); Serial.print(":"); Serial.print(mac[3], HEX); Serial.print(":"); Serial.print(mac[4], HEX); Serial.print(":"); Serial.println(mac[5], HEX);
David
Metadata
Metadata
Assignees
Labels
No labels