Search found 200 matches

by liaifat85
Thu May 30, 2024 11:48 am
Forum: ESP-IDF
Topic: Where to Define Preprocessor Symbols in Different Build or Launch Configurations?
Replies: 3
Views: 739

Re: Where to Define Preprocessor Symbols in Different Build or Launch Configurations?

Could not find any solid example or tutorial. But here is a thread is slightly related to what you're looking for.
https://stackoverflow.com/questions/856 ... with-cmake
by liaifat85
Thu May 30, 2024 11:40 am
Forum: General Discussion
Topic: Flash using USB in ESP32-S3
Replies: 1
Views: 470

Re: Flash using USB in ESP32-S3

USB_SERIAL_JTAG is primarily used for JTAG debugging and serial communication. It uses the built-in USB-to-serial/JTAG bridge. Communicates over a virtual COM port. USB_OTG supports the DFU class. It uses DFU utilities to upload firmware to the device. It uses the USB DFU protocol, which is a standa...
by liaifat85
Wed May 29, 2024 3:27 pm
Forum: Hardware
Topic: ESP32-S3-DevKitC-1 vs 1.0 RGB LED on GPIO48
Replies: 1
Views: 618

Re: ESP32-S3-DevKitC-1 vs 1.0 RGB LED on GPIO48

You can use a 1.8V to 3.3V logic level shifter like the Texas Instruments SN74LV1T34/SN74LV1T34-Q1 Logic Level Shifter.
by liaifat85
Wed May 29, 2024 3:24 pm
Forum: ESP32 Arduino
Topic: Best Mesh Technology ( ESP-MDF/ESP-Mesh-Lite/ESP-NOW/Zigbee/Openthread) for 1000 nodes
Replies: 1
Views: 574

Re: Best Mesh Technology ( ESP-MDF/ESP-Mesh-Lite/ESP-NOW/Zigbee/Openthread) for 1000 nodes

ESP-MDF (ESP-Mesh Development Framework) is the best fit for a network of 1000 street light nodes spaced 50-100 meters apart.
by liaifat85
Wed May 29, 2024 3:19 pm
Forum: General Discussion
Topic: Copy the image from partition to partition
Replies: 5
Views: 832

Re: Copy the image from partition to partition

You can try this edited version of your code: #include "esp_partition.h" #include "esp_log.h" #include "esp_ota_ops.h" #include <stdlib.h> #define TAG "example_main" void copy_image_to_ota0() { const esp_partition_t *storage_partition = esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION...
by liaifat85
Wed May 29, 2024 3:17 pm
Forum: ESP-IDF
Topic: Where to Define Preprocessor Symbols in Different Build or Launch Configurations?
Replies: 3
Views: 739

Re: Where to Define Preprocessor Symbols in Different Build or Launch Configurations?

To manage different build configurations in an ESP-IDF CMake project, it's usually done via command-line options or scripting within CMakeLists.txt rather than through IDE-specific "build configurations.
by liaifat85
Tue May 28, 2024 6:35 pm
Forum: ESP-IDF
Topic: Esp32S3 : Flash Encryption Question.
Replies: 3
Views: 695

Re: Esp32S3 : Flash Encryption Question.

1)It is possible to reflash non-encrypted firmware in development mode. a)The ESP32-S3 can automatically use the key stored in the eFuses to encrypt the firmware when flashing via the UART bootloader. b)The UART bootloader can also flash non-encrypted firmware directly into the flash memory. 2)you c...
by liaifat85
Tue May 28, 2024 6:29 pm
Forum: General Discussion
Topic: ESP32 chip problems
Replies: 11
Views: 1799

Re: ESP32 chip problems

You uploaded your code but it is not working. Are you sure there is no problem with your code itself? If you now try to upload a basic code like the LED blinking or so on, can you upload it without any problem?
by liaifat85
Mon May 27, 2024 3:08 pm
Forum: ESP-AT
Topic: Require Wifi code for station mode connect with Router using MQTT AT Command
Replies: 3
Views: 919

Re: Require Wifi code for station mode connect with Router using MQTT AT Command

I do not have any example of using the test.mosquitto.org. However, here is a tutorial on Sending Data to Cloud with ESP32 and ThingSpeak. https://www.theengineeringprojects.com/2022/02/sending-data-to-cloud-with-esp32-and-thingspeak.html ThingSpeak is an MQTT server. ThingSpeak updates various Thin...
by liaifat85
Mon May 27, 2024 2:58 pm
Forum: Hardware
Topic: external antenna for ESP-WROVER-B
Replies: 1
Views: 489

Re: external antenna for ESP-WROVER-B

ESP32-WROVER-B comes with a PCB antenna. ESP32-WROVER-IB has an external antenna connector. You have to select the later version.