Hi, I browsed the code posted on github for a while and I wonder if it's (without modifications) possible to use espruino to parse script inside string.
I saw that espruino also works with interrupt routines and when used interactively, it has main loop doing various stuff, but that's not necessary for me.
If it's not possible without mods, I'd love to modify it and post it back. (But I could use some directions as the code is not that small.)
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Hi, I browsed the code posted on github for a while and I wonder if it's (without modifications) possible to use espruino to parse script inside string.
Something like:
char *script = "var temperature; ........";
jspExecute(script); ?
I saw that espruino also works with interrupt routines and when used interactively, it has main loop doing various stuff, but that's not necessary for me.
If it's not possible without mods, I'd love to modify it and post it back. (But I could use some directions as the code is not that small.)