Friday 16 November 2018

[Technique] How to Install the ESP32 and ESP8266 Board in Arduino IDE


1. Brief Introduction

Arduino is an open-source electronics platform based on easy-to-use hardware and software. Thanks to its simple and accessible user experience, Arduino has been used in thousands of different projects and applications. It runs on Mac, Windows, and Linux. Moreover, it is extremely compatible with many microcontrollers. So with this post, I take NodeMCU board as an example to show you how to install outside boards on Arduino IDE

2. Installing Process

  • Download the Arduino IDE
  • Open the preferences window from the Arduino IDE. Go to File> Preferences
  • Open boards manager. Go to Tools > Board > Boards Manager

  • Search for ESP32 or ESP8266 and press install button:
  • Select your Board in Tools > Board menu. For ESP32 DEVKITV1, the board should chooseESP32 Dev Module; For ESP8266(CP2102), the board should choose 

ESP8266 Pin_layout
ESP32 Pin_layout

No comments:

Post a Comment

[Research] Recurrent Neural Network (RNN)

1. Introduction As we all know, forward neural networks (FNN) have no connection between neurons in the same layer or in cross layers. Th...