From 08c9bedb44ea459e8a32632bae46e10c30408cbe Mon Sep 17 00:00:00 2001 From: Sietse Jonker Date: Fri, 8 Mar 2024 11:38:31 +0100 Subject: [PATCH] adds mac adress code to arduino folder --- arduino/mac_adress.ino | 13 +++++++++++++ web/index.html | 4 ---- 2 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 arduino/mac_adress.ino diff --git a/arduino/mac_adress.ino b/arduino/mac_adress.ino new file mode 100644 index 0000000..67dff28 --- /dev/null +++ b/arduino/mac_adress.ino @@ -0,0 +1,13 @@ +// Complete Instructions to Get and Change ESP MAC Address: https://RandomNerdTutorials.com/get-change-esp32-esp8266-mac-address-arduino/ +#include + +void setup(){ + Serial.begin(115200); + Serial.println(); + Serial.print("ESP Board MAC Address: "); + Serial.println(WiFi.macAddress()); +} + +void loop(){ + +} \ No newline at end of file diff --git a/web/index.html b/web/index.html index 1d30d1d..2bb052a 100644 --- a/web/index.html +++ b/web/index.html @@ -8,7 +8,6 @@ Node dev page - @@ -24,11 +23,8 @@ -
- -