This is the Arduino Uno. It is an open-source microcontroller that uses an Atmel ATmega328 microprocessor as its "brains." The Arduino has 13 digital input/output pins (6 of which are PWM, more on that later) and 6 analog input pins. There are also some power pins that you can power small circuits with.
To make the Arduino do what you want, you basically plug it into your computer and start programming away. Luckily in college I took a course in C programming, which just so happens to be the programming language that Arduino "sketches" are written in. Here is a snapshot of the Arduino IDE (Integrated Development Environment) where I write all my code:
As you may or may not have seen, I've already crafted a bunch of things that utilize the Arduino:
- Anemometer
- Temperature Logger
- Infrared sensor with remote control hacking
- LCD display
- Binary Counter
For more information on Arduino or if you want to know what the dickens I'm talking about, here is the Arduino website.
No comments:
Post a Comment