adds mac adress code to arduino folder
This commit is contained in:
13
arduino/mac_adress.ino
Normal file
13
arduino/mac_adress.ino
Normal file
@@ -0,0 +1,13 @@
|
||||
// Complete Instructions to Get and Change ESP MAC Address: https://RandomNerdTutorials.com/get-change-esp32-esp8266-mac-address-arduino/
|
||||
#include <WiFi.h>
|
||||
|
||||
void setup(){
|
||||
Serial.begin(115200);
|
||||
Serial.println();
|
||||
Serial.print("ESP Board MAC Address: ");
|
||||
Serial.println(WiFi.macAddress());
|
||||
}
|
||||
|
||||
void loop(){
|
||||
|
||||
}
|
Reference in New Issue
Block a user