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 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, 2021control structures in arduino programs (if, else, for, while, and more)Pictured below is the general framework for the usage of control structures, which use conditions to determine the flow and order of...
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...
PuriphicoJun 12, 2021time functions in arduino programming Delay() Pauses the program for a specified amount of milliseconds. Syntax is delay(ms). delayMicroseconds() Same as delay, but in...
PuriphicoJun 9, 2021constants: variables in arduino programming (part 1)This article details the types of constants in Arduino programming Overview They are predefined expressions in the Arduino language, used...
PuriphicoJun 8, 2021introduction to Arduino code syntaxThis article details the basic syntax for defining constants, including libraries, making comments, and using punctuation in your Arduino...
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...