curlyz

Results 27 comments of curlyz

Asyncio is a collaborative threading, therefore, you need to tune every thread that make it work together nicely. Btw, may I ask where did you get the pycom firmware ?

print () and input () You may need to use thread for input() as it is blocking until you type something in . Also take a look at dupterm()

I am wondering why the Neopixel can't use pin 32, 33. ```C if (pin > 31) { mp_raise_ValueError("Wrong pin, only pins 0~31 allowed"); } ``` Since they are also digital...

This surprise me when there is no reset function in the agent.

The crazy thing is that it doesn't on my Nano. The IDE do reset , but Arduino Cloud Editor doesn't, I thought maybe the team forgot to integrate it with...

I have traceback the problem to the fact that MacOS used /dev/tty and /dev/cu. When device plugged in, /tty/port and /cu/port show up. The /cu can't reset the board. And...

I realized that this PR is not merged, but it doesn't matter that much since we can still combine asyncio and call this wifi.scan() in _thread

I think synchronization is the most painful problem to deal with , even using wire , we will still have some gap which result in some error.