[ESP32] use of HardwareSerial Library

brief introduction HardwareSerial library is a serial driver library written in c + + and applied to esp32 Arduino application environment. After installing the Arduino development environment of ESP32, we have integrated this serial operation library, which can be directly referenced in practical application. Note: ESP32 has three UART ports ...

Added by chronomantic on Fri, 04 Mar 2022 15:03:44 +0200

Qiming cloud sharing | ESP32 learning notes reference RTC_GPIO operation and troubleshooting

Tip: as a partner of Espressif in Greater China and a partner of sigmastar VAD, we not only carefully sorted out the problems you may encounter in the development process, but also a concise tutorial to get started quickly for the reference of development partners. At the same time, it also carefully sorted out the main characteristics and appl ...

Added by Rangel on Thu, 03 Mar 2022 04:29:52 +0200

ESP32 learning notes - TCP server

1, Advantages and disadvantages of TCP and UDP 1. TCP is connection oriented (for example, dial up to establish a connection before making a call); UDP is connectionless, that is, there is no need to establish a connection before sending data. 2. TCP provides reliable services. In other words, the data transmitted through TCP connection i ...

Added by outsidaz on Sat, 19 Feb 2022 16:32:20 +0200

ESP32 MCU learning notes - 01 - gpio&ledc&uart

CSDN big bug, why can't my "no need" format be used? It's too uncomfortable. All typesetting "disorderly", "orderly" and "to do" cannot be used. The layout below may be a little ugly. If you feel inconvenient to watch, you can find a backup on github. ESP32 MCU learning notes - 01 - gpio&ledc&u ...

Added by itshim on Thu, 17 Feb 2022 16:41:00 +0200

Arduino+ESP32 driver GC9A01 round LCD, transplant LVGL, run sample program, display homemade pictures

In the previous section, Arduino+ESP32 drives the GC9A01 circular LCD (one), We've already ported the arduino GFX library, which includes sample programs for LVGL as well.   Porting lvgl in arduino is very convenient. Let's transplant one together and run the demo example of lvgl! Since the Arduino project file in arduino's library path is rea ...

Added by Bee on Sat, 05 Feb 2022 20:03:02 +0200

SD card reading and writing of Arduino+ESP32

Background knowledge: ESP32 There are two ways to use SD card. One is to use SPI interface to access SD card, and the other is to use SDMMC interface to access SD card. In Arduino core for the ESP32, SPI mode occupies 4 IO ports and SDMMC mode occupies 6 IO ports. Generally speaking, SDMMC mode is faster than SPI mode.   1. SDMMC mode Although ...

Added by susannah on Thu, 03 Feb 2022 01:37:32 +0200

ssd1306OLED Chinese display - micropthon-esp32 - using GB2312 font library (non manual mold taking)

ssd1306OLED Chinese display - micropthon-esp32 - using GB2312 font library (non manual mold taking) preface: Ah, in order to make my * * "mobile phone abstinence device" (the functions of each subsystem of this project are about to be completed!)** I've really paid too much for this OLED with more than ten yuan. Baidu couldn't f ...

Added by teege84 on Tue, 01 Feb 2022 20:57:27 +0200

ESP32 development learning LVGL Littlevgl using file system

LVGL has a "file system" abstraction module that enables you to attach any type of file system. The file system is identified by a drive letter. For example, if the SD card is associated with the letter "S", you can access a file similar to "S:path/to/file.txt". The "file system" abstraction module is of ...

Added by etsauer on Mon, 10 Jan 2022 22:10:35 +0200