Search found 359 matches

by nopnop2002
Fri Jul 24, 2026 11:42 pm
Forum: General Discussion
Topic: error in nvsconsole exemple on esp32-c6
Replies: 6
Views: 59

Re: error in nvsconsole exemple on esp32-c6

I have same problem under linux mint with the version 6.02
As of ESP-IDF V6, this item has been moved to Component config > ESP-STDOUT.
by nopnop2002
Fri Jul 24, 2026 6:50 am
Forum: ESP-IDF
Topic: Need help with camera and screen project
Replies: 6
Views: 95

Re: Need help with camera and screen project

To begin with, why not try stopping the downscaling from 320x240 to 240x180?

I haven't used `esp_lcd_panel_draw_bitmap` myself, but I believe the following code will correctly display a specific part of the camera image.

while (1) {
camera_fb_t *fb = esp_camera_fb_get();
if (!fb) { vTaskDelay ...
by nopnop2002
Mon Jul 20, 2026 2:48 am
Forum: ESP-IDF
Topic: Need help with camera and screen project
Replies: 6
Views: 95

Re: Need help with camera and screen project

Is there a possibility that R and B are swapped?


uint32_t r = ((p0 >> 11) & 0x1F) + ((p1 >> 11) & 0x1F)
+ ((p2 >> 11) & 0x1F) + ((p3 >> 11) & 0x1F);
uint32_t g = ((p0 >> 5) & 0x3F) + ((p1 >> 5) & 0x3F)
+ ((p2 >> 5) & 0x3F) + ((p3 >> 5) & 0x3F);
uint32_t bl = (p0 & 0x1F) + (p1 & 0x1F)
+ (p2 ...
by nopnop2002
Sun Jul 19, 2026 12:36 pm
Forum: ESP-IDF
Topic: Need help with camera and screen project
Replies: 6
Views: 95

Re: Need help with camera and screen project

Code: Select all

        .pixel_format   = PIXFORMAT_RGB565,

You can use JPEG as the camera's capture format.

Here is an example of displaying JPEGs on the ST7789.
https://github.com/nopnop2002/esp-idf-st7789
by nopnop2002
Fri Jul 17, 2026 12:16 am
Forum: ESP-IDF
Topic: Need help with semaphore handling
Replies: 1
Views: 50

Re: Need help with semaphore handling

It seems you are confusing semaphores and mutexes.

To use a semaphore, you initialize it with `xSemaphoreCreateBinary()`, whereas for a mutex, you use `xSemaphoreCreateMutex()`; however, the semaphore values ​​differ after initialization.

A mutex has an initial value of 1, and you must "take" it ...
by nopnop2002
Wed Jul 15, 2026 12:25 pm
Forum: General Discussion
Topic: ESP32-P4 chip availability ?
Replies: 4
Views: 123

Re: ESP32-P4 chip availability ?

P4NRW32X has chip revision V3.
by nopnop2002
Wed Jul 15, 2026 11:28 am
Forum: General Discussion
Topic: ESP32-P4 chip availability ?
Replies: 4
Views: 123

Re: ESP32-P4 chip availability ?

P4NRW32 has already reached EOL.
P4NRW32X is currently in mass production.

https://products.espressif.com/#/produc ... 32-P4%22]}
by nopnop2002
Tue Jul 14, 2026 9:44 pm
Forum: General Discussion
Topic: ESP32-S3 + ILI9488 (SPI) stays white with LovyanGFX, TFT_eSPI crashes inside tft.init()
Replies: 1
Views: 26

Re: ESP32-S3 + ILI9488 (SPI) stays white with LovyanGFX, TFT_eSPI crashes inside tft.init()

Is it possible that this module is actually using another controller instead of ILI9488 even though it is sold as an ILI9488 display?
You can determine whether it is an ILI9488 by reading the D3 register.

Go to advanced search