-
-
-
-
No - this was not a known issue.
The change in the versions that work to it not working are changing the ide from esp-ide 2.x to 3.x
There is a recent release of 3.1.3 which I'm currently testing - this might sort the random rebooting.I'm not sure if there will need to be changes to the serial driver to get the settings to work - @JumJum - any ideas?
-
-
https://github.com/espruino/Espruino/pulls
Can't see anything here. Is it in your copy?
-
@SergeP
Where did you do the pull request - cant see it in espruino github? -
-
-
@tve - welcome back!
-
Hi,
Looking at your code above - the headers is not doing what you think it is... - the parameters need to be part of the path.
path: '/eb/belt/washington/tolls.json?orderBy=%22$key%22&limitToLast=1',
Without this you get 600k of data back and this is too much!
However - this is not the issue.
It looks like since the esp-idf version of the mBed TLS was added that https is no longer working... This simple case fails:
var http = require("http"); http.get("https://www.google.com", function(res) { res.on('data', function(data) { console.log(data); }); });
Added a new issue:
-
-
-
-
Isn't this because when the espruino starts its at time 0 - 1970 and then you are setting the time - so the intervals immediately expire?
What if you set the time first and then set the intervals?
@Gordon - any ideas?
-
-
The esp32 build supports https.
That dns name does not resolve:
https://firebaseio.com/ - in the browser it for sure if you prefix with www.
It looks like it's next trying to do some login/authentication - they might be quite tricky...
-
-
-
-
(@Gordon just moved this post to http://forum.espruino.com/conversations/328987/)
You are in the right track. You don't need Aes or crypto.
What device do you intend the file system to be on? Are you going to wire up an sd card?
The file system has been ported on the esp32 to use flash memory - flashfs
If you have enough flash memory this could be an option. How big are your files?