Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@yarogniew
Created January 18, 2019 21:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yarogniew/2e75ee7fde694f43defb7ecb7db70eae to your computer and use it in GitHub Desktop.
Save yarogniew/2e75ee7fde694f43defb7ecb7db70eae to your computer and use it in GitHub Desktop.
#include <ESP8266WiFi.h>
void setup(){
Serial.begin(115200);
delay(500);
Serial.println();
Serial.print("MAC: ");
Serial.println(WiFi.macAddress());
}
void loop(){
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