Learn more
No featured offers available
We feature offers with an Add to Basket button when an offer meets our high quality standards for:
- Price,
- Delivery option, and
- Customer service
AZDelivery D1 Mini NodeMcu WiFi Board ESP8266-12F CH340G WLAN ESP8266 Micro USB Lua Module 3.3V 500mA compatible with Arduino Including E-Book!
| Brand | AZDelivery |
| Model name | D1 Mini NodeMcu |
| CPU model | 68882 |
| CPU speed | 10 MHz |
| Connectivity technology | USB, Wi-Fi |
About this item
- ✅ The AZ-Delivery D1 Mini is a mini-NodeMcu WiFi board based on an ESP826612F micro-USB port
- ✅ This WLAN board contains 9 digital input / output pins and all pins have interrupt / pwm / I2C / 1-wire
- ✅ {Ultra-compact design} the AZ-Delivery D1 Mini NodeMcu with ESP8266-12F WLAN module can be easily stored in a decentralized manner.
- ✅ The AZ-Delivery wireless D1 Mini development board is 100% D1 Mini compatible and can be programmed in the Arduino-IDE.
- ✅ This product includes an E-Book that provides useful information on how to begin your project, it helps with a quick setup and saves time on the configuration process. We provide an array of application examples, full installation guides and libraries.
From the brand
AZ-Delivery
Your expert in microelectronics
-
How did we start?
Everyone in the industry knows the problem. You have to choose between overpriced goods from Germany or long delivery times, customs problems and uncertain deliveries from China. We made it our mission to resolve this conflict and that's why we created AZ-Delivery
-
The AZ-Delivery Shop:
-
What makes our product unique?
We offer an extensive library of e-books, regular blog entries with exciting projects, as well as an active community of customers. In addition, our team of German experts ensures exceptional service. This ensures an unforgettable shopping experience
Why do we like what we do?
It's very simple! It is precisely because of its many possibilities of use that we have developed a passion for microelectronics. And it is precisely this passion that we want to pass on to our customers through a wide range of microcontrollers, sensors and modules
-
And more about:
Product Information
| CPU Model | 68882 |
|---|---|
| Processor Speed | 10 MHz |
| Network Connectivity Technology | USB, Wi-Fi |
| Operating System | Linux |
| Processor Brand | VIA |
| Wireless Compability | Bluetooth |
| Compatible Devices | Arduino, Personal Computer, Smartphone |
| RAM Memory Technology | LPDDR3 |
| Processor Count | 1 |
| Total USB Ports | 1 |
| Item Dimensions L x W x H | 35L x 26W x 7H millimetres |
|---|
Warranty & Support
Feedback
| Brand Name | AZDelivery |
|---|---|
| Model Name | D1 Mini NodeMcu |
| Box Contents | E-Book |
| Global Trade Identification Number | 04251850507546 |
| Model Number | AZDelivery D1 Mini |
| Manufacturer Part Number | 1x D1 Mini |
| Manufacturer | AZDelivery |
| ASIN | B01N9RXGHY |
| Customer Reviews |
4.6 out of 5 stars |
Product Description
- Compact and efficient
- WLAN standard 802.11b/g/n
- 9 digital input/output pins, all pins have interrupt / PWM / I2C / 1 wire
- Main chip: ESP8266 CH340G
- 1 analog input (3.3V max. input)
- Dimensions: L = 34mm, W = 26mm, H = 8mm
- Energy consumption: Up to 500mA
- I / O Pins: 9, Weight: 3g
For top quality Arduino and Raspberry Pi products, AZ-Delivery Vertriebs is your go to.
We provide an array of application examples, full installation guides, eBooks, libraries, and all-round assistance.
AZ-Delivery, your microelectronics expert.
AZ-Delivery D1 Mini NodeMcu with ESP8266-12F WLAN module
Equipped with powerful ESP8266 processor and integrated WLAN. D1 Mini Wifi development board comes with the CH340 chip, which makes programming of the board simple and easy.
This compact development board can be used for various applications and projects, due to its light weight and design.
For example, with several of our sensors, it can be used to measure air pressure, temperature and humidity through its own web server via WLAN connection.
What's in the box?
Customer reviews
Customer Reviews, including Product Star Ratings, help customers to learn more about the product and decide whether it is the right product for them.
To calculate the overall star rating and percentage breakdown by star, we don’t use a simple average. Instead, our system considers things like how recent a review is and if the reviewer bought the item on Amazon. It also analyses reviews to verify trustworthiness.
Learn more how customers reviews work on AmazonCustomers say
Generated from the text of customer reviewsSelect to learn more
Reviews with images
Small, compact and shielded RF circuitry
Top reviews from United Kingdom
There was a problem filtering reviews. Please reload the page.
- Reviewed in the United Kingdom on 20 October 2020Number Of Items: 1Verified PurchaseReview of ESP8266
AZDelivery D1 Mini NodeMcu Lua WiFi Board ESP8266-12F CH340G WLAN ESP8266 Micro USB Module 3.3V
The item arrived within 3 days of ordering from the UK Amazon site. The part had its own box and was inside a sealed antistatic bag. Extra pin headers were also included in the box. This module was followed up with an email from AZDelivery customer service with supporting information such as the module’s pinout diagram.
The overall quality of the PCB is satisfactory, the silkscreen is clear and readable and the solder joints are clean.
Module straights out of the box with the Arduino IDE as long as the relevant drivers and libraries have been loaded. The boards can be downloaded from the Arduino or espressif websites using the “Arduino ESP8266 boards “as a key search phrase. The boards .json file must be added in the Additional Board Manager URLs field under preferences. The board type that will work with this module is: Generic ESP8266 Module as shown in the attached photo.
To prove that the module is working, I made an ultra-small standalone WiFi sniffer with this module by combining it with the 1.3 SH1106 OLED screen. The code for this small application is below. It is based on the examples that come with the ESP2866 library. The function is to scan every three seconds and display the number of WiFi networks that the onboard antenna can “hear”. The connections needed are 4 wires for: are 5V for power, GND, D2 for the screen’s SDA and D1 for the screen’s SCL.
Overall the module is of good quality and it seems like a very good fit for embedded IoT projects.
#include "ESP8266WiFi.h"
#include <U8g2lib.h> //OLED Library
#include <Wire.h> //For I2C
U8G2_SH1106_128X64_NONAME_F_HW_I2C u8g2 (U8G2_R0, U8X8_PIN_NONE);
void setup() {
Serial.begin(115200);
u8g2.begin();
// Set WiFi to station mode and disconnect from an AP if it was previously connected
WiFi.mode(WIFI_STA);
WiFi.disconnect();
delay(100);
Serial.println("Setup done");
//
u8g2.setFont(u8g2_font_ncenB10_tr); // choose a suitable font
u8g2.drawStr(5,15,"setup done");
u8g2.sendBuffer(); // transfer internal memory to the display
delay(500);
u8g2.clearBuffer();
}
void loop() {
Serial.println("scan start");
//
u8g2.drawStr(5,15,"scan start");
u8g2.sendBuffer(); // transfer internal memory to the display
delay(500);
u8g2.clearBuffer();
// WiFi.scanNetworks will return the number of networks found
int n = WiFi.scanNetworks();
Serial.println("scan done");
if (n == 0) {
Serial.println("no networks found");
} else {
Serial.print(n);
Serial.println(" networks found");
for (int i = 0; i < n; ++i) {
// Print SSID and RSSI for each network found
Serial.print(i + 1);
Serial.print(": ");
Serial.print(WiFi.SSID(i));
Serial.print(" (");
Serial.print(WiFi.RSSI(i));
Serial.print(")");
Serial.println((WiFi.encryptionType(i) == ENC_TYPE_NONE) ? " " : "*");
delay(10);
}
}
Serial.println("");
//
u8g2.drawStr(5,15,"Networks found:");
u8g2.setCursor(0,40);
u8g2.print(n);
u8g2.sendBuffer(); // transfer internal memory to the display
delay(500);
u8g2.clearBuffer();
// Wait a bit before scanning again
delay(3000);
}
5.0 out of 5 starsReview of ESP8266Small, compact and shielded RF circuitry
Reviewed in the United Kingdom on 20 October 2020
AZDelivery D1 Mini NodeMcu Lua WiFi Board ESP8266-12F CH340G WLAN ESP8266 Micro USB Module 3.3V
The item arrived within 3 days of ordering from the UK Amazon site. The part had its own box and was inside a sealed antistatic bag. Extra pin headers were also included in the box. This module was followed up with an email from AZDelivery customer service with supporting information such as the module’s pinout diagram.
The overall quality of the PCB is satisfactory, the silkscreen is clear and readable and the solder joints are clean.
Module straights out of the box with the Arduino IDE as long as the relevant drivers and libraries have been loaded. The boards can be downloaded from the Arduino or espressif websites using the “Arduino ESP8266 boards “as a key search phrase. The boards .json file must be added in the Additional Board Manager URLs field under preferences. The board type that will work with this module is: Generic ESP8266 Module as shown in the attached photo.
To prove that the module is working, I made an ultra-small standalone WiFi sniffer with this module by combining it with the 1.3 SH1106 OLED screen. The code for this small application is below. It is based on the examples that come with the ESP2866 library. The function is to scan every three seconds and display the number of WiFi networks that the onboard antenna can “hear”. The connections needed are 4 wires for: are 5V for power, GND, D2 for the screen’s SDA and D1 for the screen’s SCL.
Overall the module is of good quality and it seems like a very good fit for embedded IoT projects.
#include "ESP8266WiFi.h"
#include <U8g2lib.h> //OLED Library
#include <Wire.h> //For I2C
U8G2_SH1106_128X64_NONAME_F_HW_I2C u8g2 (U8G2_R0, U8X8_PIN_NONE);
void setup() {
Serial.begin(115200);
u8g2.begin();
// Set WiFi to station mode and disconnect from an AP if it was previously connected
WiFi.mode(WIFI_STA);
WiFi.disconnect();
delay(100);
Serial.println("Setup done");
//
u8g2.setFont(u8g2_font_ncenB10_tr); // choose a suitable font
u8g2.drawStr(5,15,"setup done");
u8g2.sendBuffer(); // transfer internal memory to the display
delay(500);
u8g2.clearBuffer();
}
void loop() {
Serial.println("scan start");
//
u8g2.drawStr(5,15,"scan start");
u8g2.sendBuffer(); // transfer internal memory to the display
delay(500);
u8g2.clearBuffer();
// WiFi.scanNetworks will return the number of networks found
int n = WiFi.scanNetworks();
Serial.println("scan done");
if (n == 0) {
Serial.println("no networks found");
} else {
Serial.print(n);
Serial.println(" networks found");
for (int i = 0; i < n; ++i) {
// Print SSID and RSSI for each network found
Serial.print(i + 1);
Serial.print(": ");
Serial.print(WiFi.SSID(i));
Serial.print(" (");
Serial.print(WiFi.RSSI(i));
Serial.print(")");
Serial.println((WiFi.encryptionType(i) == ENC_TYPE_NONE) ? " " : "*");
delay(10);
}
}
Serial.println("");
//
u8g2.drawStr(5,15,"Networks found:");
u8g2.setCursor(0,40);
u8g2.print(n);
u8g2.sendBuffer(); // transfer internal memory to the display
delay(500);
u8g2.clearBuffer();
// Wait a bit before scanning again
delay(3000);
}
Images in this review
- Reviewed in the United Kingdom on 16 October 2020Number Of Items: 1Verified PurchaseDelivered promptly and nicely packaged, as usual from AZ-Delivery.
The D1 mini is the small form factor version of the ESP8266 NodeMCU WiFi development module, and its easy to see why this is so popular. It has all the features of the bigger version, and if you can live with the reduced number of GPIOs it is ideal for home IoT projects due to its small size.
Works fine with the Arduino environment, well supported and easy to programme. WiFi libraries work well. To test the device I connected it to the popular Blynk IoT platform. Sample programmes from Blynk had me up and running in no time – D1 Mini is well known and supported at Blynk. Easy to send information to and from D1 mini to IoT, and I was controlling an RGB LED from my mobile phone very quickly.
If using the built-in LED remember that it is on Pin 4 (ESP8266 dev boards vary, so check the pin-out).
The printing on the board is clear, and the board itself looks neat, tidy and well made (both of these are not always true of cheaper cloned D1s).
Easy to use, powerful and user-friendly little development board. The D1 Mini is now my go-to device for home IoT projects.
- Reviewed in the United Kingdom on 16 August 2024Number Of Items: 3Verified PurchaseI ordered 3 of these for a project that needed a small wifi board and these fitted the bill. They were reasonably priced, arrived quickly and were well packaged in a small card box with individual boards in anti-static bags.
The description says that there's an e-book to come with them - there's a QR code on a card included in the box which links to all of their user guides. The one for the D1 mini is pretty comprehensive, however, there's so much easily accessible information about the D1 mini on line that its not really needed.
I've only used one of these so far and it's all working as intended - I'm using with ESP home.
Would certainly recommend these and will be buying again when needed.
I ordered 3 of these for a project that needed a small wifi board and these fitted the bill. They were reasonably priced, arrived quickly and were well packaged in a small card box with individual boards in anti-static bags.
The description says that there's an e-book to come with them - there's a QR code on a card included in the box which links to all of their user guides. The one for the D1 mini is pretty comprehensive, however, there's so much easily accessible information about the D1 mini on line that its not really needed.
I've only used one of these so far and it's all working as intended - I'm using with ESP home.
Would certainly recommend these and will be buying again when needed.
Images in this review
- Reviewed in the United Kingdom on 3 October 2020Number Of Items: 5Verified PurchaseComes with the header pins to solder yourself (choice of 3 types). These things are great little microcontrollers, I have 5 and can see me getting more for various IoT things around the house.
- Reviewed in the United Kingdom on 18 October 2020Number Of Items: 5Verified PurchaseThis has become my favourite microcontroller for experimenting. The smaller board has nothing missing from its full-sized ancestor. There may be 14 less pins, but as they are all things like duplicate ground pins, not connected, or I/O that is already in use internally, they won't be missed. With the CPU/WiFi antenna on one side of the board and the USB interface, voltage regulator, etc. on the other side, it occupies far less space on the breadboard. I have built projects simultaneously using a TFT colour touch screen plus a small monochrome OLED display together with a couple of sensors and still had GPIO pins (and the analogue) unused. The large flash allows huge programs to be written and also a small memory-based file system to be used. The killer feature when compared with competition like the Arduino Nano has to be the WiFi. Why add a real time clock module when you can access an atomic clock via an NTP server?
There are lots of libraries, examples and information available for the ESP8266 on the internet, making this an ideal module for many IoT and other projects. Excellent value, particularly at the prices for a small quantity.
- Reviewed in the United Kingdom on 27 August 2025Number Of Items: 3Verified PurchaseJust what I needed. Reliable and great quality after a good years use.
Top reviews from other countries
-
jos heesenReviewed in the Netherlands on 7 December 20255.0 out of 5 stars Geleverd volgens de beschrijving.
Number Of Items: 5Verified PurchasePrima spul, werkt naar behoren!
AdamDeBeersReviewed in Germany on 20 December 20255.0 out of 5 stars ⭐⭐⭐⭐⭐ Fantastic ESP8266 Boards — Reliable, Compact, and Great Value!
Number Of Items: 5Verified PurchaseThese AZDelivery D1 Mini (ESP8266 / ESP-12E) boards are excellent. Build quality is solid, pins are straight and well soldered, and every board in the 5-pack worked perfectly out of the box. They are 100% compatible with Wemos D1 Mini, so all existing shields, cases, and examples work without any issues.
Flashing and programming is effortless — Arduino IDE, ESPHome, or Lua all work smoothly. WiFi performance is stable and reliable, with fast connections and no random dropouts. Despite their small size, these boards are surprisingly powerful and perfect for IoT projects, sensors, relays, displays, and Home Assistant integrations.
Power consumption is low, the USB interface is dependable, and the overall design feels well thought out. Having five boards in one pack is great value and makes prototyping fast and flexible.
If you’re building ESP8266-based projects, these are a no-brainer. Reliable hardware, excellent compatibility, and unbeatable value.
Five stars — a must-have for makers and DIY electronics projects.
-
Jean CaretteReviewed in Belgium on 3 August 20254.0 out of 5 stars Avis
Number Of Items: 5Verified PurchaseBien emballé. Ça a été rapide. Bonne expérience.
-
Janiaut R.Reviewed in France on 31 January 20255.0 out of 5 stars Parfait pour les petits projets.
Number Of Items: 3Verified Purchasepetit, léger, wifi intégré, plein de librairies... J'en utilise un, connecté à ma box Jeedom, pour commander l'ouverture/fermeture du poulailler par un servo, aux heures de lever et coucher du soleil. Pour l'instant les 2 autres sont en standby mais j'ai d'autres projets à venir... Les 3 ont été testés et fonctionnent impeccablement.
-
Alfonso HReviewed in Spain on 23 December 20245.0 out of 5 stars Buena calidad,
Number Of Items: 3Verified PurchasePara proyectos de IoT y microelectrónica. Están bien construidos y funcionan a la perfección.
Volveré a comprarlos para futuros proyectos













