Arduino – How to use switch, case and default
Learn how to use switch, case and default for Arduino to tidy and simplify your decision making code.
Learn how to use switch, case and default for Arduino to tidy and simplify your decision making code.
What are conditionals? Conditionals are branches in your code. The check to see if a specific criteria is met and, if it is, a specified set of code will run.…
What are operators? Operators are special characters, or sets of charactors, that perform a specific action to elements of your program such as variables. You'll already be familiar with common…
The Arduino IDE The Arduino IDE (Integrated Development Environment) is where you'll write your code. It's also where your code will be processed and sent to your Arduino. There are…
What's an Arduino board? Before we get to choosing your first Arduino, it makes sense to cover exactly what an Arduino board is. An Arduino board is an electronic circuit…