I have designed and published a variety of battery charger circuits in this website, however the readers often get confused while selecting the right battery charger circuit for their individual applications. And I have to explicitly explain each of the readers regarding how to customize the given battery charger circuit for their specific needs. This […]
Search Results for: tutorials
Blinking 3 LEDs (R,G,B) Sequentially Using Arduino Circuit
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 […]
Microcontroller Basics Explored
One thing is great about microcontroller ICs, these are available almost in all parts of the globe and electronic retailers. Introduction Fundamentally microcontroller devices are popularly used in applications involving assessments of the surrounding environment and in similar electronics. You could find these devices being used for displaying a certain parameter, in motor control applications, […]
PIC Tutorial- From Registers to Interrupts
Before getting into the minute details of PIC programming, it would be first important to learn a few good programming methods. Understanding Registers To begin with suppose you type a ;(semicolon) at any point of the program, all’s that come after this semicolon would get ignored by the compiler, until of course the carriage get’s […]