Search found 124 matches

by aliarifat794
Mon Sep 16, 2024 7:54 am
Forum: General Discussion
Topic: My First Component
Replies: 2
Views: 180

Re: My First Component

Your RTC module is also compatible with Arduino, right?
by aliarifat794
Mon Sep 16, 2024 7:51 am
Forum: ESP-IDF
Topic: Compilation error for matter projects
Replies: 1
Views: 210

Re: Compilation error for matter projects

Your custom project should include all the necessary paths, libraries, and compiler options. Please compare the CMakeLists.txt or Makefile between the example project and your custom project.
by aliarifat794
Sun Sep 15, 2024 3:50 pm
Forum: Hardware
Topic: ESP32 PICO DevKit maximum usable pins for IO
Replies: 1
Views: 1211

Re: ESP32 PICO DevKit maximum usable pins for IO

You can safely use GPIOs 4, 5, 16, 17, 25, 26, and 27 for PWM without disrupting the boot/flash process. Avoid bootstrapping and flash-related pins, and your motor control application should work smoothly. Certain GPIO pins are used for bootstrapping, and using them incorrectly can cause boot issues...
by aliarifat794
Fri Sep 13, 2024 2:50 am
Forum: General Discussion
Topic: Esp32 make any button wireless
Replies: 1
Views: 324

Re: Esp32 make any button wireless

To make a wireless switch with ESP32, you need to configure the Wifi or Bluetooth. To control an AC load with the ESP32 wirelessly, you must use a relay.
by aliarifat794
Fri Sep 13, 2024 2:44 am
Forum: General Discussion
Topic: MicroPython Tutorials for ESP32
Replies: 2
Views: 473

Re: MicroPython Tutorials for ESP32

Thanks. It's gonna help us a lot.
by aliarifat794
Wed Sep 11, 2024 3:35 pm
Forum: ESP-IDF
Topic: Using Same GPIO for Deep Sleep Wake-up (EXT0) and State Check in Wake Stub on ESP32-S3
Replies: 2
Views: 362

Re: Using Same GPIO for Deep Sleep Wake-up (EXT0) and State Check in Wake Stub on ESP32-S3

Wake stubs are executed very early during the wake-up process, and their execution time is limited. The "watchdog timer" reset (TG0WDT_SYS_RST) is likely triggered because your code in the wake_stub function takes too long. You can edit your code like this: #include <stdio.h> #include "esp_sleep.h" ...
by aliarifat794
Wed Sep 11, 2024 3:12 pm
Forum: General Discussion
Topic: Serial ports are missing from IDE drop-down list
Replies: 2
Views: 658

Re: Serial ports are missing from IDE drop-down list

Please check if the FTDI/CP210x driver is properly installed.
by aliarifat794
Tue Sep 10, 2024 2:57 pm
Forum: Hardware
Topic: ESP32-C3 Periodic ripple on 3.3V
Replies: 6
Views: 537

Re: ESP32-C3 Periodic ripple on 3.3V

Add extra or larger low-ESR ceramic capacitors close to the ESP32-C3’s VCC pin to smooth out voltage dips. Typically, 10 µF, 1 µF, and 0.1 µF capacitors in parallel are used. These capacitors should be very close to the chip.
by aliarifat794
Tue Sep 10, 2024 2:48 pm
Forum: General Discussion
Topic: USB ESP32-S3
Replies: 2
Views: 484

Re: USB ESP32-S3

Use larger buffers for data transfer to reduce the number of interruptions and context switches.
by aliarifat794
Mon Sep 09, 2024 3:48 pm
Forum: Hardware
Topic: XR21V1410 and ESP32
Replies: 2
Views: 444

Re: XR21V1410 and ESP32

It will be much easier if you use CP2102, FT232RL, or CH340. Usually ESP32 boards have CP2102 chips.
https://www.theengineeringprojects.com/ ... tions.html