https://components.espressif.com/
works for me.
Search found 600 matches
- Sat Jul 18, 2026 3:38 pm
- Forum: ESP-IDF
- Topic: api.components.espressif.com not working
- Replies: 1
- Views: 19
- Fri Jul 10, 2026 3:25 am
- Forum: Showcase
- Topic: Thoughts on silkscreen for PCBs?
- Replies: 1
- Views: 45
Re: Thoughts on silkscreen for PCBs?
Of course your is better. I am still trying to figure out, what PCB house allows multiple colors.
- Sat Jul 04, 2026 4:44 am
- Forum: General Discussion
- Topic: ESP-IDF v6.0.2 has released!
- Replies: 2
- Views: 115
Re: ESP-IDF v6.0.2 has released!
Are you using the latest version of EIM v0.16.0 ?
- Tue Jun 30, 2026 9:26 pm
- Forum: IDEs for ESP-IDF
- Topic: Need Support for ESP-IDF Setup with LVGL.
- Replies: 6
- Views: 146
Re: Need Support for ESP-IDF Setup with LVGL.
Just click that little gear icon next to the garbage can to open menuconfig.
- Tue Jun 30, 2026 3:07 pm
- Forum: IDEs for ESP-IDF
- Topic: ESP-IDF Size option question
- Replies: 1
- Views: 60
ESP-IDF Size option question
In Visual Studio Code, when I click on ESP-IDF size, I see this for my project.
Now my flash app size is: ESP_Foundation_v0.0.bin 843936 bytes
My partition.csv file is:
nvs, data, nvs, 0x9000, 16k,
otadata, data, ota, 0xd000, 8k,
phy_init, data, phy, 0xf000, 4k,
app0, app, ota_0, 0x10000, 3968K ...
Now my flash app size is: ESP_Foundation_v0.0.bin 843936 bytes
My partition.csv file is:
nvs, data, nvs, 0x9000, 16k,
otadata, data, ota, 0xd000, 8k,
phy_init, data, phy, 0xf000, 4k,
app0, app, ota_0, 0x10000, 3968K ...
- Mon Jun 29, 2026 12:33 am
- Forum: ESP32-S31
- Topic: ESP32-S31-Function-CoreBoard-1
- Replies: 7
- Views: 437
Re: ESP32-S31-Function-CoreBoard-1
Oh, thanks for mentioning that. I just poorly assumed that -WROOM-3 was the latest, and -WROOM-1 was mor or less a prototype.FWIW, the -WROOM-3 has pads under the module, but the -WROOM-1 still has the castellated pins.
- Sat Jun 27, 2026 1:28 pm
- Forum: ESP32-S31
- Topic: ESP32-S31-Function-CoreBoard-1
- Replies: 7
- Views: 437
Re: ESP32-S31-Function-CoreBoard-1
I got mine in the other day as well. I agree with rudi on the board.
My only concern is the Ethernet PHY IC they chose to use. I would have though they could/ should have use a more common Ethernet PHY IC. The one on my board is by far the hottest part on the whole board. I didn't do a temp reading ...
My only concern is the Ethernet PHY IC they chose to use. I would have though they could/ should have use a more common Ethernet PHY IC. The one on my board is by far the hottest part on the whole board. I didn't do a temp reading ...
- Tue May 26, 2026 4:36 pm
- Forum: ESP32-S31
- Topic: IDF to support ESP32-S31
- Replies: 1
- Views: 199
IDF to support ESP32-S31
When can we expect an IDF version to support ESP32-S31
- Fri May 22, 2026 2:19 am
- Forum: General Discussion
- Topic: Esp32-p4 module?
- Replies: 4
- Views: 221
Re: Esp32-p4 module?
Have you seen this one too.
https://shop.m5stack.com/products/m5sta ... 9586799873
Personally I had such high hopes for this one. There is just something fishy going on with Espressif and this P4, and now they are coming out with the ESP32-S31.
https://shop.m5stack.com/products/m5sta ... 9586799873
Personally I had such high hopes for this one. There is just something fishy going on with Espressif and this P4, and now they are coming out with the ESP32-S31.
- Mon May 18, 2026 2:57 am
- Forum: General Discussion
- Topic: [SOLVED] Catch "hit enter within 15 seconds from app start"
- Replies: 4
- Views: 101
Re: Catch "hit enter within 15 seconds from app start"
while(...)
{
int ch = fgetc(stdin);
if (ch == '\n' || ch == '\r')
{
// Go do your thing
}
vTaskDelay(pdMS_TO_TICKS(100));
}
{
int ch = fgetc(stdin);
if (ch == '\n' || ch == '\r')
{
// Go do your thing
}
vTaskDelay(pdMS_TO_TICKS(100));
}