Open nne998 opened 1 year ago
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 Jaguar, you have to disable Jaguar, so it doesn't start up the WiFi while the espnow program is running.
jag container install -D jag.disabled -D jag.timeout=2m espnow examples/espnow.toit
This would disable Jaguar for 2 minutes while the espnow example is running.
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 Jaguar, you have to disable Jaguar, so it doesn't start up the WiFi while the espnow program is running.
jag container install -D jag.disabled -D jag.timeout=2m espnow examples/espnow.toit
This would disable Jaguar for 2 minutes while the espnow example is running.
Can it be done with Artemis too? And what happens when the timeout expires if the app is still running? will it start failing? or will jaguar/artemis fail to configure the wifi?
@kidandcat Artemis allows you to stop the networking while your app runs, so that way you can programatically insist that Artemis doens't interfere with your WiFi / espnow usage.
Hi, Is there any espnow tutorials for esp32c3 chip ?
Thank you