All about technology, geeky topics and everything new in today's tech world.
Showing posts with label Arduino. Show all posts
Showing posts with label Arduino. Show all posts
Sunday, May 12, 2013
Arduino Programming! - How To Make A LED Blink
source code:
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Labels:
Arduino,
Arduino Uno,
Blink,
LED,
LED Blink,
loop(),
Programming,
setup(),
Source Code
Saturday, May 11, 2013
Ubuntu! - How To Install Arduino IDE 1.0.3 in Ubuntu 13.04
Best way to work with Arduino is with a Linux machine.
Friday, May 10, 2013
Product Review! - Arduino Uno Rev 3
The Arduino Uno is a microcontroller board based on the ATmega328. It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator, a USB connection, a power jack, an ICSP header, and a reset button. It contains everything needed to support the microcontroller; simply connect it to a computer with a USB cable or power it with a AC-to-DC adapter or battery to get started.
Labels:
Arduino,
Arduino Uno,
IDE,
linux,
microcontroller,
pc,
product reviews,
Programming,
review,
ubuntu
Subscribe to:
Posts (Atom)