Replies: 5 comments 4 replies
-
Actually espem is already working exactly like this. |
Beta Was this translation helpful? Give feedback.
-
Not sure what type of cloud API you are using. Maybe it's not that good to work with micro-controllers. But as you see with my project it has not problem to send 300+ data points via chunked json withing a second or less. So it is definitely not a PSRAM issue. |
Beta Was this translation helpful? Give feedback.
-
HTTPClient is not best choice for such tasks, it could block the MCU for a long time. |
Beta Was this translation helpful? Give feedback.
-
No, it won't work. You try to download huge json object in RAM, while ESPEM::wsamples method works by generating json on-the-fly using only a small block of RAM for a limited number of samples at a time. |
Beta Was this translation helpful? Give feedback.
-
I mean you could create and run some other script on python or any other lang and run it from outside the ESP32 device to do the hard work talking with cloud. |
Beta Was this translation helpful? Give feedback.
-
Moved from #28
Beta Was this translation helpful? Give feedback.
All reactions