Read and write data from EEPROM with Arduino

One of the things that we all ignore many times (I confess that I have ignored it until now), is the EEPROM memory of our Arduino. This memory is not very large, but it has the advantage that it survives the shutdowns of our microcontroller. That is why in this article I will teach you … Read more

Variable data types and usage on Arduino

One importatn thing to know are the variable data types existing on Arduino, and that is why I’ll try to talk about Variables Types in Arduino. For starters, here you have a table of the different types, their sizes (something very important to consider), and links to each one in the official documentation. Then I … Read more

Save SRAM memory space on Arduino

In this post I will try to show you some tips on how to save space in the SRAM memory of your Arduino. As we all know, our Arduino is limited in resources, and that is why we have to make the most of our ingenuity and the tools they provide us to try not … Read more