>is it correct to understand that the keepalive of the CONNECT message is set to 120 seconds?
What is keepalive of the CONNECT message?
My understanding is that MQTT keepalive is a timeout when not sending a PINGREQ.
Please let me know if there is any mistake in my understanding.
Search found 111 matches
- Wed Nov 13, 2024 9:39 am
- Forum: ESP-IDF
- Topic: [MQTT] Is the keepalive of the CONNECT message set to 120 seconds?
- Replies: 1
- Views: 378
- Wed Nov 13, 2024 3:32 am
- Forum: ESP-IDF
- Topic: Ethernet Basic Example - W5500
- Replies: 4
- Views: 806
Re: Ethernet Basic Example - W5500
I saw Schematic_esp32-S3-ETH-CAM_2023-10-23.pdf
it will look like this:
INTn IO38
MOSI IO35
MISO IO37
SCLK IO36
SCSn IO39
it will look like this:
INTn IO38
MOSI IO35
MISO IO37
SCLK IO36
SCSn IO39
- Sat Oct 26, 2024 11:20 pm
- Forum: ESP-IDF
- Topic: undefined reference to `esp_ble_hidd_dev_init'
- Replies: 1
- Views: 512
Re: undefined reference to `esp_ble_hidd_dev_init'
You probably need this.
After adding this, you need to delete sdkconfig.
https://github.com/espressif/esp-idf/bl ... g.defaults
After adding this, you need to delete sdkconfig.
https://github.com/espressif/esp-idf/bl ... g.defaults
- Thu Oct 24, 2024 10:13 am
- Forum: ESP-IDF
- Topic: correct way to setup git repo for esp-idf
- Replies: 2
- Views: 936
Re: correct way to setup git repo for esp-idf
there is nothing.Is there anything special to do?
Github projects are suitable for development by multiple people at the same time.
- Wed Oct 23, 2024 1:41 am
- Forum: ESP-IDF
- Topic: undefined reference to `__atomic_is_lock_free'
- Replies: 1
- Views: 539
Re: undefined reference to `__atomic_is_lock_free'
ESP-IDF also supports C++, but the language specifications used differ depending on the version. - IDF v4.4.x and below — C++11 - IDF v5.0.x — C++20 - IDF v5.1.x or higher — C++23 std::atomic_is_lock_free This function has been deprecated since C++20. This project cannot be built with ESP-IDF V5. Th...
- Mon Oct 21, 2024 10:05 am
- Forum: ESP-IDF
- Topic: ESP IDF MQTT connection lost after few hours
- Replies: 26
- Views: 5151
Re: ESP IDF MQTT connection lost after few hours
I have my own server running in a docker, on local hardware.
I don't know the OS of your MQTT server, but I believe you can add Wi-Fi router functionality to this server.
I used Raspbian to build an MQTT server and Hotspot at the same time a long time ago.
- Mon Oct 21, 2024 4:26 am
- Forum: ESP-IDF
- Topic: esp32s3 camera example
- Replies: 8
- Views: 3857
Re: esp32s3 camera example
If I tried to crate a different folder outside the camera.master, and wanna add this sources files, do I need to add this sources to the CMakeFile right? All source files are placed inside a project. Source files cannot be placed outside the project. - myProject/ - CMakeLists.txt - sdkconfig - comp...
- Sun Oct 20, 2024 10:59 pm
- Forum: ESP-IDF
- Topic: esp32s3 camera example
- Replies: 8
- Views: 3857
Re: esp32s3 camera example
vscode with esp idf extension is too complicated for me to use. I was able to build it with the following. $ idf.py create-project-from-example "espressif/esp32-camera:camera_example" $ cd camera_example/ $ idf.py build Executing action: all (aliases: build) Running ninja in directory /home/nop/came...
- Sun Oct 20, 2024 10:15 pm
- Forum: ESP-IDF
- Topic: esp32s3 camera example
- Replies: 8
- Views: 3857
Re: esp32s3 camera example
Please try removing this line.
https://github.com/espressif/esp32-came ... ent.yml#L4
https://github.com/espressif/esp32-came ... ent.yml#L4
Code: Select all
dependencies:
espressif/esp32-camera:
version: "*"
- Sun Oct 20, 2024 6:38 am
- Forum: ESP-IDF
- Topic: esp32s3 camera example
- Replies: 8
- Views: 3857
Re: esp32s3 camera example
Where is the github URL?I downloaded the camera example from github and tried to compile with vscode.