Author 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
Potentiometer
There are lots of analog devices that people are using to build their Arduino projects. One of the most common component is the potentiometer. There are lots of different types potentiometer in the market but all of them serve the … Continue reading
Arduino PWM
PWM stands for Pulse Width Modulation. Arduino uses this powerful PWM technique for controlling analog circuits with its digital outputs. Digital control uses to be only turn on (full 5v) or off (0v) in the binary format, and this on/off pattern … Continue reading
Arduino Shield
What is the Arduino Shield? A lot of people are saying that the Arduino board is like a mini cpu, if this is the case then the Arduino shields are like the printer, scanner, monitor, mouse and etc to the … Continue reading
Arduino Analog Input
This tutorial will show you how to read data from the Arduino analog input. There are few types of analog I/O components out there, therefore it will be very useful once you have mastermind the Arduino analog input. Some example of … Continue reading
Arduino Memory
Arduino is a mini computer therefor it needs memory space to store and execute its code. Each Arduino micro controller board is built with 3 types of memory. The 3 types of Arduino memory are as below: EEPROM (Electrically Erasable … Continue reading
Arduino Simulator
Want to try out the Arduino development before spending more money on the Arduino board, Arduino shield and some electronic components? If you are an Apple iOS device owner, you can spend just USD2.99 for a basic software based Arduino … Continue reading
What is Arduino?
What is Arduino? What can this tiny board do? These are some of the most popular questions people is asking in the cyber world when they first get in touch with this small yet powerful board. There are tons of … Continue reading