Home
»Unlabelled
» Minimal Arduino with ATmega8
A good use for old Arduino boards
Like me, you may have a few old Arduino boards or ATmega8 chips (in the boards) laying around from when you were first playing with Arduino. Those chips can still be really useful as the heart of a tiny “Minimal Arduino” setup.
A normal Arduino board contains support components that make it easy to use. If you want a smaller footprint, you can get one of the many Arduino work-alike boards. But if you want a really small footprint, and reuse your old parts, you can make an Arduino board using just five components:
- ATmega8 chip
- single 10k resistor
- single 0.1uF capacitor
- tiny breadboard
- some hookup wire
(On the left, an IR remote controlled BlinkM. On the right an IR remote controlled RGB LED)
Disclaimer: All the information in this blog is just gathered from different sites in the web and placed here and I am not the owner for these content
Popular Projects
-
I just recently talked about me starting a saltwater reef aquarium. A lot of time and money goes into starting such a device, and the reward...
-
intro Arduino EMF (Electromagnetic Field) Detector A while back I saw an EMF (Electromagnetic Field) Detector at makezine.com that used a le...
-
intro Temperature Control For Kitchen Appliances In this Instructable, I will step through controlling the temperature of most kitchen appli...
-
intro Logger Shield: Datalogging for Arduino Data logging shield Here's a handy Arduino shield: we've had a lot of people looking fo...
-
intro Arduino Home automation This is a relatively simple controller for controlling equipment in your home. At the moment I control my cent...
-
int switchPin = 2; // switch input int motor1Pin1 = 3; // pin 2 on L293D int motor1Pin2 = 4; // pin 7 on L293D int enablePin = 9; ...