Multithreaded on Raspberry Pi Pico (MicroPython)

One of the interesting things about the Raspberry Pi Pico is that it has two cores, which will allow us to perform multithreaded executions. If you don’t know what multithreaded execution is, I’ll tell you what your computer does and what allows you to have several programs open at the same time. Obviously, the Raspberry … Read more

Bit by Bit operations (Bitwise)

Today I bring you a tutorial about how to use the bit by bit operations, lso called bitwise. This kind of operations are very useful programming, because it will allow us to do some operations like for example: Save memory packing multiple booleans inside every byte Work with microcontroller registers (wich I’ll talk later on … Read more