adds mac adress code to arduino folder

This commit is contained in:
Sietse Jonker
2024-03-08 11:38:31 +01:00
parent 28bfd3a300
commit 08c9bedb44
2 changed files with 13 additions and 4 deletions

13
arduino/mac_adress.ino Normal file
View 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(){
}