Search found 40 matches
- Thu Oct 19, 2023 12:08 pm
- Forum: General Discussion
- Topic: Is it really necessary to use esp-aws-iot to use aws iot?
- Replies: 2
- Views: 4262
Re: Is it really necessary to use esp-aws-iot to use aws iot?
Thanks, that's very helpful! I will abandon esp-aws-iot as I can't even subscribe to the device shadow properly and I know it'll take 5 mins in esp-idf.
- Wed Oct 18, 2023 11:55 am
- Forum: General Discussion
- Topic: Is it really necessary to use esp-aws-iot to use aws iot?
- Replies: 2
- Views: 4262
Is it really necessary to use esp-aws-iot to use aws iot?
I didn't know where else to ask this question so am asking it here. I have been looking at esp-aws-iot to use our product with aws iot and looking at the iot-core-poc example it seems to almost be a completely different sdk, and incredibly verbose and horrible. If we already have firmware written in...
- Mon Oct 18, 2021 8:01 am
- Forum: ESP-MDF
- Topic: heap memory leakage
- Replies: 4
- Views: 17437
Re: heap memory leakage
Are you doing cJSON_Delete after creating json structures?
- Thu Jun 24, 2021 4:25 pm
- Forum: ESP IoT Solution
- Topic: ESP-Mesh vs ESP-Now vs ESP-WiFi-Mesh vs ESP-BLE-Mesh
- Replies: 2
- Views: 16252
Re: ESP-Mesh vs ESP-Now vs ESP-WiFi-Mesh vs ESP-BLE-Mesh
According to the ESP-WIFI-MESH page, each node in the mesh has ip connectivity: All the nodes in the ESP Mesh network can get IP connectivity and communicate both with each other and the external world. The internet access of these nodes is provided by a root node acting either as a NAT or a bridge....
- Thu Apr 29, 2021 7:58 am
- Forum: ESP-MDF
- Topic: how to PC (AP, 802.11gbn) <-> mesh root (STA, 802.111bgn), mesh root (AP, 802.11lr) <-> many mesh nodes (STA, 802.11lr)
- Replies: 3
- Views: 22538
Re: how to PC (AP, 802.11gbn) <-> mesh root (STA, 802.111bgn), mesh root (AP, 802.11lr) <-> many mesh nodes (STA, 802.11
Have you seen this? I've never tried it but from the log it seems like each node does have ip connectivity:
https://github.com/espressif/esp-idf/tr ... al_network
https://github.com/espressif/esp-idf/tr ... al_network
- Mon Feb 22, 2021 9:50 am
- Forum: ESP-IDF
- Topic: rtc time doesn't seem to get updated from system time / ntp?
- Replies: 3
- Views: 4899
Re: rtc time doesn't seem to get updated from system time / ntp?
Thanks for the detailed answer, I can probably just use the RTC as sole time source as I don't need the higher precision. I agree there should be a manual way of setting the RTC without going into deep sleep, I might open an issue.
- Wed Feb 17, 2021 10:42 am
- Forum: ESP-IDF
- Topic: rtc time doesn't seem to get updated from system time / ntp?
- Replies: 3
- Views: 4899
rtc time doesn't seem to get updated from system time / ntp?
I have some devices which were running for several months, and their time was being maintained correctly by sntp. But when I did a soft reboot and just before they got time from ntp, their system time was wrong by a few hours/days. My theory about this, which may be wrong, is that the RTC clock main...
- Thu Jan 28, 2021 10:05 am
- Forum: ESP IoT Solution
- Topic: OTA through GSM.
- Replies: 2
- Views: 7571
Re: OTA through GSM.
There is no difference between doing it through GSM or wifi or ethernet, any http functions including OTA will just use whatever interface is configured.
You should just have to run esp_https_ota(&config) somewhere in your app and it will work.
You should just have to run esp_https_ota(&config) somewhere in your app and it will work.
- Tue Dec 15, 2020 10:13 am
- Forum: ESP-MDF
- Topic: Exploring Low Power Mesh Network with ESP-MDF
- Replies: 1
- Views: 6114
Re: Exploring Low Power Mesh Network with ESP-MDF
I have also been thinking about this. I think the answer to your question is probably no - you can configure a device as a sleeping node and send infrequent espnow messages, and you will easily get your required power consumption by doing this, but it expects a non-sleeping router to relay the messa...
- Fri Nov 06, 2020 3:43 pm
- Forum: ESP-IDF
- Topic: (resolved) SNTP sync erratic
- Replies: 5
- Views: 6263
Re: (resolved) SNTP sync erratic
I didn't realise you were making a user facing app, in that case it probably makes sense. When I first used sntp I didn't realise it was syncing automatically every hour, I just thought you might have made the same mistake.