Search found 3 matches

by boognevatz
Fri Aug 05, 2022 3:35 pm
Forum: General Discussion and Questions
Topic: WebREPL and uasyncio
Replies: 9
Views: 11482

Re: WebREPL and uasyncio

There are a few specialist applications which can run in the background but they are very much the exception. Anything you write will not unless you've mastered some tricky programming techniques. Simply using uasyncio does not achieve background running. Thank you for the detailed reply! Can you p...
by boognevatz
Tue Aug 02, 2022 12:20 pm
Forum: General Discussion and Questions
Topic: WebREPL and uasyncio
Replies: 9
Views: 11482

WebREPL and uasyncio

Hi, If I run a uasyncio task, while the task is running, the WebREPL prompt seems totally frozen. Here is a demo code (tested on esp32): boot.py: import network ap = network.WLAN(network.AP_IF) # create access-point interface ap.config(essid='ESPTEST') ap.config(authmode=3, password='testitbaby') # ...
by boognevatz
Sun Jul 03, 2022 12:01 pm
Forum: Programs, Libraries and Tools
Topic: Multiaxis stepper motors using RMT
Replies: 37
Views: 29486

Re: Multiaxis stepper motors using RMT

other one g01a() managing acceleration / deceleration. Hi OlivierLenoir, I tested your library with a stepper motor, and it seems to have some software bottleneck. Namely this line: https://gitlab.com/olivierlenoir/micropython-multiaxis/-/blob/master/micropython/RMT/multiaxis.py#L71 def steps(self,...