Monthly Archives:
Arduino Programming: Redirect Statements
Normally the redirect statement in the Arduino Programming is used to branch your code to certain location purposely or bypassing the standard loop condition. break statement When you want to bypass and exit from the normal loop condition of a … Continue reading
Arduino Programming: Control Statements
No matter what type programming languages you are using, e.g. C/C++, Visual Basic, PHP and etc, there are always some logic paths you want your software to decide how it should react based on certain criteria. This is where control … Continue reading
Arduino Programming: Sketch Structure
Every time you open a new sample sketch from the Arduino IDE, there are always 2 important functions in every Arduino sketch. They are setup() and loop() functions. setup() function is used to initialized your codings, variables, pin modes and … Continue reading