Search found 479 matches

by username
Wed May 04, 2022 10:25 pm
Forum: ESP-IDF
Topic: ESP32-S3 USB host interface to keyboard
Replies: 11
Views: 12512

Re: ESP32-S3 USB host interface to keyboard

Thank you!
by username
Fri Apr 29, 2022 11:52 am
Forum: General Discussion
Topic: Waiting for download
Replies: 9
Views: 7101

Re: Waiting for download

bluebirdsoftware wrote:
Fri Apr 29, 2022 7:20 am
That is the only one i don't have. It could cause this problem?
I have found when I run into this issue on several other ESP32 kits/boards adding the cap to EN & IO0 solved the problem.
It can't hurt to just add it and try.
by username
Thu Apr 28, 2022 12:06 pm
Forum: General Discussion
Topic: Waiting for download
Replies: 9
Views: 7101

Re: Waiting for download

bluebirdsoftware wrote:
Thu Apr 28, 2022 7:30 am
I already have a 10K resistor between IO0 and 3.3v, a 10K resistor between EN and 3.3v and a 0.1uF capacitor between EN and GND.
It still sometimes boots into "download" mode.
What about the 0.1uf cap on IO0 to GND ?
by username
Wed Apr 27, 2022 2:25 am
Forum: General Discussion
Topic: ESP32 Wi-Fi ON/OFF Issue
Replies: 1
Views: 1211

Re: ESP32 Wi-Fi ON/OFF Issue

The problem is that the connection was not closed first. The way I got around that issue was every 30 seconds I send a "Heart Beat" character to the web page, when it gets this character it simply sends back a reply. If (on the esp32) side I do not get a reply I close the connection. Likewise on the...
by username
Wed Apr 27, 2022 2:17 am
Forum: General Discussion
Topic: Waiting for download
Replies: 9
Views: 7101

Re: Waiting for download

Make sure you have a 0.1uf cap from EN to GND, and GPIO0 to GND. along with at least a 10k pullup to 3.3v for each pin.
by username
Tue Apr 26, 2022 2:03 pm
Forum: General Discussion
Topic: i80_controller_example missing lvgl.h
Replies: 2
Views: 1812

Re: i80_controller_example missing lvgl.h

I am starting fresh. Deleted my prior install. I downloaded the install here (Espressif-IDE-2.4.2-win32.win32.x86_64.zip): https://github.com/espressif/idf-eclipse-plugin/blob/master/docs/EspressifIDE.md Then followed the instructions here. https://github.com/espressif/idf-eclipse-plugin/blob/master...
by username
Mon Apr 25, 2022 5:34 pm
Forum: General Discussion
Topic: i80_controller_example missing lvgl.h
Replies: 2
Views: 1812

i80_controller_example missing lvgl.h

The i80_controller example fails to compile. https://github.com/espressif/esp-idf/tree/master/examples/peripherals/lcd/i80_controller FAILED: esp-idf/main/CMakeFiles/__idf_main.dir/i80_controller_example_main.c.obj ccache J:\Espressif\tools\xtensa-esp32s3-elf\esp-2021r2-patch3-8.4.0\xtensa-esp32s3-e...
by username
Mon Apr 18, 2022 3:24 am
Forum: ESP32 Arduino
Topic: Need for help to check code for ESP32 with anemometer in Arduino IDE
Replies: 1
Views: 1398

Re: Need for help to check code for ESP32 with anemometer in Arduino IDE

You didn't specify what module you where using.
Try a different GPIO pin. Maybe your board has a pull down on that pin.

ESP32 SoC has 5 boot strapping pins. They are:

GPIO0 (HIGH during BOOT)
GPIO2 (LOW during BOOT)
GPIO5 (HIGH during BOOT)
GPIO12 (LOW during BOOT)
GPIO15 (HIGH during BOOT)
by username
Sun Apr 10, 2022 10:13 pm
Forum: ESP32 Arduino
Topic: ESP32 Arduino FreeRTOS Software Timer
Replies: 2
Views: 2387

Re: ESP32 Arduino FreeRTOS Software Timer

I didn't examine it to closely for other issues, but your problem is that your using the variable progState for both timers which is what is causing the problem. You also need to add a delay in loop() or your going to cause the watch dog timer to panic. #include <Arduino.h> #include "freertos/queue....
by username
Sat Apr 02, 2022 5:18 am
Forum: ESP-IDF
Topic: ESP32-S3 USB host interface to keyboard
Replies: 11
Views: 12512

Re: ESP32-S3 USB host interface to keyboard

I bought 3 books and going through them. Some things are getting clear but getting stuck on ESP-IDF order of things. Thus far (if I understand the order) #1) usb_host_install() #2) usb_host_client_register() #3) usb_host_device_open() #4) usb_host_device_info() #5) usb_host_get_device_descriptor() #...