Search found 7 matches
- Thu Jan 15, 2026 5:33 pm
- Forum: ESP IoT Solution
- Topic: Zigbee with ESP32-S3 & ESP32-C6
- Replies: 4
- Views: 45480
Re: Zigbee with ESP32-S3 & ESP32-C6
Three years and no answer. If this is a forum, it's a forum romanum. Nobody here but us chickens.
- Wed Jan 14, 2026 10:16 am
- Forum: Hardware
- Topic: ESP32P4 with C6 zigbee
- Replies: 6
- Views: 1664
Re: ESP32P4 with C6 zigbee
Hi @robin2906 , did you get anywhere using the esp32p4 with zigbee?Hi guys,
I saw that the esp32c6 support zigbee, so my question is, will the esp32p4 support zigbee (i saw that the p4 can be connected to ble and wifi through the c6) ?
Best regards,
- Mon Sep 29, 2025 11:12 am
- Forum: ESP-IDF
- Topic: ESP32-P4 Camera App: esp_cam_ctlr_receive() hangs
- Replies: 10
- Views: 5704
Re: ESP32-P4 Camera App: esp_cam_ctlr_receive() hangs
If an LCD is a must, you can try using example video_lcd_display .
On the contrary, @WangYX, people here were trying to use esp_cam_ctlr_receive without LCD. Is the esp_cam_ctlr_receive function obsolete?
I love the documentation: camera_driver.rst:Now you can call :cpp:func:`esp_cam_ctlr ...
- Mon Sep 29, 2025 9:31 am
- Forum: Showcase
- Topic: Boot Linux on ESP32-S3
- Replies: 22
- Views: 252805
Re: Boot Linux on ESP32-S3
@rudi
Is anything available for the P4 yet? I've got a esp32-p4-nano and a couple of -wifi's I would like to try Linux on, if possible.
- Fri Sep 19, 2025 7:43 pm
- Forum: Hardware
- Topic: ESP-IDF v6 example code camera-dvp_spi_lcd will not compile
- Replies: 4
- Views: 2192
Re: ESP-IDF v6 example code camera-dvp_spi_lcd will not compile
I also have that habit, but there is "idf.py create-project-from-example", which may give better results.I had copied the whole dvp_spi_lcd directory to a local project directory and tried to compile it
- Wed Sep 17, 2025 1:27 pm
- Forum: ESP-ADF
- Topic: SD card doesn't work while porting example to custom board
- Replies: 2
- Views: 16321
Re: SD card doesn't work while porting example to custom board
Perhaps a bit late in the day, but on a esp32-p4-nano, I had to activate LDO channel 4, after which the SD joined the party:
// Create configuration for LDO index 3
esp_ldo_channel_config_t config4 = {
.chan_id = 4, // discovered by trial and error
.voltage_mv = 3300,
.flags = {
.adjustable ...
// Create configuration for LDO index 3
esp_ldo_channel_config_t config4 = {
.chan_id = 4, // discovered by trial and error
.voltage_mv = 3300,
.flags = {
.adjustable ...
- Mon Sep 15, 2025 3:07 pm
- Forum: ESP-IDF
- Topic: ESP32-P4 Camera App: esp_cam_ctlr_receive() hangs
- Replies: 10
- Views: 5704
Re: ESP32-P4 Camera App: esp_cam_ctlr_receive() hangs
I came here searching for *exactly this*...
I'd removed all the dsi display code from the camera_dsi example and found that the esp_cam_ctlr_receive() hangs when called a second time.
Meanwhile I've had much better results connecting my CSI camera and ESP32-P4 using the esp_video component:
https ...