
What’s the difference between ESP32 and ESP8266? Should you use the ESP32 or the ESP8266 in your projects? In this article, we’ll compare the ESP32 with the ESP8266 and cover the pros and cons of each board.
The ESP32 and ESP8266 are cheap Wi-Fi modules perfectly suited for DIY projects in the Internet of Things (IoT) and Home Automation fields.
Both chips have a 32-bit processor. The ESP32 is a dual-core 160MHz to 240MHz CPU, whereas the ESP8266 is a single-core processor that runs at 80MHz.
These modules come with GPIOs that support various protocols like SPI, I2C, UART, ADC, DAC, and PWM. The best part is that these boards come with wireless networking included, which makes them apart from other microcontrollers like the Arduino. This means that you can easily control and monitor devices remotely via Wi-Fi or Bluetooth (in the case of ESP32) for a very low price.
Alternatively, if you don’t need to use its wireless capabilities, you can use the ESP32/ESP8266 to control inputs and outputs as you would do with an Arduino. However, you should take into account that whereas the Arduino works with 5V logic, the ESP32 and ESP8266 work at 3.3V.
Specifications: ESP32 vs ESP8266
The ESP32 is the ESP8266 successor. It adds an extra CPU core, faster Wi-Fi, more GPIOs, and supports Bluetooth 4.2 and Bluetooth low energy. Additionally, the ESP32 comes with touch-sensitive pins that can be used to wake up the ESP32 from deep sleep, a built-in hall effect sensor, and a built-in temperature sensor (recent versions of the ESP32 don’t come with a built-in temperature sensor anymore).
Both boards are cheap, but the ESP32 costs slightly more. While the ESP32 can cost around $6 to $12, the ESP8266 can cost $4 to $6 (but it really depends on where you get them and what model you’re buying).
The following table shows the main differences between the ESP8266 and the ESP32 chips (table adapted from AMICA_IO).
Using ESP32 or ESP8266 bare chips is not easy or practical, especially when testing and prototyping. Most of the time, you’ll want to use ESP32 and ESP8266 development boards. These boards come with all the needed circuitry to power the chip, connect it to your computer, a circuit to upload code easily, pins to connect peripherals, built-in power and control LEDs, and other useful features.
The ESP32 and ESP8266 development boards we use more often are the ESP32 DEVKIT DOIT Development board and the ESP8266 ESP-12E NodeMCU Kit and these are the ones we recommend for beginners. However, there are many other models of development boards that you can choose from. We recommend that you read the following guides:
More GPIOs on the ESP32
The ESP32 has more GPIOs than the ESP8266, and you can decide which pins are UART, I2C, SPI—you need to set that on the code. This is possible due to the ESP32 chip’s multiplexing feature that allows you to assign multiple functions to the same pin.
If you don’t set them on the code, they will be on the pins defined by default, as shown in the following figure (this is an example for the ESP32 DEVKIT V1 DOIT board (version with 36 GPIOS)—the pin location can change depending on the manufacturer).
To learn more about the ESP32 GPIOs and how to use them, read:
For means of comparison, here’s the pinout diagram for the ESP8266 ESP-12E NodeMCU Kit.

To learn more about the ESP8266 GPIOs and how to use them, read:
PWM, ADC, and More
You can set PWM signals in any GPIO with configurable frequencies and duty cycle set on the code.
When it comes to the analog pins, these are static, but the ESP32 supports measurements on 18 channels (analog-enabled pins) versus just one 10-bit ADC pin on the ESP8266. The ESP32 also supports two 8-bit DAC channels.
Moreover, the ESP32 contains 10 capacitive sensing GPIOs, that detect touch and can be used to trigger events, or wake-up the ESP32 from deep sleep, for example.
The ESP32 supports Bluetooth communication protocol by default, while the ESP8266 doesn’t.
Arduino IDE – ESP32 vs ESP8266
There are many ways to program the ESP32 and ESP8266 boards. Both boards can be programmed with the Arduino core using the Arduino IDE or other IDEs (like VS Code with the PlatformIO extension).

These are good news, especially for those used to program the Arduino board and are familiar with the Arduino “programming language”.
Getting started with the ESP32 or ESP8266 using Arduino IDE and have your first project running is very simple. You can follow these guides:
Although you can program both boards using Arduino IDE, they might not be compatible with the same libraries and functions. Some libraries are just compatible with one of the boards. This means that most of the time, your ESP8266 code will not be compatible with the ESP32. However, usually, you need to make a few modifications.
We have a dedicated list of free tutorials and projects for the ESP32 and ESP8266 boards using the Arduino IDE that you might found useful:
MicroPython Firwmare – ESP32 vs ESP8266
Another popular way of programming the ESP32 and ESP8266 boards is using MicroPython firmware.

MicroPython is a re-implementation of Python 3 targeted for microcontrollers and embedded systems. MicroPython is very similar with regular Python. So, if you already know how to program in Python, you also know how to program in MicroPython.
In MicroPython, most Python scripts are compatible with both boards (unlike when using Arduino IDE). This means that most of the time, you can use the same script for ESP32 and ESP8266.
You can get started with MicroPython firmware on the ESP32 and ESP8266 very quickly by following our free guides:
- Getting Started with MicroPython on ESP32 and ESP8266
- Getting Started with Thonny MicroPython (Python) IDE for ESP32 and ESP8266
We also have a list of free projects using MicroPython with the ESP32 and ESP8266 boards:
Need Resources to Get Started?
If you want to get started with the ESP32 or ESP8266, you can take a look at our courses and projects:
- Learn ESP32 with Arduino IDE
- Home Automation Using ESP8266
- MicroPython Programming with ESP32 and ESP8266
- Free projects for: ESP32 or ESP8266 or MicropPython
ESP32 or ESP8266?
So, at this point you may be wondering: Should I get an ESP8266 or an ESP32?

It really depends on what you want to do. There is space for both boards, and both have pros and cons.
The ESP8266 is cheaper than the ESP32. Although it doesn’t have as many functionalities, it works just fine for most simple DIY IoT projects. However, it has some limitations in the GPIO mapping, and it might not have enough pins for what you intend to do. If that’s the case, you should get an ESP32.
The ESP32 is much more powerful than the ESP8266, comes with more GPIOs with multiple functions, faster Wi-Fi, and supports Bluetooth. However, many people think that the ESP32 is more difficult to deal with than the ESP8266 because it is more complex. On the contrary, in our opinion, it is as easy to program the ESP32 as the ESP8266, especially if you intend to program it using the “Arduino language” or MicroPython.
The ESP32 has some cons too. The ESP32 is more expensive than the ESP8266. So, if you’re building a simple IoT project, the ESP8266 might do the trick for a lower price. Additionally, because the ESP8266 is “older” than the ESP32, some libraries and features are better developed for the ESP8266, and you’ll find more resources (forums, people with the same issues, and how to solve them, etc.). However, as time goes by, the ESP32 is being widely adopted, and these differences in terms of development and libraries won’t be noticeable.
My personal experience: in 2021, I use almost exclusively the ESP32 for IoT projects. It is more versatile, and it comes with much more functionalities like Bluetooth, different wake-up sources, many peripherals, and much more. Additionally, the price difference is not a big deal, in my opinion. Once you move to the ESP32, you won’t want to go back to the ESP8266.
Wrapping Up
We hope you’ve found our analysis ESP32 vs ESP8266 useful.
Just to wrap up the main differences between the ESP32 and ESP8266:
- The ESP32 is faster than the ESP8266;
- The ESP32 comes with more GPIOs with multiple functions;
- The ESP32 supports analog measurements on 18 channels (analog-enabled pins) versus just one 10-bit ADC pin on the ESP8266;
- The ESP32 supports Bluetooth while the ESP8266 doesn’t;
- The ESP32 is dual-core, and the ESP8266 is single core;
- The ESP8266 is cheaper than the ESP32;
- The ESP8266 has a wider community (although we don’t think that at this point, the difference is that relevant);
- For many IoT and Wi-Fi projects, the ESP8266 can do the job for a lower price;
- Both boards can be programmed with the Arduino core using Arduino IDE or other supported IDEs.
- Both boards support MicroPython firmware.
You might like reading the following ESP8266 and ESP32 related articles to have an idea of the selection of the most popular ESP32 and ESP8266 development boards:
So, if you’re a beginner, should you get started with the ESP32 or the ESP8266? At this point, we definitely recommend getting started with the ESP32 instead of the ESP8266. However, if you already have an ESP8266 board, you can get started with that board and then make the shift to the ESP32.
We have a vast selection of projects with these boards in the Random Nerd Tutorials blog to help you get started:
Thanks for reading.
[Recommended Course] Learn ESP32 with Arduino IDE
Register in our brand new ESP32 course with Arduino IDE. This is our complete guide to program the ESP32 with Arduino IDE, including projects, tips, and tricks! The registrations are open, so sign up now.
Thank you for writing this helpful comparison. Since I’m still learning Arduino, I think I will settle for esp8266, but it is good to know I can jump to esp32 at a later time.
Absolutely agree…. This is EXACTLY the BEST of the BEST summary of esp32 vs. esp8266…
FYI, Bluetooth 4.2 is BLE. With 4.2 they just added some security features.
Great article – exactly what I was looking for coming back to IoT after some break and trying to understand which one to order now.
In ESP32, there are 16 channels of hardware PWM that can be attached to any output GPIO pin. They are not all fully independent, and I think 8 of each group need to share same frequency (but can have different duty cycles). And are relatively high resolution ones (depending on a frequency of course), for example one can do PWM frequency at 5 kHz, the maximum duty resolution is 13 bits. You can also of course generate arbitrary wave-forms (including PWM) on all output GPIO pins, up to a limit of all pins (that would be 36 pins). Or use 16 channels for 16 pins, and drive remaining 20 using second core using software. I wouldn’t recommend it, but it can be done. I wouldn’t recommend using same core as the rest of the app and wifi stack is running, unless you don’t care too much about accuracy or frequency is relatively low. And of course use RTOS tasks for this to work. Doing it all in a single task, would be absolutely horrible coding experience, especially if you also want to serial debug at the same time.
In general I am not supper happy with PWM outputs of the ESP32. I would really prefer to have more versatility, a bit higher frequency available in hardware, and ability to adjust phases between channels. Maybe it can be done, but docs are a bit weird about it. Not to mention they call it “LED PWM”, but it is just PWM. Weird naming scheme.
very good article. Clear and informative. Has links to good sources. keep up the good work !
Thanks for reading! I’m glad you found it helpful.
One area you did seem to cover is power usage and long-range modes. Perhaps in an update, you can add a little information on these attributes.
Otherwise, I think this post was excellent, covering most of the questions I had.
I like the ESP32 especially if I need more IO and ADC channels, but the converter is really bad. Nonlinear and lots of jumping signals. I need heavy averaging to get a decent stable result. That’s OK if I just want to know if a slow value is in a not so exact range, but nothing to really measure something. I think the 8266 is much better in this area.
Rui, I used your Home Automation Using 8266 and was immediately excited that I could do MQTT with my Raspberry as host. So I bought 9 units. BAD NEWS. They don’t have enough GPIO pins. So now I’m looking at the ESP32. Do you have the same guides for getting the ESP32 programmed for MQTT? thanks.
Hi Roger.
We have several guides about MQTT with the ESP32.
In the following link you can see all the tutorials we have related with MQTT: https://randomnerdtutorials.com/?s=MQTT
I hope this helps.
Regards,
Sara
Thanks. Sara. Another 45 minutes of digging and I found them. Actually, it’s not that it required so much digging as just sorting through all the stuff that’s available. You guys are the tops.
Great!
I’m glad you found what you were looking for.
Thanks for following our work.
Regards,
Sara
Sara, I do have one problem in the MQTT chapter in the code for Client_2. In my IDE, your code has an error* when invoking the library. So I changed the code to use the and libraries (they auto search the I2C net for the LCD, which is a real plus). Anyway, they compile fine. But 4×20 LCD does not work on either a WeMos D1 or your recommended ESP8266 DevKit (30 pin). The MQTT code is running fine, I see the correct output on the serial monitor. I’ve tried pullup resistors on SDA and SCL to the 3v3 rail and that didn’t help. I can’t figure out if this is a 3v3 IO trying to talk to the 5v pins on the LCD, or if it’s a code issue. Is there a known issue with the ESP8266 talking to the LCD?
* R:\01-Arduino projects\libraries\Newliquidcrystal_1.3.5/LiquidCrystal_I2C.h: In function ‘void setup()’:
R:\01-Arduino projects\libraries\Newliquidcrystal_1.3.5/LiquidCrystal_I2C.h:154:9: error: ‘int LiquidCrystal_I2C::init()’ is private
int init();
Hi Roger.
Please post your question in the RNTLAB forum: https://rntlab.com/forum
I’ll help you there.
Regards,
Sara
Hi all, very nice guide!
Do you know if is it possible to program an ESP board with C#?
Thank You!
Still very useful in 2021.
Thanks a lot for the article.
One of the items I was hoping to find was a listing of the different protocols that each chip supports. For example, WiFi Direct, WiFi Mesh, WiFi-LR (long-range?)