Search found 2230 matches

by chegewara
Wed Apr 03, 2024 12:21 pm
Forum: Showcase
Topic: ESP32 USB DFU Bootloader
Replies: 2
Views: 1827

Re: ESP32 USB DFU Bootloader

I am wondering when espressif start advertising ESP32 as USB capable, like they did with bluetooth and after adding ble mesh ESP32 become bluetooth 5.0 certified. :?:
by chegewara
Wed Apr 03, 2024 9:05 am
Forum: Hardware
Topic: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...
Replies: 10
Views: 2303

Re: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...

In your case i would just make softAP ssid based on MAC address, so every device would have different SSID and RFID sticker on it or even better with QR code. Sure, its not best solution if you have 100 devices, but you can easy write app on smartphone which can read RFID or QR code and connect that...
by chegewara
Tue Apr 02, 2024 3:09 pm
Forum: ESP-IDF
Topic: is it a deafult ip address 192.168.4.1 ESP32 server
Replies: 5
Views: 871

Re: is it a deafult ip address 192.168.4.1 ESP32 server

I believe this function should be used https://github.com/espressif/esp-idf/blob/master/components/esp_netif/include/esp_netif.h#L477 https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-reference/network/esp_netif.html#_CPPv421esp_netif_set_ip_infoP11esp_netif_tPK19esp_netif_ip_info_t ES...
by chegewara
Tue Apr 02, 2024 3:04 pm
Forum: Hardware
Topic: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...
Replies: 10
Views: 2303

Re: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...

How about using HAL and small magnets?
This solution does not require additional hardware, but im not sure hal is still enabled in API.
It also is not the safest option, but you still have wifi password protected.
by chegewara
Tue Apr 02, 2024 1:30 pm
Forum: Hardware
Topic: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...
Replies: 10
Views: 2303

Re: Is it possible to reduce RF transmiting power on ESP32 to such a low level ...

I know its hardware, not software solution, but maybe if you try devkit with IPEX antenna which is not connected.
by chegewara
Tue Apr 02, 2024 1:28 pm
Forum: Showcase
Topic: ble mesh for dummies - new library
Replies: 0
Views: 1952

ble mesh for dummies - new library

Hi, i am trying to make C++ library which will help more users to build ble mesh devices with esp-idf. Library is in very early stage, like alpha or something, because ble mesh is very extensive topic with all SIG models (ble mesh v1.1 is adding a lot more models). Currently only most basic models a...
by chegewara
Tue Apr 02, 2024 1:13 pm
Forum: ESP-IDF
Topic: is it a deafult ip address 192.168.4.1 ESP32 server
Replies: 5
Views: 871

Re: is it a deafult ip address 192.168.4.1 ESP32 server

Yes, its default and can be configured in menuconfig IIRC.
by chegewara
Tue Apr 02, 2024 5:03 am
Forum: ESP-IDF
Topic: Using send_msg Function in esp_ble_mesh
Replies: 2
Views: 1058

Re: Using send_msg Function in esp_ble_mesh

https://docs.espressif.com/projects/esp ... s-of-nodes

Usually you want to send message to unicast or group address.
by chegewara
Tue Apr 02, 2024 4:56 am
Forum: Hardware
Topic: confusing esp32-s3 UART, USB port
Replies: 1
Views: 1222

Re: confusing esp32-s3 UART, USB port

The name devkit is suggesting its for development purpose, so for our convenient we have the CP21xx. It helps to see logs when we are working on code with USB support. When you want to connect USB you can do as you said, cut USB cable and connect 2 (signals only), 3 or 4 wires to devkit and it works...
by chegewara
Tue Apr 02, 2024 4:47 am
Forum: General Discussion
Topic: Issue with ESP32 OTA Connection to AWS S3
Replies: 4
Views: 1716

Re: Issue with ESP32 OTA Connection to AWS S3

Code: Select all

E (30382) advanced_https_ota_example: ESP HTTPS OTA Begin failed
I (30602) example_connect: Got IPv6 event: Interface "example_connect: sta" 
It looks like you are trying OTA before wifi connection is fully established.