PCINT interrupts on Arduino

Today I am going to bring you something a little more advanced in Arduino, and it is the way to use PCINT Interrupts (Pin Changes interrupts), in Arduino. Earlier we talked about hardware interrupts (INT), which were limited to certain pins depending on the Arduino model. The advantages of PCINT interrupts are that you can … Read more

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