Skip to content

Commit

Permalink
MAC-Adress of the controllers read and testcode added
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerandhill committed Nov 22, 2021
1 parent 6bb5c8d commit 2588b3f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/arduino.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"sketch": "BackhoeAngleSensor_SENSOR.ino",
"board": "esp8266:esp8266:nodemcuv2",
"configuration": "CpuFrequency=80,VTable=flash,FlashSize=4M3M,LwIPVariant=v2mss536,Debug=Disabled,DebugLevel=None____,FlashErase=none,UploadSpeed=115200",
"port": "COM8",
"port": "COM9",
"output": "build"
}
14 changes: 14 additions & 0 deletions TESTCODE_MAC_Scanner_ESP8266.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Complete Instructions to Get and Change ESP MAC Address: https://RandomNerdTutorials.com/get-change-esp32-esp8266-mac-address-arduino/

#include <ESP8266WiFi.h>

void setup(){
Serial.begin(115200);
Serial.println();
Serial.print("ESP8266 Board MAC Address: ");
Serial.println(WiFi.macAddress());
}

void loop(){

}
2 changes: 1 addition & 1 deletion TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


-MAC ADRESS ESP8266-SENSOR: A4:CF:12:BF:76:2D
-MAC ADRESS ESP32-DISPLAY:
-MAC ADRESS ESP32-DISPLAY: 24:62:AB:DD:49:68

0 comments on commit 2588b3f

Please sign in to comment.