Search found 200 matches

by liaifat85
Wed Mar 13, 2024 2:07 pm
Forum: Hardware
Topic: ESP32-C3-13 external antenna
Replies: 5
Views: 2074

Re: ESP32-C3-13 external antenna

Sounds like a manufacturing defect or an error with the soldering.
by liaifat85
Tue Mar 12, 2024 2:18 pm
Forum: Hardware
Topic: ESP32-CAM Purchases
Replies: 1
Views: 381

Re: ESP32-CAM Purchases

Ai-thinker is a well-known manufacturer. But from the pics of AiPi-CAM-D200, it looks like it may not fully match the specifications of ESP32-CAM.
by liaifat85
Tue Mar 12, 2024 1:56 pm
Forum: ESP-IDF 中文讨论版
Topic: esp32 支持DMA吗
Replies: 1
Views: 1891

Re: esp32 支持DMA吗

You can find some information here:
https://github.com/Bodmer/TFT_eSPI/issues/1863
by liaifat85
Tue Mar 12, 2024 1:48 pm
Forum: ESP32 Arduino
Topic: ESP32S3 ov2640 as a slave device
Replies: 3
Views: 800

Re: ESP32S3 ov2640 as a slave device

Have you tried according to this video? https://www.youtube.com/watch?v=y50LCIgO-V0
Here is also a Step-by-Step Guide to LVGL GUI Development:
https://wiki.elecrow.com/index.php?titl ... evelopment
by liaifat85
Tue Mar 12, 2024 1:29 pm
Forum: Showcase
Topic: DIY IoT Electronic Shelf Label With Google Firebase V2.0
Replies: 3
Views: 5399

Re: DIY IoT Electronic Shelf Label With Google Firebase V2.0

Thanks a lot for sharing. I used this red display a couple of times but such an idea never came across my mind. It looks really beautiful.
by liaifat85
Sun Mar 10, 2024 12:08 pm
Forum: General Discussion
Topic: No such file or directory.
Replies: 4
Views: 1973

Re: No such file or directory.

Ensure that the "spi.h" file is located in the correct directory within your project structure. If it's not, move it to the appropriate directory.
by liaifat85
Sun Mar 10, 2024 11:57 am
Forum: General Discussion
Topic: ESP32 not working after deepsleep
Replies: 2
Views: 657

Re: ESP32 not working after deepsleep

Experiment with different durations for deep sleep to see if the behavior changes.
by liaifat85
Sat Mar 09, 2024 9:30 am
Forum: Hardware
Topic: ESP32+i2c+LCD
Replies: 1
Views: 908

Re: ESP32+i2c+LCD

Run an I2C scanner sketch on your ESP32 to confirm that it detects the LCD at address 0x27. If it doesn't detect the device, there might be a wiring or communication issue.
by liaifat85
Sat Mar 09, 2024 9:28 am
Forum: ESP8266
Topic: ESP8266, To Sleep or Not to sleep that is a question
Replies: 3
Views: 4126

Re: ESP8266, To Sleep or Not to sleep that is a question

Using the wifi_fpm_do_sleep() function with a sleep duration of 0xFFFFFFF will effectively put the ESP8266 into deep sleep mode indefinitely until it receives a reset signal. You can use the timer wake-up from deep sleep: https://randomnerdtutorials.com/esp32-t ... eep-sleep/
by liaifat85
Fri Mar 08, 2024 3:47 pm
Forum: ESP-IDF
Topic: dose esp32 support components/esp_phy/
Replies: 1
Views: 1331

Re: dose esp32 support components/esp_phy/

The ESP32 chip itself supports this component. Its functionality may depend on the specific version of the ESP-IDF you are using and the configuration of your project.