Created
May 29, 2019 17:15
-
-
Save iamgoangle/fc36674694f9d707834ab978e8c8b3fc to your computer and use it in GitHub Desktop.
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); | |
| } | |
| 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