nopnop2002
nopnop2002
Thank you for your report. I've adopted your code. https://github.com/nopnop2002/Arduino-LoRa-Ra01S/commit/c1aa49883be3e93ce8581e0399dcab5aa948b13e
Maybe adding an esp32 would solve the problem. https://github.com/nopnop2002/Arduino-LoRa-Ra01S/blob/main/library.properties#L9 I have never used an ESP32 in an Arduino environment, so please let me know if this solves it for you.
>is it possible to use a certificate in the wifi connection up to the Access Point? You can use HTTPS protocol for communication between root node and AP. >Is it...
@xcguang Thank you. @BR-Coding-cmd >Which I'm guessing that in order to encrypt the data between nodes there would have to be a custom callback and forwarding function(s) to pass the...
>Is it possible to make the WiFi connection from root to Access Point secure? Unfortunately I don't know of any solution other than HTTPS. (EDIT1) You can use this ssh...
@BR-Coding-cmd As you may already know, I found the following in the documentation: https://github.com/espressif/esp-mesh-lite/blob/master/components/mesh_lite/User_Guide.md ``` Communication between nodes within a Mesh network can be encrypted with AES128 using esp_mesh_lite_aes_set_key ```...
@nicklasb That's nice work. I built esp32/examples/esp_opencv_tests using your repository. https://github.com/nicklasb/esp32-opencv/tree/master/esp32/examples/esp_opencv_tests We need sdkconfig.defaults in esp_opencv_tests directory. # Contents of sdkconfig.defaults ``` # # Partition Table # CONFIG_PARTITION_TABLE_CUSTOM=y CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"...
>Slave device is connected to the master via ESP-MESH Lite (using the no_router example as the reference). Both Root/Leaf/Intermediate Parent nodes can communicate directly with the MQTT broker. Messages from...
>you can directly port the MQTT/TCP example into the local control example and call mqtt start on IP event of "IP_EVENT_STA_GOT_IP" Here is example. https://github.com/nopnop2002/esp-mesh-lite-examples/tree/main/mesh_mqtt_client
>After merging the no_router (MESH Lite) example with my MQTT code, the master and slave are no longer able to exchange data over MESH. I have confirmed that only the...