Movatterモバイル変換


[0]ホーム

URL:


Skip to content
HOMEESP32ESP8266ESP32-CAMRASPBERRY PIMICROPYTHONRPi PICOARDUINOREVIEWS

Get ESP32/ESP8266 MAC Address and Change It (Arduino IDE)

This guide shows how to get the ESP32 or ESP8266 NodeMCU boards MAC Address using Arduino IDE. We also show how to change your board’s MAC Address.

Get ESP32 or ESP8266 MAC Address and Change It (Arduino IDE)

What’s a MAC Address?

MAC Address stands forMediaAccessControl Address and it is a hardware unique identifier that identifies each device on a network.

MAC Addresses are made up of six groups of two hexadecimal digits, separated by colons, for example:30:AE:A4:07:0D:64.

MAC Addresses are assigned by manufacturers, but you can also give a custom MAC Address to your board. However, every time the board resets, it will return to its original MAC Address. So, you need to include the code to set a custom MAC Address in every sketch.

Table of Contents

Get ESP32 MAC Address

To get your ESP32 board MAC Address, upload the following code.

/*  Rui Santos & Sara Santos - Random Nerd Tutorials  Complete project details at https://RandomNerdTutorials.com/get-change-esp32-esp8266-mac-address-arduino/  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files.    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.*/#include <WiFi.h>#include <esp_wifi.h>void readMacAddress(){  uint8_t baseMac[6];  esp_err_t ret = esp_wifi_get_mac(WIFI_IF_STA, baseMac);  if (ret == ESP_OK) {    Serial.printf("%02x:%02x:%02x:%02x:%02x:%02x\n",                  baseMac[0], baseMac[1], baseMac[2],                  baseMac[3], baseMac[4], baseMac[5]);  } else {    Serial.println("Failed to read MAC address");  }}void setup(){  Serial.begin(115200);  WiFi.mode(WIFI_STA);  WiFi.STA.begin();  Serial.print("[DEFAULT] ESP32 Board MAC Address: ");  readMacAddress();} void loop(){}

View raw code

Demonstration

After uploading the code, open the Serial Monitor at a baud rate of 115200. Press the on-board RESET or EN button.

The MAC Address should be printed in the Serial Monitor as shown in the following figure.

Get Obtain ESP32 or ESP8266 MAC Address Physical using Arduino IDE

That’s it! Now, you know how to get your ESP32 MAC Address.

Set a Custom MAC Address for the ESP32

In some applications, it might be useful to give your boards a custom MAC Address. However, as explained previously,this doesn’t overwrite the MAC Address set by the manufacturer. So, every time you reset the board, or upload a new code, it will get back to its default MAC Address.

Change ESP32 MAC Address (Arduino IDE)

The following code sets a custom MAC Address for the ESP32 board.

/*  Rui Santos & Sara Santos - Random Nerd Tutorials  Complete project details at https://RandomNerdTutorials.com/get-change-esp32-esp8266-mac-address-arduino/  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files.    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.*/#include <WiFi.h>#include <esp_wifi.h>// Set your new MAC Addressuint8_t newMACAddress[] = {0x32, 0xAE, 0xA4, 0x07, 0x0D, 0x66};// Replace with your network credentialsconst char* ssid     = "REPLACE_WITH_YOUR_SSID";const char* password = "REPLACE_WITH_YOUR_PASSWORD";void readMacAddress(){  uint8_t baseMac[6];  esp_err_t ret = esp_wifi_get_mac(WIFI_IF_STA, baseMac);  if (ret == ESP_OK) {    Serial.printf("%02x:%02x:%02x:%02x:%02x:%02x\n",                  baseMac[0], baseMac[1], baseMac[2],                  baseMac[3], baseMac[4], baseMac[5]);  } else {    Serial.println("Failed to read MAC address");  }}void setup(){  Serial.begin(115200);  Serial.println();    WiFi.mode(WIFI_STA);  WiFi.STA.begin();    Serial.print("[DEFAULT] ESP32 Board MAC Address: ");  readMacAddress();  // Change ESP32 Mac Address  esp_err_t err = esp_wifi_set_mac(WIFI_IF_STA, &newMACAddress[0]);  if (err == ESP_OK) {    Serial.println("Success changing Mac Address");  }  // Read the new MAC address  Serial.print("[NEW] ESP32 Board MAC Address: ");  readMacAddress();  // Connect to Wi-Fi  WiFi.begin(ssid, password);  Serial.println("Connecting to WiFi...");  while (WiFi.status() != WL_CONNECTED) {    Serial.print(".");    delay(1000);  }  Serial.println("Connected");} void loop(){}

View raw code

You can set a custom MAC Address in the following line:

uint8_t newMACAddress[] = {0x32, 0xAE, 0xA4, 0x07, 0x0D, 0x66};

Attention: the bit 0 of the first byte of MAC address can not be 1. For example, the MAC address can set to be “1a:XX:XX:XX:XX:XX”, but can not be “15:XX:XX:XX:XX:XX”.

After uploading the code, open the Serial Monitor at a baud rate of 115200. Restart the ESP32 and you should get its default and new MAC Address.

Change and Set ESP32 MAC Address with Arduino IDE

Get ESP8266 NodeMCU MAC Address

To get your ESP8266 board Mac Address, use the following code.

/*  Rui Santos & Sara Santos - Random Nerd Tutorials  Complete project details at https://RandomNerdTutorials.com/get-change-esp32-esp8266-mac-address-arduino/  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files.    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.*/#include <ESP8266WiFi.h>void setup(){  Serial.begin(115200);  Serial.println();  Serial.print("ESP Board MAC Address:  ");  Serial.println(WiFi.macAddress());} void loop(){}

View raw code

Demonstration

After uploading the code, open the Serial Monitor at a baud rate of 115200. Press the on-board RESET or EN button. The MAC Address should be printed in the Serial Monitor.

ESP8266 Get Default Mac Address

Change the ESP8266 NodeMCU MAC Address (Arduino IDE)

The following code sets a custom MAC Address for the ESP8266 board.

// Complete Instructions: https://RandomNerdTutorials.com/get-change-esp32-esp8266-mac-address-arduino/#include <ESP8266WiFi.h>// Set your new MAC Addressuint8_t newMACAddress[] = {0x32, 0xAE, 0xA4, 0x07, 0x0D, 0x66};void setup(){  Serial.begin(115200);  Serial.println();    WiFi.mode(WIFI_STA);    Serial.print("[OLD] ESP8266 Board MAC Address:  ");  Serial.println(WiFi.macAddress());  // For Soft Access Point (AP) Mode  //wifi_set_macaddr(SOFTAP_IF, &newMACAddress[0]);  // For Station Mode  wifi_set_macaddr(STATION_IF, &newMACAddress[0]);    Serial.print("[NEW] ESP8266 Board MAC Address:  ");  Serial.println(WiFi.macAddress());} void loop(){}

View raw code

Set your custom MAC Address on the following line:

uint8_t newMACAddress[] = {0x32, 0xAE, 0xA4, 0x07, 0x0D, 0x66};

After uploading the code, open the Serial Monitor at a baud rate of 115200. Restart the ESP8266 and you should get its default and new MAC Address.

Change and Set ESP8266 MAC Address with Arduino IDE

Wrapping Up

In this quick guide, we’ve shown you how to get your ESP32 and ESP8266 manufacturer MAC Address with Arduino IDE. You’ve also learned how to set a custom MAC Address for your boards.

Learn more about the ESP32 and ESP8266 boards:

Thanks for reading.



SMART HOME with Raspberry Pi ESP32 and ESP8266 Node-RED InfluxDB eBook
Learn how to build a home automation system and we’ll cover the following main subjects: Node-RED, Node-RED Dashboard, Raspberry Pi, ESP32, ESP8266, MQTT, and InfluxDB database DOWNLOAD »
Learn how to build a home automation system and we’ll cover the following main subjects: Node-RED, Node-RED Dashboard, Raspberry Pi, ESP32, ESP8266, MQTT, and InfluxDB database DOWNLOAD »

Enjoyed this project? Stay updated by subscribing our newsletter!

41 thoughts on “Get ESP32/ESP8266 MAC Address and Change It (Arduino IDE)”

  1. Thank you very much Sara.
    A very interesting idea and i personally intend to use it in my projects.
    As some of my projects are MAC address dependent, in the unfortunate case of a chip failure, i have to go and change the code again for the new chip and put the new MAC address of the chip.
    With your solutions, i can replace 25 chips or more in the same projects, without modifying the new code.
    Great idea and i love it.
    Let’s say you make a product and sell it to 100 or thousands , or more customers all over the world using Ebay, Amazon, KickStarter or other mass selling companii. You do not have always the user address.
    Then …. the accident has happened and the board is destroyed.
    You are asked to provide a new board, which will not work because it has a new MAC.
    With your suggestion, , you are safe and whatever board you send will always work.
    You look on your database, see what was the MAC address used for that customer/board and program it on the replacement.
    You guys are genius.

    Reply
  2. Hello,
    I have a question.
    I used an example from the web and,
    First, they have a soft to get the MAC, but they GET 2 MAC
    one SOFT and one AP
    Which is the one to use?
    On their application i had to use the SOFT which is 2 bits higher than AP
    Let’s say AP MAC start with 60, then SOFT is 62.
    The rest is the same, but it is confusing.
    On your example it looks like i get the AP MAC address .
    I got lost here and i need some help.
    Thank you

    Reply
  3. Hello,
    i am building a “digital twin” of an LEGO technic Hub, by using an ESP32.
    Target is that ESP32 can be connected to LEGO BLE Apps.

    At least i have concerns, that one reason i did not get a connecteion request is because LEGO Apps using Address Filters .
    An Example of a LEGO HUB Adress is like:Advertising Address: LegoSyst_4a:3a:0c (90:84:2b:4a:3a:0c) ( a hub owned by me)
    As you may know ours is like: Advertising Address: Espressi_cb:69:fa (bc:dd:c2:cb:69:fa)

    Question is, how to change Advertising address is scetch to be shown as “LegoSyste” like : 90:84:2b:aa:bb:cc for example

    Thanks in advance

    Marc

    Reply
  4. Thank you very much Sara.
    I have a project that needs to permanently change the MAC address of the equipment vendor. I don’t know how to do it. Can you help me?

    Reply
    • Download the binary and edit it as a binary in a hex editor, but they will have to have set the mac themselves, you just need to find it and change it.

      Reply
  5. Thanks, Sara!
    I believe something has broken in the ESP32 code since it was published.


    esp_wifi_set_mac(ESP_IF_WIFI_STA, &newMACAddress[0]);

    Now causes the error:

    cannot convert ‘esp_interface_t’ to ‘wifi_interface_t’ for argument ‘1’ to ‘esp_err_t esp_wifi_set_mac(wifi_interface_t, const uint8_t*)’


    This used to work for me, hope there’s a quick solution!

    Reply
  6. Exellent article.

    Is there any criteria to assign a custom MAC address?

    I was trying to assign the address “0x53, 0x6D, 0x54, 0x00, 0x00, 0x01” to my board, but i noticed that the change only takes effect if i write “0x32, 0x6D, 0x54, 0x00, 0x00, 0x01”

    Is there “a range” of valid values for the first digit?

    Reply
    • Morning Diego

      Had a similar problem, but not only with the first hex values – also with subsequent values. Some new mac addresses work and some don’t. Eventually I found a series of addresses that worked and tested them on several ESP32 boards. Sticking to slight changes to the address given by RNT in their example or sticking close to mac addresses on the ESP32 boards that I have usually works. Creating mac addresses from scratch didn’t work so well.

      I want to set a static IP in my WiFi router for a project, but want to switch the physical ESP32 boards from time to time and retain a common IP address. Still work in progress.

      Reply
    • According to the ESP WiFi API reference for the esp_wifi_set_mac() function @ docs.espressif.com:

      The bit 0 of the first byte of ESP32 MAC address can not be 1. For example, the MAC address can set to be “1a:XX:XX:XX:XX:XX”, but can not be “15:XX:XX:XX:XX:XX”.

      Reply
  7. Hello,
    thanks for perfect tutorial.
    Please is there any way to change MAC on ethernet interface?
    Thanks for help.

    typedef enum {
    WIFI_IF_STA = ESP_IF_WIFI_STA,
    WIFI_IF_AP = ESP_IF_WIFI_AP,
    } wifi_interface_t;

    typedef enum {
    ESP_IF_WIFI_STA = 0, /< ESP32 station interface */
    ESP_IF_WIFI_AP, /
    < ESP32 soft-AP interface */
    ESP_IF_ETH, /**< ESP32 ethernet interface */ <– Need change MAC on this interface
    ESP_IF_MAX
    } esp_interface_t;

    Reply
  8. Hallo Sara
    Ich habe neuerdings ein Problem mit dem Wechseln der MAC-Adresse meiner ESP32 Module. Ich möchte die Bestehende MAC-Adresse (c8:28:96:bd:ed:18) in (aa:bb:cc:dd:ee:ff) wechseln.
    Nach dem Hochladen des Sketches erscheint nach einem Reset:

    [OLD] ESP32 Board MAC Address: C8:28:96:BD:ED:18
    [NEW] ESP32 Board MAC Address: AA:BB:CC:DD:EE:FF

    Das ist gut so.

    Nach einem erneuten Reset erwarte ich:
    [OLD] ESP32 Board MAC Address: AA:BB:CC:DD:EE:FF
    [NEW] ESP32 Board MAC Address: AA:BB:CC:DD:EE:FF

    es erscheint aber wieder

    [OLD] ESP32 Board MAC Address: C8:28:96:BD:ED:18
    [NEW] ESP32 Board MAC Address: AA:BB:CC:DD:EE:FF

    Wo ist da der Fehler?

    Vielen Dank

    Liebe Grüsse
    Hans

    Reply
    • Sorry,
      Hier in englisch (Google)

      Hi Sara
      I’ve recently had a problem with changing the MAC address of my ESP32 modules. I want to change the existing MAC address (c8:28:96:bd:ed:18) to (aa:bb:cc:dd:ee:ff).
      After uploading the sketch, the following appears after a reset:

      [OLD] ESP32 Board MAC Address: C8:28:96:BD:ED:18
      [NEW] ESP32 Board MAC Address: AA:BB:CC:DD:EE:FF

      That’s good.

      After another reset I expect:
      [OLD] ESP32 Board MAC Address: AA:BB:CC:DD:EE:FF
      [NEW] ESP32 Board MAC Address: AA:BB:CC:DD:EE:FF

      but it reappears

      [OLD] ESP32 Board MAC Address: C8:28:96:BD:ED:18
      [NEW] ESP32 Board MAC Address: AA:BB:CC:DD:EE:FF

      Where’s the mistake?

      Many Thanks

      Warm greetings
      Hans

      Reply
      • Thank you, Hans, for writing in English.

        Reply
      • Hi.
        As mentioned in the tutorial “MAC Addresses are assigned by manufacturers, but you can also give a custom MAC Address to your board. However, every time the board resets, it will return to its original MAC Address. So, you need to include the code to set a custom MAC Address in every sketch.”

        “However, as explained previously, this doesn’t overwrite the MAC Address set by the manufacturer. So, every time you reset the board, or upload a new code, it will get back to its default MAC Address.”

        I hope this is clear.
        Regards,
        Sara

        Reply
  9. Looks like
    esp_wifi_set_mac(ESP_IF_WIFI_STA, &newMACAddress[0]);

    Has been broken again. I am getting the “Undeclared” error. I ran a check on the wifi library, looks like the esp_wifi_set_mac has been removed. I am still searching the internet, for a fix. I am using esp_now.h library as well.

    Reply
  10. Great article, thank you.

    Will changing a mac address like this also work for ESP-Now communication as well as WiFi please?

    Thanks.
    C

    Reply
  11. Thanks Sara. I have tried it now and can confirm it works beautifully.
    Chris

    Reply
  12. How do you change the MAC address so that the program using esptool.py doesn’t change? is it the AT command or what?

    Reply
  13. I do the ESP’s device identification just a bit differently. For my home ESP-NOW STA network I first I change the device’s IP address. Replace the device with a new board and the node’s IP stays the same.

    Then I build the node’s WiFi STA MAC address to something like: 0:0:0:0:0:IP.

    The IP is simply the node’s BOARD_ID as set via a compiler directive in my master platformIO.ini file enabling a new device to configure itself within its Arduino’s core setup routine.

    In the platformIO.ini file, other such compiler directives set the WiFi Channel to use and the IP of the HUB node. The HUB is an ESP32 use in a modified HUB’n Spoke network topology. All ESP32 are setup as M2M-TW. The designated HUB acts a Master to ESP8266 Slave nodes as O2O-TW. The HUB also provides an Internet gateway for the entire ESP Now Node Network, ENNN.

    Instead of ‘ESP-NOW Broadcasting’ I use a DIY ‘multitasking’ scheme. Multicasting enables pseudo-broadcasting (i.e. multicast to all ENNN devices) as well as multicasting to specific groups or subsets of network nodes.

    This brings us back to the custom MAC address. We earlier set MAC[5] equal to the board’s IP, now each device can simply set its MAC[4] to an encoded group ID like, 0:0:0:0:ID:IP where ID is a group identification code maintained in the master platformIO.ini file. Now when multitasking messages, I can specify to which group.

    …still a work in-process.

    Reply
  14. Hi guys!
    I have discovered ESP32 world recently, because I have been focused in the Raspberry pi this last years. I have to say that your articles are really good. Well explained, full of examples and very straight forward. I have learned a lot from them and beg you please continue doing them. I am applying esp-nov comm system in a project and I have to say that the results are really amazing. Thank you very much.

    Reply
  15. Hi, Just want to ask if ever an ESP32 is cloned, will the mac address be cloned also ? If 3 pcs. are cloned, will all 3 ESP32 have same mac address ? Thanks.

    Reply
  16. Thanks a lot for this tutorial
    However, it gave me an error : not delcared in this scope

    So this function worked fine for me:

    esp_base_mac_addr_set(newMACAddress);

    Reply
  17. hi @Sara santos
    I tried this code for getting my ESP32 mac address but the words are not readable like belove:
    @⸮⸮I\
    bb⸮x$+⸮A⸮ \⸮B⸮⸮ʬ⸮⸮%⸮⸮$⸮⸮⸮⸮⸮RqzY
    ⸮⸮NbH

    do you know what is the problem?

    Reply
    • Hi.
      You’re probably not setting the right baud rate of 115200 on the serial monitor.
      Regards,
      Sara

      Reply
      • Sorry for bothering @Sara santos
        I’m implementing ESP-NOW for my project.
        I want to send 4 analog inputs simultaneously to slave board, does ESP32 master is capable of transmitting this rate of data? According to the 250Mb/s limitation.

        Best wishes

        Reply
  18. Tnx sara
    I did it and worked. 👌🏻

    Reply
  19. The code to get MAC address does not work. This works:-
    #include <WiFi.h>

    void setup(){
    Serial.begin(115200);
    Serial.print(“\Default ESP32 MAC Address: “);
    Serial.println(Network.macAddress());
    }

    void loop(){
    }

    me_no_dev expressif / arduino esp32 github comment April 14

    Reply
  20. Hi Sara,

    I think you do great Work

    I have the Arduino Nano ESP32 for witch I tried to get the MAC Address, It didn’t work with your code so after several tries I changed It a bit.

    Now It works and I’m able to get the MAC Address of my Board, below you can find the changes in the Code (Look for Changed).

    #include <WiFi.h>
    #include <esp_wifi.h>

    void readMacAddress(){
    uint8_t baseMac[6];
    esp_err_t ret = esp_wifi_get_mac(WIFI_IF_STA, baseMac);
    if (ret == ESP_OK) {
    Serial.printf(“%02x:%02x:%02x:%02x:%02x:%02x\n”,
    baseMac[0], baseMac[1], baseMac[2],
    baseMac[3], baseMac[4], baseMac[5]);
    } else {
    Serial.println(“Failed to read MAC address”);
    }
    }

    void setup(){
    Serial.begin(9600);

    WiFi.mode(WIFI_STA);
    //WiFi.STA.begin();
    WiFi.begin();   //I got an error on WiFi.STA.begin(); so I changed that to WiFi.begin();
    delay(1000);    //Changed
    Serial.print(“[DEFAULT] ESP32 Board MAC Address: “);
    delay(1000);    //Changed
    readMacAddress();
    }

    void loop(){

    }

    Best regards,

    Martin

    Reply

Leave a CommentCancel reply

Learn ESP32

ESP32 Introduction

ESP32 Arduino IDE

ESP32 Arduino IDE 2.0

VS Code and PlatformIO

ESP32 Pinout

ESP32 Inputs Outputs

ESP32 PWM

ESP32 Analog Inputs

ESP32 Interrupts Timers

ESP32 Deep Sleep

Protocols

ESP32 Web Server

ESP32 LoRa

ESP32 BLE

ESP32 BLE Client-Server

ESP32 Bluetooth

ESP32 MQTT

ESP32 ESP-NOW

ESP32 Wi-Fi

ESP32 WebSocket

ESP32 ESP-MESH

ESP32 Email

ESP32 Text Messages

ESP32 HTTP GET POST

HTTP GET Web APIs

HTTP POST Web APIs

Server-Sent Events

Web Servers

Output Web Server

PWM Slider Web Server

PWM Multiple Sliders Web Server

Async Web Server

Relay Web Server

Servo Web Server

DHT Web Server

BME280 Web Server

BME680 Web Server

DS18B20 Web Server

LoRa Web Server

Plot/Chart Web Server

Chart Multiple Series Web Server

SPIFFS Web Server

Thermostat Web Server

Momentary Switch Web Server

Physical Button Web Server

Input Fields Web Server

Images Web Server

RGB LED Web Server

Timer/Pulse Web Server

HTTP Auth Web Server

MPU-6050 Web Server

MicroSD Card Web Server

Stepper Motor Web Server

Stepper Motor WebSocket

Gauges Web Server

DIY Cloud

ESP32 Weather Station

Control GPIOs

View Sensor Readings

ESP32 MySQL

ESP32 PHP Email

ESP32 SIM800L

Cloud Node-RED Dashboard

Cloud MQTT Broker

ESP32 Cloud MQTT

ESP-NOW

ESP-NOW Introduction

ESP-NOW Two-Way

ESP-NOW One-to-Many

ESP-NOW Many-to-One

ESP-NOW + Wi-Fi Web Server

Firebase

Firebase Realtime Database

Firebase Web App

Firebase Authentication

Firebase BME280

Firebase Web App Sensor Readings

Firebase ESP32 Data Logging

Modules

ESP32 Relay Module

ESP32 DC Motors

ESP32 Servo

ESP32 Stepper Motor

ESP32 MicroSD Card

ESP32 MicroSD Card Data Logging

ESP32 PIR

ESP32 HC-SR04

ESP32 I2C Multiplexer

Sensors

ESP32 DHT11/DHT22

ESP32 BME280

ESP32 BME680

ESP32 DS18B20

ESP32 Multiple DS18B20

ESP32 BMP180

ESP32 BMP388

MQTT DHT11/DHT22

MQTT BME280

MQTT BME680

MQTT DS18B20

ESP32 MPU-6050

Displays

ESP32 OLED

ESP32 LCD

OLED Temperature

ESP32 Features

ESP32 Hall Sensor

ESP32 Touch Sensor

ESP32 I2C

ESP32 Flash Memory

ESP32 Dual Core

Useful Guides

ESP32 Troubleshooting

ESP32 Access Point

ESP32 Fixed IP Address

ESP32 MAC Address

ESP32 Hostname

ESP32 OTA

ESP32 OTA Arduino

ESP32 OTA VS Code

ESP32 Solar Panels

ESP32 Alexa

ESP32 Install SPIFFS

ESP32 Time and Date

ESP32 Epoch Time

ESP32 Google Sheets

ESP32 Email Altert

ESP32 ThingSpeak

Weather Station Shield

ESP32 IoT Shield

ESP32 Weather Station PCB

ESP32 Wi-Fi Manager

VS Code and PlatformIO

VS Code SPIFFS

VS Code Workspaces

Save Data Preferences Library

Reconnect to Wi-Fi

Useful Wi-Fi Functions

Other Projects

Telegram Control Outputs

Telegram Sensor Readings

Telegram Detect Motion

Telegram Group

ESP32 Status PCB

ESP32 BMP388 Datalogger

ESP32 Web Serial

ESP32 Door Monitor

ESP32 Door Telegram

ESP32 NTP Timezones

ESP32 Boards

ESP32 Camera

ESP32 LoRa

ESP32 OLED

ESP32 SIM800L

Learn More

Learn ESP32

Learn ESP8266

Learn ESP32-CAM

Learn MicroPython

Learn Arduino

Build Web Servers eBook

Smart Home eBook

Firebase Web App eBook

ESP32 Premium Course

Affiliate Disclosure:Random Nerd Tutorials is a participant in affiliate advertising programs designed to provide a means for us to earn fees by linking to Amazon, eBay, AliExpress, and other sites. We might be compensated for referring traffic and business to these companies.



Learn ESP32 with Arduino IDE eBook » Complete guide to program the ESP32 with Arduino IDE!



SMART HOME with Raspberry Pi, ESP32, and ESP8266 » learn how to build a complete home automation system.



Learn Raspberry Pi Pico/Pico W with MicroPython​ » The complete getting started guide to get the most out of the the Raspberry Pi Pico/Pico W (RP2040) microcontroller board using MicroPython programming language.



🔥 Learn LVGL: Build GUIs for ESP32 Projects​ » Learn how to build Graphical User Interfaces (GUIs) for ESP32 Projects using LVGL (Light Versatile Graphics Library) with the Arduino IDE.

Download Our Free eBooks and Resources

Get instant access to our FREE eBooks, Resources, and Exclusive Electronics Projects by entering your email address below.


[8]ページ先頭

©2009-2025 Movatter.jp