#include <WiFi.h> // for wifi
void setup() {
// Initialize Serial for debugging
Serial.begin(115200);
while (!Serial) {
}
Serial.println("Start program.");
printMacAddress(); // this does not display the correct mac address, returns MAC Address: FC:3F:3:0:0:0
WiFi.mode(WIFI_STA); // test if ...
Search found 2 matches
- Sun Jan 19, 2025 11:32 am
- Forum: ESP-IDF
- Topic: WiFi Base MAC and STA MAC address definition
- Replies: 1
- Views: 11651
- Sun Jan 19, 2025 11:27 am
- Forum: General Discussion
- Topic: ESP32 MAC address does not match AP MAC address
- Replies: 2
- Views: 3616
Re: ESP32 MAC address does not match AP MAC address
#include <WiFi.h> // for wifi
void setup() {
// Initialize Serial for debugging
Serial.begin(115200);
while (!Serial) {
}
Serial.println("Start program.");
printMacAddress(); // this does not display the correct mac address, returns MAC Address: FC:3F:3:0:0:0
WiFi.mode(WIFI_STA); // test if ...
void setup() {
// Initialize Serial for debugging
Serial.begin(115200);
while (!Serial) {
}
Serial.println("Start program.");
printMacAddress(); // this does not display the correct mac address, returns MAC Address: FC:3F:3:0:0:0
WiFi.mode(WIFI_STA); // test if ...