Skip to content

Instantly share code, notes, and snippets.

@iamgoangle
Created May 29, 2019 17:15
Show Gist options
  • Select an option

  • Save iamgoangle/fc36674694f9d707834ab978e8c8b3fc to your computer and use it in GitHub Desktop.

Select an option

Save iamgoangle/fc36674694f9d707834ab978e8c8b3fc to your computer and use it in GitHub Desktop.
#include <ESP8266WiFi.h>
void setup(){
Serial.begin(115200);
}
void loop(){
Serial.println();
Serial.print("MAC: ");
Serial.println(WiFi.macAddress());
delay(3000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment