Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save dalewilson-eetech/b1a0c49612f24ef4cfb5ad00fd1c942b to your computer and use it in GitHub Desktop.

Select an option

Save dalewilson-eetech/b1a0c49612f24ef4cfb5ad00fd1c942b to your computer and use it in GitHub Desktop.
All About Circuits Project - Retro Handheld Gaming Console with Motion Control and an LCD - MAC Address Finder
#include <ESP8266WiFi.h>
void setup() {
Serial.begin(115200);
delay(500);
Serial.println();
Serial.print("MAC address: ");
Serial.println(WiFi.macAddress());
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment