ESP8266-D1 Arduino Compatible Development Board (HCDVBD0028)

Espressif Systems ESP8266 wireless microcontroller (Wifi) development boards and accessories
Post Reply
admin
Site Admin
Posts: 866
Joined: Sun Aug 05, 2012 4:02 pm

ESP8266-D1 Arduino Compatible Development Board (HCDVBD0028)

Post by admin » Fri Jul 22, 2016 9:30 am

Image




The ESP8266-D1 is a wireless 802.11 (Wifi) microcontroller development board compatible with the Arduino IDE. It turns the very popular ESP8266 wireless (WiFi) module into a fully fledged development board. The layout of this board is based on a standard Arduino hardware design with similar proportions to the Arduino Uno and Leonardo. It also includes a set of standard Arduino headers which means many existing Arduino shields can be plugged directly into the board (see note below).

The development board also includes a CH340 USB to serial interface giving it the ability to be connected and programmed directly from your computer and requiring only a common micro USB cable – no additional interface hardware or configuring is required. Once connected to the computer, and drivers have been installed, the ESP8266-D1 will appear as a standard serial COM port. The ESP8266-D1 can be programmed directly from the Arduino Integrated Development Environment (IDE) which is freely available for download from the Arduino website (arduino.cc).

Direct Arduino IDE support for this development board can be added with just a few mouse clicks via the built-in board manager feature. Programming the ESP8266-D1 via the IDE is then as straight-forward as programming any standard Arduino development board. Many of the default Arduino commands will work including digital and analogue pin functions and many examples are included in the IDE which demonstrate how to take advantage of the ESP8266s WiFi capabilities. These examples range from simply blinking an LED to turning the ESP8266-D1 into a stand-alone web server.

To quickly get going we have provided an Arduino setup guide on our blog site here:

http://blog.hobbycomponents.com/?p=594


Please note: This board requires a USB driver to be installed. Currently supported operating systems include all 32 & 64 bit versions of Windows 7,8, & 10. Drivers can be found at the bottom of this post.

This a 3.3V development board and is not compatible with 5V hardware. Please check comparability before purchasing Arduino shields.





Image


Features:

ESP8266-D1 Development Board:

• Product code: HCDVBD0028
• Integrated ESP8266 module with 32-bit 80MHz microcontroller/4M flash
• microUSB serial/programming interface
• Can be powered via USB cable – no external PSU required
• Arduino Compatible headers
• Directly supported by the Aduino IDE
• 2.1mm external DC PSU socket (6.5 - 12V)


ESP8266 Module:

• 802.11 b/g/n
• Integrated low power 32-bit MCU
• Integrated 10-bit ADC
• Integrated TCP/IP protocol stack
• Integrated TR switch, balun, LNA, power amplifier and matching network
• Integrated PLL, regulators, and power management units
• Supports antenna diversity
• WiFi 2.4 GHz, support WPA/WPA2
• Support STA/AP/STA+AP operation modes
• Support Smart Link Function for both Android and iOS devices
• SDIO 2.0, (H) SPI, UART, I2C, I2S, IR Remote Control, PWM, GPIO
• STBC, 1x1 MIMO, 2x1 MIMO
• A-MPDU & A-MSDU aggregation & 0.4s guard interval
• Deep sleep power <10uA, Power down leakage current < 5uA
• Wake up and transmit packets in < 2ms
• Standby power consumption of < 1.0mW (DTIM3)
• +20 dBm output power in 802.11b mode
• Operating temperature range -40C ~ 125C
• FCC, CE, TELEC, WiFi Alliance, and SRRC certified



Example Arduino Blink Sketch:

Code: Select all

/* HCDVBD0027 Blink example - HobbyComponents.com */

#include <ESP8266WiFi.h>

#define PIN 2               // Flash the LED connected to GPIO2

void setup() 
{
  pinMode(PIN, OUTPUT);     // Set the pin to an output
}


void loop() 
{
  digitalWrite(PIN, LOW);   // Turn the LED on  
  delay(1000);              // Wait for a second
  digitalWrite(PIN, HIGH);  // Turn the LED off
  delay(1000);              // Wait for another second
}



Image


USB 32/64 bit drivers for Microsoft windows computer can be downloaded from our Github page here:

https://github.com/HobbyComponents/CH340-Drivers

or from our website Windows Drivers can be downloaded here


Windows Installation Instructions

Drivers are available at the bottom of this page. Simply download and unzip them, plug in your ESP8266-D1 and when the new hardware is detected, point the wizard to the folder you just unzipped to and it should install without any problems.



MAC installation instructions

New code signed version confirmed to work with El Capitan
CH34x_OSX.zip

Instructions:

Download the driver (you must be logged in to download.

Once downloaded, double-click the zip file to unzip it.

Run installer found in that folder.

If asked to restart, do not restart just yet.

Now restart your Mac.



Disclaimer: Libraries, example code, and diagrams are provided as an additional free service by Hobby Components and are not sold as part of this product. We do no provide any guarantees or warranties as to their accuracy or fitness for purpose.

Descriptions and diagrams on this page are copyright Hobby Components Ltd and may not be reproduced without permission.
You do not have the required permissions to view the files attached to this post.

mark.hedges
Posts: 1
Joined: Sat Nov 04, 2017 2:04 pm

Re: ESP8266-D1 Arduino Compatible Development Board (HCDVBD0028)

Post by mark.hedges » Tue Jan 11, 2022 6:03 pm

ESP6822.jpg
Hi, I hope you can help. I have been trying to connect to an ESP32 and have been unable to do so.
I have purchased an Arduino ESP8266 board and I am still unable to connect as shown by the attached file. I believe that I have installed CH340 but do not know how to check.
Any advice would be much appreciated.
You do not have the required permissions to view the files attached to this post.

andrew
Site Admin
Posts: 1374
Joined: Sun Aug 05, 2012 4:15 pm

Re: ESP8266-D1 Arduino Compatible Development Board (HCDVBD0028)

Post by andrew » Wed Jan 12, 2022 9:22 am

We have a guide to using ESP8266 boards with the Arduino IDE on our blog site here:

https://blog.hobbycomponents.com/?p=594

It looks like you purchased an ESP8266-D1? You'll need to look at the whole guide to add support to the IDE but about two thirds down there's a section that specific to the D1.
Comments made by this poster do not necessarily reflect the views of Hobby Components Ltd.

Gingerbloke
Posts: 4
Joined: Fri Aug 07, 2015 9:33 am

Re: ESP8266-D1 Arduino Compatible Development Board (HCDVBD0028)

Post by Gingerbloke » Thu Jan 05, 2023 12:52 pm

I just bought the HCDVBD0028 and followed the setup instructions. The blink example worked first time. Thanks HC!

Looking for something that uses the WiFi capability, I loaded the sketch at the end of the article linked below. The board connected to my WiFi network and worked straight away. You will need to add your own WiFi credentials and use the Arduino IDE Serial Monitor at 115200 baud to see what address the WiFi router gives you.

https://cyaninfinite.com/getting-starte ... ifi-board/

The Serial Monitor should respond with something like this after upload/reset:

...........
Connected to YOURWIFISSID
IP address: 192.168.21.83
MDNS responder started
HTTP server started


Then just point a browser at the IP address shown, e.g. 192.168.21.83
You should see this:
Hello from esp8266!

Note: using the ESP8266 your code will take longer to compile and upload than on an UNO, and remember that it uses 3.3V logic - not 5V.
I'm looking forward to seeing what this board can do now.

All good!

PS. Here's a really good reference guide for the ESP8266-D1. It has loads of WiFI related examples if you follow through to the later pages.
https://tttapa.github.io/ESP8266/Chap01 ... P8266.html

Post Reply

Return to “ESP8266”