Skip to content

Instantly share code, notes, and snippets.

@tedysaputro-dev
Created May 16, 2020 13:41
Show Gist options
  • Save tedysaputro-dev/708831c0b7e5b08bbe3c8f29509bb3af to your computer and use it in GitHub Desktop.
Save tedysaputro-dev/708831c0b7e5b08bbe3c8f29509bb3af to your computer and use it in GitHub Desktop.
Print Out Mac Address ESP32
#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