Florian Loitsch
Florian Loitsch
It's hard to estimate. There are only very few esp-now functions and they aren't too complex. I'm pretty sure that it's pretty simple to get those functions exposed to Toit....
In the meantime here are work-arounds to get into a good state again: According to https://esp32.com/viewtopic.php?t=15530 calling `idp.py -p PORT_NUMBER erase_flash` should erase the NVS Flash. Alternatively one could write...
600ms sounds like a lot of time. I wonder if something else is going wrong.
Pubsub only exists for Toit v1. We recommend to switch to an MQTT based server. There are multiple options (AWS, io.adafruit.com, datacake, qubitro).
Note that C3 support is still alpha. We only committed support for compilation last week. We ordered some C3 boards, but until then it's pretty much untested. We will add...
Fyi: the vscode client keeps track of how often the server died within the last three minutes. If that number exceeds 5, if won't restart the server: https://github.com/Microsoft/vscode-languageserver-node/blob/master/client/src/client.ts#L279
We use temporary directories outside of `/tmp` quite a lot: whenever we need to cache something, we create a temporary directory in the cache. This way we can use an...
My package isn't yet popular enough to be in 'extra', but would `--batchinstall` also cover the case where one package is in extra, and one is on AUR?
This has also implications for warnings that loops are infinite: ``` while x/int := foo: //
We don't have a tutorial yet, but there is an example here: https://github.com/toitlang/toit/blob/master/examples/espnow.toit Note that Toit doesn't support running espnow at the same time as WiFi. If you are using...