Search found 4 matches

by horuable
Tue Jul 26, 2022 4:52 pm
Forum: Raspberry Pi microcontroller boards
Topic: Measure RPM with a Hall Sensor
Replies: 9
Views: 6583

Re: Measure RPM with a Hall Sensor

I'm kinda late to the party, but maybe someone will find it useful or interesting, so here it goes: The Pico has another way of counting frequency by using PWM in input mode. It's not directly supported by MicroPython, but I've written a simple module to do just that: https://github.com/phoreglad/pi...
by horuable
Tue Apr 19, 2022 2:08 pm
Forum: General Discussion and Questions
Topic: Working Actor Model implementation for MicroPython
Replies: 3
Views: 1210

Re: Working Actor Model implementation for MicroPython

Ok, I finally had time to finish my draft and test it a bit. It's far from being a complete solution but already works surprisingly well. If anyone wants to try it out, here's a gist with the code, including a simple example: https://gist.github.com/phoreglad/b884286c1813e5c5d8bb6880f03d85bd . Norma...
by horuable
Fri Apr 01, 2022 10:39 pm
Forum: General Discussion and Questions
Topic: Working Actor Model implementation for MicroPython
Replies: 3
Views: 1210

Re: Working Actor Model implementation for MicroPython

Yeah, I know about that, and to be honest it's my latest experiments with uasyncio that made me think of a higher abstraction level to multitasking, more akin to the framework I quite often use at work. I guess I just got used to it and thought it would be neat to program my Pico in a similar fashio...
by horuable
Thu Mar 31, 2022 7:56 pm
Forum: General Discussion and Questions
Topic: Working Actor Model implementation for MicroPython
Replies: 3
Views: 1210

Working Actor Model implementation for MicroPython

Hey everyone,

I was wondering recently if there is some sort of actor-based framework for MicroPython. Quick googling wasn't too helpful, so I thought maybe you could help me. Does anyone know if such framework exists and if so where can I find it?