Created
October 3, 2024 14:09
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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