Search found 477 matches

by username
Sun Oct 08, 2023 2:29 am
Forum: General Discussion
Topic: ESP32 + WLED, LEDs turn on when ESP32 is plugged in power. How to prevent this from happening?
Replies: 3
Views: 1577

Re: ESP32 + WLED, LEDs turn on when ESP32 is plugged in power. How to prevent this from happening?

In WLED settings web page choose "Solid" for the effect mode. Then for color choose black.
Then go to presets and save that setting as the preset. On boot it will run that preset, and keep them off
by username
Fri Oct 06, 2023 2:53 am
Forum: Hardware
Topic: ESP32-S3-DevKitC-1 - USB Drive
Replies: 4
Views: 1266

Re: ESP32-S3-DevKitC-1 - USB Drive

Yes & no. Yes it can be done, but no in that there isn't a pre-built solution. I have done what your asking but it came from putting together a few of their solutions. IF you want to do the same, you can start with this for getting access to a USB memory stick. https://github.com/espressif/esp-idf/t...
by username
Mon Sep 25, 2023 11:51 am
Forum: General Discussion
Topic: Fast digital read
Replies: 3
Views: 1723

Re: Fast digital read

#define PIN_TO_READ GPIO_NUM_1

// If pin # is <32 use this
#define PIN_READ() (REG_READ(GPIO_IN_REG) >> (PIN_TO_READ));
// Otherwise, use this
#define PIN_READ() (REG_READ(GPIO_IN1_REG) >> (PIN_TO_READ- 32))


// Check state of pin here.
uint8_t busy = (uint8_t)PIN_READ();
by username
Sun Sep 24, 2023 6:06 am
Forum: ESP-IDF
Topic: Now I managed to install ESP-IDF to VS-Code
Replies: 1
Views: 801

Re: Now I managed to install ESP-IDF to VS-Code

Strange to hear you had all those problems.
I have found using the Esperessif Extension to be problematic if say you have other Extensions installed say PlatformIO.
What I have done was use VSC portable. Then when I install the Esperessif Extension it goes smoothly.
by username
Fri Sep 22, 2023 5:11 am
Forum: Hardware
Topic: ESP32-S3 flashing mainboard / Test Fixture
Replies: 2
Views: 1336

Re: ESP32-S3 flashing mainboard / Test Fixture

Ok, we will give the GPIO0 a try. Thanks for the tip, and hopefully that works. Still though, a test rig would be a great tool to have for the S3.
by username
Thu Sep 21, 2023 9:34 pm
Forum: General Discussion
Topic: xTimerCreate still runs even after Task is deleted
Replies: 2
Views: 890

Re: xTimerCreate still runs even after Task is deleted

Thanks. looks like more reading for me ;-)
by username
Thu Sep 21, 2023 7:08 pm
Forum: General Discussion
Topic: xTimerCreate still runs even after Task is deleted
Replies: 2
Views: 890

xTimerCreate still runs even after Task is deleted

Ran into something strange today. I created a xTimerCreate inside a Task. When I delete the task the time continues to run. I expected it to stop. I though with vTaskDelete everything in that task gets wiped, no ? #include <stdio.h> #include <freertos/FreeRTOS.h> #include <freertos/task.h> #include ...
by username
Thu Sep 21, 2023 6:28 pm
Forum: Hardware
Topic: ESP32-S3 flashing mainboard / Test Fixture
Replies: 2
Views: 1336

ESP32-S3 flashing mainboard / Test Fixture

I cannot locate any test fixtures out there to program ESP32-S3 modules. Like these: Capture.PNG Espressif even has these but NOT for the ESP32-S3: https://www.espressif.com/en/products/equipment/production-testing-equipment/overview The main problem for us is even though the S3 has USB, its not rec...