PuriphicoJun 17, 2021communication functions in arduino: serialThis article details the ways an Arduino microcontroller can communicate with your computer through the various Serial functions. Serial...
PuriphicoJun 16, 2021digitalWrite(): digital functions in arduino programming (part 3)digitalWrite(): Just as the purpose of the digitalRead() is to read a value of high or low of an input, the purpose of the digitalWrite...
PuriphicoJun 15, 2021digitalRead(): digital functions in arduino programming (part 2)This article details the digitalRead() function in Arduino programming, explaining how it works and how to use it in your own sketches....
PuriphicoJun 14, 2021pinMode(): digital functions in arduino programming (part 1)pinMode: The pinMode() function is usually performed in the void setup() fragment of the code, and it serves the purpose of configuring...
PuriphicoMar 28, 2021Functions in programming: a conceptual overviewWhat are functions? Functions are modules or sections of code designed for a specific purpose or task. Simply put, they are essentially a...