Search found 133 matches

by aliarifat794
Mon Sep 23, 2024 7:44 am
Forum: General Discussion
Topic: ESP-NOW, custom OUI
Replies: 2
Views: 1562

Re: ESP-NOW, custom OUI

If you're using a custom organization identifier (OUI) for peer addressing, the MAC address handling remains the same—each device still uses its MAC address (6 bytes) as the unique identifier, which can be customized based on your needs by specifying your OUI during peer addition. This feature can b...
by aliarifat794
Sun Sep 22, 2024 9:13 am
Forum: ESP32 Arduino
Topic: RTCWDT_RTC_RESET on light sleep
Replies: 4
Views: 779

Re: RTCWDT_RTC_RESET on light sleep

Please review the power domain settings to check if the system's memory and peripherals are correctly powered during light sleep.
by aliarifat794
Sun Sep 22, 2024 9:09 am
Forum: Rust
Topic: esp32-h2 unresponsive after first flash with rust sdk
Replies: 3
Views: 536

Re: esp32-h2 unresponsive after first flash with rust sdk

Even if the firmware is not working, you should still be able to access the ROM bootloader (which handles USB communication for flashing). If this doesn't work, it may indicate that the flash process corrupted some important data.
by aliarifat794
Sat Sep 21, 2024 1:17 pm
Forum: General Discussion
Topic: MicroPython LCD I2C Library for ESP32
Replies: 1
Views: 595

Re: MicroPython LCD I2C Library for ESP32

Thanks for the detailed sharing.
by aliarifat794
Sat Sep 21, 2024 1:16 pm
Forum: Hardware
Topic: Why can't I use wifi?
Replies: 5
Views: 1244

Re: Why can't I use wifi?

Does it still work without the antenna?
by aliarifat794
Wed Sep 18, 2024 8:32 am
Forum: Hardware
Topic: Does ESP8684 Support Development with Arduino Library?
Replies: 1
Views: 508

Re: Does ESP8684 Support Development with Arduino Library?

I think you have to specify this board in the platformio.ini file.

Code: Select all

[env:esp8684]
platform = espressif32
board = esp8684
framework = arduino
by aliarifat794
Wed Sep 18, 2024 8:25 am
Forum: General Discussion
Topic: Problem with multiple MQTT messages sent to MESH_NODE.
Replies: 1
Views: 396

Re: Problem with multiple MQTT messages sent to MESH_NODE.

To troubleshoot this issue, you can try to vary the size of the payloads. This will help you see if there’s a threshold at which the problem starts occurring.
by aliarifat794
Tue Sep 17, 2024 8:28 am
Forum: ESP-IDF 中文讨论版
Topic: ESP-NOW wireless_debug webserver源码
Replies: 1
Views: 726

Re: ESP-NOW wireless_debug webserver源码

源码**: 如果你找不到你所需要的源码,你可以使用标准的 ESP32 Web Server 实现并集成到 ESP-NOW 中。ESP32 的 Web Server 框架非常灵活,能够处理 HTTP 请求,用于简单的配网和调试工作。
by aliarifat794
Tue Sep 17, 2024 8:19 am
Forum: General Discussion
Topic: SPIFFS: Failed to update mtime (-10001)
Replies: 1
Views: 536

Re: SPIFFS: Failed to update mtime (-10001)

If the file system is corrupted, reformatting the SPIFFS may help:

Code: Select all

    
    SPIFFS.format();   
by aliarifat794
Mon Sep 16, 2024 7:54 am
Forum: General Discussion
Topic: My First Component
Replies: 5
Views: 830

Re: My First Component

Your RTC module is also compatible with Arduino, right?