Search found 200 matches

by liaifat85
Thu May 16, 2024 6:01 pm
Forum: General Discussion
Topic: Cloning ESP32 WROOM 32
Replies: 1
Views: 490

Re: Cloning ESP32 WROOM 32

Check the PCB traces that are related to the CAN communication.
by liaifat85
Thu May 16, 2024 5:57 pm
Forum: General Discussion
Topic: Controlling ESP32 Deep Sleep Mode Awake Time
Replies: 3
Views: 799

Re: Controlling ESP32 Deep Sleep Mode Awake Time

You can modify the code like this: #include <BLEDevice.h> #include <BLEServer.h> #include <BLEUtils.h> #include <BLE2902.h> #include <Adafruit_INA260.h> #define uS_TO_S_FACTOR 1000000ULL // Conversion factor for micro seconds to seconds #define TIME_TO_SLEEP 60 // Time ESP32 will go to sleep (in sec...
by liaifat85
Wed May 15, 2024 6:15 pm
Forum: ESP-IDF
Topic: Issues flashing esp32-S3 on Adafruit Qualia board
Replies: 3
Views: 645

Re: Issues flashing esp32-S3 on Adafruit Qualia board

"waiting for download," is likely related to a mismatch in the COM port settings or a problem with the board configuration. In your output, you flash the device on COM3 but the monitor attempts to connect to COM4.
by liaifat85
Wed May 15, 2024 6:11 pm
Forum: General Discussion
Topic: A general question regarding Matter over Wi-Fi
Replies: 2
Views: 528

Re: A general question regarding Matter over Wi-Fi

For Matter over Wi-Fi, the communication between the controller (chip-tool) and the devices indeed goes through the local Wi-Fi router, utilizing the assigned local IP addresses for routing within the local network.
by liaifat85
Tue May 14, 2024 2:43 pm
Forum: General Discussion
Topic: Problems with joining the zigbee network
Replies: 2
Views: 499

Re: Problems with joining the zigbee network

You can try this. Run these commands on the initiator device: > bdb -r zr > bdb -t d > bdb -c 11 > tlk -k 00112233445566778899aabbccddeeff > bdb -s > bdb -i init > bdb -a init > bdb -a initiator Run these commands on the first target device: > bdb -r zr > bdb -t d > bdb -c 11 > bdb -m 10 > tlk -t he...
by liaifat85
Tue May 14, 2024 2:36 pm
Forum: General Discussion
Topic: chip-tool cluster commands failing all the time
Replies: 2
Views: 509

Re: chip-tool cluster commands failing all the time

Here is a github thread regarding the run command failure.
https://github.com/project-chip/connect ... sues/23081
by liaifat85
Mon May 13, 2024 6:06 pm
Forum: ESP-ADF
Topic: How to mute the microphone in VoIP/esp-rtc examples ?
Replies: 2
Views: 855

Re: How to mute the microphone in VoIP/esp-rtc examples ?

muting the microphone while audio is being played through the speaker can be done by programming.
by liaifat85
Sun May 12, 2024 2:04 pm
Forum: ESP-IDF
Topic: how generate clock and data 32khz to 10mhz using esp32
Replies: 9
Views: 1568

Re: how generate clock and data 32khz to 10mhz using esp32

Ensure that your code is optimized for performance to achieve the highest clock frequency possible. This includes minimizing interrupt latency, reducing unnecessary computations, and optimizing loop structures.
by liaifat85
Sun May 12, 2024 1:57 pm
Forum: General Discussion
Topic: PWM for low-cost ClassD audio amplifier
Replies: 1
Views: 387

Re: PWM for low-cost ClassD audio amplifier

Implement an anti-aliasing filter on the PWM output signal to remove high-frequency components before it reaches the amplifier. This can help in reducing aliasing effects in the output signal.