View allAll Photos Tagged Arduino
measures people in and out of door with irisys people counter and has arduino bluetooth PIR and crossbow mts410 environment sensor
By using this modified cable, you can program the ATmega chip easily with a Seeeduino. Please follow instruction from www.geocities.jp/arduino_diecimila/bootloader/index_en.html
Patrons spent two evenings building circuits and programming microcontrollers in this hands-on workshop using the Sparkfun Inventor Kits and the Redboard Arduino clones.
This was a fun project, and the first one where you have to program something and send it to the Arduino Board. This is my build on the example featured in the book.
7/2/24 HiTech students dive into the Arduino philosophy of learning through tinkering, problem solving, and rapid prototyping at the Elkridge branch of Howard County Library System
Special El wires (+Arduino) and computer vision (+Processing). 12 March 2011 at iMAL, Brussels. imal.org/activity/code-arts-crafts-6
circuit,
two juice mixer talk controlled by a arduino board, 04 2009
see video at www.youtube.com/watch?v=DP04khNnZXE
this is the programation of the board:
/*
* MIXER TALK
* Diego de los Campos
* Abril 2009
*
* este e meu primeiro projeto trabalhando com arduino
* fiz baseado no BLINK led: www.arduino.cc/en/Tutorial/Blink
* a idéia é fazer um diálogo entre mixer -eletrodoméstico para fazer batida de
* babnana-
* o mixer spirali está inclinado para frente e o classic esta bem erguido
* então o spirali vai reclamar coisas e o classic vai falar suscinto
* ver video em www.youtube.com/watch?v=DP04khNnZXE
* mais de meus trabalhos em deloscampos.multiply.com
*
*/
int spirali = 8; // mixer spirali controlado pelo pin 8
int classic = 4; // mixer classic controlado pelo pin 4
void setup() // run once, when the sketch starts
{
pinMode(spirali, OUTPUT); // sets the digital pin as output
pinMode(classic, OUTPUT); // sets the digital pin as output
}
void loop() // run over and over again
{
digitalWrite(spirali, HIGH); //
delay(200); // bom dia
digitalWrite(spirali, LOW); //
delay(800); //
digitalWrite(classic, HIGH); //
delay(100); // oi
digitalWrite(classic, LOW); //
delay(1300); //
digitalWrite(spirali, HIGH); //
delay(400); // eu vim para lhe dizer
digitalWrite(spirali, LOW); //
delay(200); //
digitalWrite(spirali, HIGH); //
delay(600); // que eu sou um mixer bom e mereço respeito
digitalWrite(spirali, LOW); //
delay(800); //
digitalWrite(spirali, HIGH); //
delay(100); // oviu?
digitalWrite(spirali, LOW); //
delay(2000); //
digitalWrite(classic, HIGH); //
delay(100); // eae?
digitalWrite(classic, LOW); //
delay(1000); //
digitalWrite(spirali, HIGH); //
delay(100); // eae
digitalWrite(spirali, LOW); //
delay(200); //
digitalWrite(spirali, HIGH); //
delay(300); // que vc ai
digitalWrite(spirali, LOW); //
delay(100); //
digitalWrite(spirali, HIGH); //
delay(500); // que sempre esta erguido
digitalWrite(spirali, LOW); //
delay(400); //
digitalWrite(spirali, HIGH); //
delay(1000); // nuuuuuuuuunca
digitalWrite(spirali, LOW); //
delay(200); //
digitalWrite(spirali, HIGH); //
delay(550); // vai ser un mixer tão elegante
digitalWrite(spirali, LOW); //
delay(300); //
digitalWrite(spirali, HIGH); //
delay(150); //amable
digitalWrite(spirali, LOW); //
delay(200); //
digitalWrite(spirali, HIGH); //
delay(250); // sinceiro e util
digitalWrite(spirali, LOW); //
delay(300); //
digitalWrite(spirali, HIGH); //
delay(123); // que nem eu
digitalWrite(spirali, LOW); //
delay(1000); //
digitalWrite(classic, HIGH); //
delay(275); // pero me faltava mais
digitalWrite(classic, LOW); //
delay(200); //
digitalWrite(classic, HIGH); //
delay(900); // eu sou um clásico n
digitalWrite(classic, LOW); //
delay(200); //
digitalWrite(classic, HIGH); //
delay(133); // não saio de moda
digitalWrite(classic, LOW); //
delay(200); //
digitalWrite(classic, HIGH); //
delay(133); // enquanto vc...
digitalWrite(classic, LOW); //
delay(1000); //
digitalWrite(classic, HIGH); //
delay(345); // td mundo gosta
digitalWrite(classic, LOW); //
delay(124); //
digitalWrite(classic, HIGH); //
delay(433); // e no tenho problemas
digitalWrite(classic, LOW); //
delay(400); //
digitalWrite(classic, HIGH); //
delay(133); // nenhum
digitalWrite(classic, LOW); //
delay(2000); //
digitalWrite(spirali, HIGH); //
delay(123); // a sim
digitalWrite(spirali, LOW); //
delay(1000); //
digitalWrite(classic, HIGH); //
delay(123); // é
digitalWrite(classic, LOW); //
delay(1100); //
digitalWrite(spirali, HIGH); //
delay(160); // ta bom
digitalWrite(spirali, LOW); //
delay(500); //
digitalWrite(spirali, HIGH); //
delay(110); // tchau
digitalWrite(spirali, LOW); //
delay(1244); //
digitalWrite(classic, HIGH); //
delay(80); // hum
digitalWrite(classic, LOW); //
delay(6100); //
}
El montaje dentro del marco. Hay que trabajar un poco todavía en la difusión de la luz, para que no se vea tanto la estructura y los píxeles queden más cuadrados.
Arduino shield for YAABR robot with connctors for servos, sensors and I2C modules. Selectable extra servo power supply for all PWM pins
Came in the mail today :-)
It's an Arduino
Basically it's a prototyping board with a little microprocessor on it. It connects to the computer with USB, and I can program the microprocessor from there. One can hook up electrical components to the other pins to gather data or do something with it. Supergeeky!
It can be powered over the USB connection, or plugged into a wall, or run off a 9 volt battery :-)