In this post I have explained how to run or blink three LEDs in sequence using Arduino. The post was written and submitted by: Jack Franko PROGRAM/* make RGB LEDs to blink in series one by one at intervalof 1000MS */ int R = 12;int G = 11;int B = 10;void setup(){ pinMode(R,OUTPUT); pinMode(G,OUTPUT); pinMode(B,OUTPUT);}void […]
Arduino
Blinking an LED with Arduino – Complete Tutorial
The post comprehensively discusses a basic Arduino code implementation guide for blinking its on-board LED. The data was built, tested, and written by Jack Franko. CODE: for simply inbuilt LED on pin 13 of ARDUINO BOARD by default it is programed to blink frequently at 50 Mili Seconds as it in description it will […]
Arduino based DC Voltmeter Circuit – Construction Details and Testing
In this post, I will show how to construct a DC voltmeter using Arduino where the readings are displayed in 16×2 LCD. The proposed voltmeter design can read up to 30V with tolerance of +/- 0.5 volt. We are going to see how this setup functions and explore other possibilities we can accomplish […]


