Search found 479 matches

by username
Thu Oct 12, 2023 2:47 am
Forum: ESP32 Arduino
Topic: Autodetecting OTA the way the Arduino IDE does
Replies: 3
Views: 3397

Re: Autodetecting OTA the way the Arduino IDE does

Google the source for Arduino OTA. Thats what I did when I had the same question as you.
Since then I just rolled my own
by username
Sun Oct 08, 2023 2:39 am
Forum: Hardware
Topic: ESP32S3 files sharing and transfering
Replies: 9
Views: 4198

Re: ESP32S3 files sharing and transfering

Espressif has an example doing this. But its for IDF, should not be any trouble to get it working for Arduino
https://github.com/espressif/esp-idf/tr ... le_serving
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: 1601

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: 1293

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: 1756

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: 806

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: 1343

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: 900

Re: xTimerCreate still runs even after Task is deleted

Thanks. looks like more reading for me ;-)