Search found 477 matches

by username
Fri Apr 07, 2023 2:00 am
Forum: Hardware
Topic: ESP-32S2 Dev/KitC-1 RGB LED
Replies: 5
Views: 1861

Re: ESP-32S2 Dev/KitC-1 RGB LED

What IDE are your using ?
by username
Fri Mar 31, 2023 3:46 pm
Forum: ESP-IDF
Topic: W5500 polling logic, No IP
Replies: 3
Views: 2160

Re: W5500 polling logic, No IP

I recently switched framework from Arduino to ESP IDF. I've been strugling to implement my w5500 SPI_ETH dev board for the simple fact that the featured example (https://github.com/espressif/esp-idf/bl ... ple_main.c) uses an interrupt pin that is not mapped on my board. Did you run menuconfig to c...
by username
Thu Mar 30, 2023 11:37 am
Forum: General Discussion
Topic: Solution to programming ESP32-C3 without holding BOOT nad EN
Replies: 2
Views: 770

Re: Solution to programming ESP32-C3 without holding BOOT nad EN

Though that change might be working for you. I see the EN signal toggling many times in a short period. It should not be doing that.
The typical fix is to put a 0.1uf cap from EN to GND, along with a 10k to 3.3v.
by username
Sun Mar 26, 2023 3:40 pm
Forum: General Discussion
Topic: Is what I want to achievable?
Replies: 5
Views: 1381

Re: Is what I want to achievable?

Have you looked into ESP-NOW?
With little code modification to OTA you could have your master push out the update to all units paired to it.
by username
Sun Mar 19, 2023 12:34 pm
Forum: Hardware
Topic: ESP-32S2 Dev/KitC-1 RGB LED
Replies: 5
Views: 1861

Re: ESP-32S2 Dev/KitC-1 RGB LED

Did you run menuconfig on the blink example and configure the demo for your board ?
by username
Thu Mar 16, 2023 4:25 pm
Forum: General Discussion
Topic: ESP32-S3 Ethernet RMII
Replies: 8
Views: 14330

Re: ESP32-S3 Ethernet RMII

Ever since the S3 came out we have developed several products with it. It's my go to part for anything that needs a micro. Today we got a project that needs Ethernet, and I was shocked to see that they left out the RMII. Crap!!! Espressif, your products are economical, saving $0.001 to remove a feat...
by username
Tue Mar 14, 2023 2:26 am
Forum: General Discussion
Topic: ESP32-S3-DevKitC-1 USB port doesn't have power 5V
Replies: 4
Views: 2439

Re: ESP32-S3-DevKitC-1 USB port doesn't have power 5V

ESP_Sprite, he is saying if you plug in a USB device into the kit, J4 does not supply power to that port.
If he's going to plug in a device into J4 he could jumper across D7.
by username
Tue Feb 28, 2023 2:13 am
Forum: ESP-IDF
Topic: bdc_motor doesn't work with psram enabled
Replies: 2
Views: 1098

Re: bdc_motor doesn't work with psram enabled

I think IO16 is used for PSAM.
by username
Sun Jan 29, 2023 2:50 pm
Forum: General Discussion
Topic: ESP v5.0 removed mdns Why? (IDFGH-9213)
Replies: 9
Views: 3503

Re: ESP v5.0 removed mdns Why? (IDFGH-9213)

I don't think all that manual setup is necessary. The build process creates the components subfolder. You just need to run the `idf.py add-dependency` tool and it creates the necessary yml in your source folder. The build process takes care of the rest. (A full clean beforehand is recommended.) Sor...