Arduino

TwitterFacebook
Get flash to fully experience Pearltrees
Fotografía de alta resolución de una placa arduino Δ ( Retoque de la fotografía de Nicholas Zambetti )

playground - Arduino en Español - Wiki Comunitaria

http://playground.arduino.cc/Es/Es
Learning Examples | Foundations | Hacking | Links This page shows two examples on how to drive a unipolar stepper motor. These motors can be found in old floppy drives and are easy to control. The one we use has 6 connectors of which one is power (VCC) and the other four are used to drive the motor sending synchronous signals. The first example is the basic code to make the motor spin in one direction.

StepperUnipolar

http://arduino.cc/es/Tutorial/StepperUnipolar

Stepper

http://arduino.cc/es/Reference/Stepper Reference Language ( extended ) | Libraries | Comparison | Changes Esta librería permite controlar un motor paso a paso unipolar o bipolar.Para usarla necesitarás un motor pasa a paso, y el hardware apropiado para su control, para más información visita: Tom Igoe's notes on steppers . Curcuitos Funciones Stepper (pasos, pin1, pin2) Stepper (pasos, pin1, pin2, pin3, pin4) configura velocidad (rpm) paso (pasos)
http://arduino.cc/es/Reference/HomePage

Referencia del Lenguaje

Reference Language ( extended ) | Libraries | Comparison | Changes Visita la referencia extendida para características más avanzadas del Lenguaje Arduino y la página de librerías para estudiar cómo conectar con distintos tipos de hardware. Los programas hechos con Arduino se dividen en tres partes principales: estructura , valores (variables y constantes), y funciones . El Lenguaje de programación Arduino se basa en C/C++.
http://www.arduino.cc/en/Reference/PortManipulation

PortManipulation

Reference Language | Libraries | Comparison | Changes Port registers allow for lower-level and faster manipulation of the i/o pins of the microcontroller on an Arduino board. The chips used on the Arduino board (the ATmega8 and ATmega168 ) have three ports:

playground - BitMath

Note: This page was inspired by a conversation that took place in the Arduino forum . Table of Contents http://playground.arduino.cc/Code/BitMath
Detailed Description Note: This discussion of interrupts was originally taken from Rich Neswold's document.

<avr/interrupt.h>: Interrupts

http://www.nongnu.org/avr-libc/user-manual/group__avr__interrupts.html#ga5fc50a0507a58e16aca4c70345ddac6a

Instructables - Make, How To, and DIY

pagina donde gente muestra cosas qeu hizo hay cosas de arduino y muhcas mas. by francoviolante Jun 27

Arduino y bluetooth

http://www.instructables.com/id/Androino-Talk-with-an-Arduino-from-your-Android-d/step4/Have-fun/ Turn on Bluetooth on your Android and pair the device using the pin 1234. Start SL4A on your Android device. Select androino.py and then the gear symbol to start the application. The SMD LED on your BT module should stop blinking at this point.

sensa un valor via entrada analogica y lo presenta en la pantalla del celular 27 june by francoviolante Jun 28

Optical mouse hacking, part 1 « Department of New Computings

Arduino driver for the ADNS2610 follows the cut, along with sample implementation and a fairly straightforward Processing app to read the data. The part most people will care about is the first chunk. You should easily be able to adapt it to other chips like the ADNS2051. In porting, pay close attention to the procedure for reading out the framebuffer, as that seems to be the primary difference between chips. http://conorpeterson.wordpress.com/2010/06/04/optical-mouse-hacking-part-1/
http://txapuzas.blogspot.com/2009/12/paperteclado-un-teclado-con-una-hoja.html Introducción ¿Necesitas unos pulsadores para tu proyecto con un microcontrolador? Lo puedes hacer muy fácilmente, simplemente imprimiendo una hoja de papel a la que se fijarán con cinta adhesiva unos cables. NOTA : Sólo funciona con hojas impresas en impresora de inyección de tinta. Este proyecto recoje la idea de unos documentos de CienciaRedCreativa: http://www.cienciaredcreativa.org/informes/electricidad%201.pdf http://www.cienciaredcreativa.org/informes/electricidad%202.pdf http://www.cienciaredcreativa.org/informes/electricidad%203.pdf http://www.cienciaredcreativa.org/informes/electricidad%204.pdf En estos documentos se demuestra que: "Las bandas realizadas sobre un papel con una impresora de inyección de tinta son ligeramente conductoras, y que a medida que aumenta la longitud de la banda, la resistencia y que a medida que aumenta el ancho de la banda la resistencia eléctrica disminuye".

Txapuzas electrónicas: PaperTeclado: Un teclado con una hoja impresa de papel

Hoy tenemos un lector de CDROM para desarmar. Es un tanto antiguo, pero eso nos favorece. Como ya te podes imaginar mientras más moderno es un cacharro, mayor grado de integración y más complicado es reutilizar sus componentes. Lo que me propongo es hacer funcionar el motor principal del CDROM, el que gira el disco a tropecientasmil revoluciones por minuto. Este tipo de motores son complicados de usar, ya que son prácticamente motores de AC trifásicos sin escobillas.

(16) Reutilizar el motor de un lector CDROM

Programming an ATtiny w/ Arduino

This tutorial shows you how to program an ATtiny45 or ATtiny85 microcontroller using the Arduino software and hardware. The ATtiny45 and ATtiny85 are small (8-leg), cheap ($2-3) microcontrollers that are convenient for running simple programs. This tutorial is obsolete! See the updated version of this tutorial (with support for Arduino 1.0).

TKJ Electronics » Arduino RGB LED Controller

unsigned char Prescaler = 0 ; #define PrescalerOverflowValue 4 ISR ( TIMER2_OVF_vect ) { if ( Prescaler < PrescalerOverflowValue ) Prescaler ++ ; else { Prescaler = 0 ; Multiplex ( ) ; } } CurrentLED ++ ; if ( CurrentLED > 7 ) CurrentLED = 0 ; } int Red, Green, Blue ; int Hue1, Hue2, Hue3, Hue4, Hue5, Hue6, Hue7, Hue8, Saturation, Value ; void setup ( void ) { //Set the pin we want the ISR to toggle for output. pinMode ( 2 ,OUTPUT ) ; pinMode ( 3 ,OUTPUT ) ; pinMode ( 4 ,OUTPUT ) ; pinMode ( 5 ,OUTPUT ) ; pinMode ( 6 ,OUTPUT ) ; pinMode ( 7 ,OUTPUT ) ; pinMode ( 8 ,OUTPUT ) ; pinMode ( 12 ,OUTPUT ) ; pinMode ( 9 ,OUTPUT ) ; pinMode ( 10 ,OUTPUT ) ; pinMode ( 11 ,OUTPUT ) ;