Created
May 16, 2020 13:41
-
-
Save tedysaputro-dev/708831c0b7e5b08bbe3c8f29509bb3af to your computer and use it in GitHub Desktop.
Print Out Mac Address ESP32
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 <WiFi.h> | |
void setup() { | |
// put your setup code here, to run once: | |
Serial.begin(115200); | |
Serial.println(); | |
Serial.print("ESP Board MAC Address: "); | |
Serial.println(WiFi.macAddress()); | |
} | |
void loop() { | |
// put your main code here, to run repeatedly: | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment