Search found 201 matches

by aliarifat794
Fri Dec 20, 2024 3:32 pm
Forum: General Discussion
Topic: Problems programming an ESP32-S3 chip.
Replies: 2
Views: 2836

Re: Problems programming an ESP32-S3 chip.

Since it is a custom-designed board, manufacturing errors are quite possible. IO0 at 4V is abnormal; IO0 is expected to have a logic level of 0V (low) or 3.3V (high).When programming, IO0 should be pulled low to enter bootloader mode. An incorrect pull-up resistor value or pull-up connection on IO0 ...
by aliarifat794
Sat Nov 23, 2024 12:16 pm
Forum: ESP IoT Solution
Topic: Send AG devices battery level to ESP32
Replies: 1
Views: 8866

Re: Send AG devices battery level to ESP32

Not all phones implement the HFP battery reporting feature. You can verify by connecting your phone to a commercial HF device that supports HFP (e.g., a car kit) and checking if the battery level is displayed.
by aliarifat794
Sat Nov 23, 2024 12:03 pm
Forum: ESP32 Arduino
Topic: ESP-CAM image shows artifacts.
Replies: 2
Views: 2584

Re: ESP-CAM image shows artifacts.

You can reduce Frame Size. High resolutions like FRAMESIZE_UXGA (1600x1200) consume significant memory. Lower the frame size to reduce strain:
config.frame_size = FRAMESIZE_SXGA; // or FRAMESIZE_XGA
You can reduce the buffer count if two frame buffers are too demanding:

config.fb_count = 1 ...
by aliarifat794
Fri Nov 22, 2024 3:39 pm
Forum: General Discussion
Topic: Esp32s3 Bluetooth
Replies: 1
Views: 1666

Re: Esp32s3 Bluetooth

Hello, what problem are you facing? Are you seeing any error message?
by aliarifat794
Fri Nov 22, 2024 3:35 pm
Forum: General Discussion
Topic: ESP32-P4 - when can we see an 'action cam' demo: h.264 video+audio capture to SD card
Replies: 4
Views: 3777

Re: ESP32-P4 - when can we see an 'action cam' demo: h.264 video+audio capture to SD card

Found no straightforward demo, but these links may prove to be useful:
https://components.espressif.com/components/espressif/esp-ui/versions/0.2.0/examples/esp_idf/esp_ui_phone_p4_function_ev_board?language=en
https://components.espressif.com/components/espressif/esp_video/versions/0.4.0/examples ...
by aliarifat794
Thu Nov 21, 2024 7:41 am
Forum: ESP-IDF
Topic: ESP-NOW
Replies: 1
Views: 1855

Re: ESP-NOW

Since ESP-NOW uses the same underlying Wi-Fi hardware for communication, any Wi-Fi-related activity will block ADC2 operations. Use ADC1 instead of ADC2.
by aliarifat794
Thu Nov 21, 2024 7:01 am
Forum: Hardware
Topic: Encrypted Flash issues
Replies: 5
Views: 4711

Re: Encrypted Flash issues

In Development mode, the ESP32 encrypts the flash contents on the fly when writing. In Release mode, you must provide pre-encrypted binaries.
by aliarifat794
Wed Nov 20, 2024 7:21 am
Forum: General Discussion
Topic: How to speedup esp_wifi_start()
Replies: 2
Views: 2119

Re: How to speedup esp_wifi_start()

You can set CONFIG_BOOTLOADER_LOG_LEVEL_NONE to minimize logging overhead.
by aliarifat794
Wed Nov 20, 2024 7:17 am
Forum: General Discussion
Topic: Continuous Servo with Esp32
Replies: 13
Views: 9264

Re: Continuous Servo with Esp32

You can switch to a programmable digital servo.
by aliarifat794
Tue Nov 19, 2024 6:14 am
Forum: ESP-IDF
Topic: Multiple code signing keys possible?
Replies: 2
Views: 2566

Re: Multiple code signing keys possible?

Check if the CONFIG_SECURE_BOOT_KEY_DIGEST or CONFIG_SECURE_BOOT_ALLOW_KEY_ROTATION options are enabled in your bootloader.

Go to advanced search