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
How to Drive High Watt LEDs with Arduino
In this post I have explained the method of incorporating high watt LEDs with Arduino through external high voltage supplies. The question was put forth by Mr. Cole. The Circuit Question I stumbled upon your blog and I love it! So much great information and great ideas Right now I am trying to figure out […]
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 3 Phase Inverter Circuit with Code
An Arduino three phase inverter is a circuit which produces a 3 phase AC output through a programmed Arduino based oscillator. In this post I have explained how to make a simple microprocessor Arduino based 3 phase inverter circuit which could be upgraded as per user preference for operating a given 3 phase load. We […]
Learning Basic Arduino Programming – Tutorial for the Newcomers
In this tutorial I have explained how to do basic Arduino programming through example codes and sample programs. This tutorial can be an extremely valuable course for all the newcomers who wish to grasp the basics through easy, understandable language. Introduction According to wikipedia a microcontroller is equivalent to a mini computer built inside a […]
How to Connect Transistors (BJT) and MOSFET with Arduino
The interfacing of power devices like BJTs, and MOSFETs with Arduino output is a crucial configuration which allows switching high power loads through low power outputs of an Arduino. In this article we elaborately discuss the correct methods of using or connecting transistors like BJTs and mosfets with any microcontroller or an Arduino. Such stages […]





