Paso 2: Circuitos electrónicos
El circuito es sencillo de hacer, antes de hacer, sólo tiene que conectar un LED, un botón y el altavoz para el Arduino para ver si funcionan. Usar un protoboard para conectar todos los componentes mencionados juntos.
- Conectar el GND de Arduino con el conector (-) de la placa
- Ahora conecte una resistencia de 10K Ohm con un conector del botón de
- Conectar el pasador opuesto del botón a un pin de señal en el Arduino (Digital Pin # 4)
- [Opcional] Conectar el cátodo de un LED a la GND de la placa y el ánodo para pin digital #13.
- Repita los pasos 7 veces más para llegar a un circuito simple que tiene botones que están conectados con el Arduino, basado en estos botón seleccionaremos las frecuencias de la biblioteca "pitches.h".
- [Opcional] Corte el cable negativo de la batería a la GND de Arduino y conectar un interruptor así que puede cambiar tu piano E encendido o apagado.
- Finalmente, conecte positivo del altavoz al pin #3 de PWM y el cable negativo a tierra.
Después de haber conectado su primer botón sólo, usar el siguiente código de Botón de Arduino (ejemplo) para comprobar si el circuito está funcionando bien o no.
La figura muestra el circuito esquemático y cómo cada botón está conectado al Arduino. Tu finalmente circuito debe parecerse a él. También puede tener LEDs a cada botón.
/* Button
Turns on and off a light emitting diode(LED) connected to digital pin 13, when pressing a pushbutton attached to pin 2.
The circuit: * LED attached from pin 13 to ground * pushbutton attached to pin 2 from +5V * 10K resistor attached to pin 2 from ground
* Note: on most Arduinos there is already an LED on the board attached to pin 13.
created 2005 by DojoDave modified 30 Aug 2011 by Tom Igoe
This example code is in the public domain.
http://www.arduino.cc/en/Tutorial/Button */
const int buttonPin = 4; // the number of the pushbutton pin const int ledPin = 13; // the number of the LED pin
// variables will change: int buttonState = 0; // variable for reading the pushbutton status
void setup() { // initialize the LED pin as an output: pinMode(ledPin, OUTPUT); // initialize the pushbutton pin as an input: pinMode(buttonPin, INPUT); }
void loop() { // read the state of the pushbutton value: buttonState = digitalRead(buttonPin);
// check if the pushbutton is pressed. // if it is, the buttonState is HIGH: if (buttonState == HIGH) { // turn LED on: digitalWrite(ledPin, HIGH); } else { // turn LED off: digitalWrite(ledPin, LOW); } }