¿Estás buscando una manera divertida y creativa de desafiar tus habilidades de memoria? ¡Entonces el juego de memoria con Teensy/Arduino es perfecto para ti! En este artículo, te mostraremos cómo crear tu propio juego de memoria utilizando estas plataformas de desarrollo. ¡Prepárate para poner a prueba tu cerebro y disfrutar de horas de diversión!
Este proyecto trata de crear un juego sencillo para poner a prueba tu memoria.
Usaré una placa Teensy 3.0. Si desea obtener más información sobre este tablero, haga clic aquí para leer una guía de introducción que creé hace unos días. Este proyecto también es 100% compatible con Arduino.
Mire el vídeo a continuación para ver cómo funciona.
Piezas requeridas
- 1x Adolescente 3.0
- (o Arduino UNO – leer Los mejores kits de inicio de Arduino)
- 8 resistencias de 220 ohmios
- 4x LED
- 4x pulsadores
- 1x timbre
- 1x placa de pruebas
- Cables de salto
Puedes utilizar los enlaces anteriores o ir directamente MakerAdvisor.com/tools ¡Para encontrar todas las piezas para tus proyectos al mejor precio!
Esquema
- Diminuto
- arduino
Sube el código a continuación
Este código funciona con Teensy y con Arduino.
/*
Memory Game with Arduino
Based on a project by Jeremy Wilson
Modified by Rui Santos
Visit: https://randomnerdtutorials.com
*/
// Constants
const int button1 = 2; // 1st button controls Blue LED
const int button2 = 3; // 2nd button controls Yellow LED
const int button3 = 4; // 3rd button controls Green LED
const int button4 = 5; // 4th button controls Red LED
const int led1 = 7; // Blue LED
const int led2 = 8; // Yellow LED
const int led3 = 9; // Green LED
const int led4 = 10; // Red LED
const int buzzer = 12; // Buzzer Output
const int tones[] = {1915, 1700, 1519, 1432, 2700}; // tones when you press the LED's - the last one is when you fail.
// Variables
int buttonState[] = {0,0,0,0}; // current state of the button
int lastButtonState[] = {0,0,0,0}; // previous state of the button
int buttonPushCounter[] = {0,0,0,0};
void playTone(int tone, int duration) {
for (long i = 0; i < duration * 1000L; i += tone * 2) {
digitalWrite(buzzer, HIGH);
delayMicroseconds(tone);
digitalWrite(buzzer, LOW);
delayMicroseconds(tone);
}
}
void setup() {
// initialize inputs :
randomSeed(analogRead(0));
pinMode(button1, INPUT);
pinMode(button2, INPUT);
pinMode(button3, INPUT);
pinMode(button4, INPUT);
// initialize outputs:
pinMode(led1, OUTPUT);
pinMode(led2, OUTPUT);
pinMode(led3, OUTPUT);
pinMode(led4, OUTPUT);
pinMode(buzzer, OUTPUT);
// initialize serial communication for debugging:
//Serial.begin(9600);
}
int game_on = 0;
int wait = 0;
int currentlevel = 1; // This is the level (also the number of button presses to pass to next level)
long rand_num = 0; //initialize long variable for random number from 0-100.
int rando = 0; //initialize random integer for loopgame_on. Will be from 1-4 later.
int butwait = 500; //amount of time to wait for next button input (ghetto de-bounce)
int ledtime = 500; //amount of time each LED flashes for when button is pressed
int n_levels = 10; //number of levels until the game is won
int pinandtone = 0; //This integer is used when the sequence is displayed
int right = 0; //This variable must be 1 in order to go to the next level
int speedfactor = 5; //This is the final speed of the lights and sounds for the last level. This increases as more games are won
int leddelay = 200; //Initializing time for LED. This will decrease as the level increases
void loop() {
int n_array[n_levels];
int u_array[n_levels];
int i;
//clears arrays both "n_array" and "u_array" and starts a new game
if (game_on == 0){
for(i=0; i<n_levels; i=i+1){
n_array[i]=0;
u_array[i]=0;
rand_num = random(1,200);
if (rand_num <= 50)
rando=0;
else if (rand_num>50 && rand_num<=100)
rando=1;
else if (rand_num>100 && rand_num<=150)
rando=2;
else if (rand_num<=200)
rando=3;
//saves a random number in our n_array
n_array[i]=rando;
}
game_on = 1;
}
//shows the user the current sequence
if (wait == 0){
delay (200);
i = 0;
for (i = 0; i < currentlevel; i= i + 1){
leddelay = ledtime/(1+(speedfactor/n_levels)*(currentlevel - 1));
pinandtone = n_array[i];
digitalWrite(pinandtone+7, HIGH);
playTone(tones[pinandtone], leddelay);
digitalWrite(pinandtone+7, LOW);
delay(100/speedfactor);
}
wait = 1;
}
i = 0;
int buttonchange = 0;
int j = 0; // This is the current position in the sequence
while (j < currentlevel){
while (buttonchange == 0){
for (i = 0; i < 4; i = i + 1){
buttonState[i] = digitalRead(i+2);
buttonchange = buttonchange + buttonState[i];
}
}
for (i = 0; i < 4; i = i + 1){
if (buttonState[i] == HIGH) {
digitalWrite(i+7, HIGH);
playTone(tones[i], ledtime);
digitalWrite(i+7, LOW);
wait = 0;
u_array[j]=i;
buttonState[i] = LOW;
buttonchange = 0;
}
}
if (u_array[j] == n_array[j]){
j++;
right = 1;
}
else{
right = 0;
i = 4;
j = currentlevel;
wait = 0;
}
}
if (right == 0){
delay(300);
i = 0;
game_on = 0;
currentlevel = 1;
for (i = 0; i < 4; i = i + 1){
digitalWrite(i+7, HIGH);
}
playTone(tones[4], ledtime);
for (i = 0; i < 4; i = i + 1){
digitalWrite(i+7, LOW);
}
delay (200);
for (i = 0; i < 4; i = i + 1){
digitalWrite(i+7, HIGH);
}
playTone(tones[4], ledtime);
for (i = 0; i < 4; i = i + 1){
digitalWrite(i+7, LOW);
}
delay(500);
game_on = 0;
}
//if you insert the right sequence it levels up
if (right == 1){
currentlevel++;
wait = 0;
}
//if you finish the game
if (currentlevel == n_levels){
delay(500);
// The following is the victory sound:
int notes[] = {2, 2, 2, 2, 0, 1, 2, 1, 2};
int note = 0;
int tempo[] = {200, 200, 200, 400, 400, 400, 200, 200, 600};
int breaks[] = {100, 100, 100, 200, 200, 200, 300, 100, 200};
for (i = 0; i < 9; i = i + 1){
note = notes[i];
digitalWrite(note+7, HIGH);
playTone(tones[note], tempo[i]);
digitalWrite(note+7, LOW);
delay(breaks[i]);
}
//sets game_on to 0, so it restarts a new game
game_on = 0;
currentlevel = 1;
n_levels = n_levels + 2;
speedfactor = speedfactor + 1;
}
}
¿Te gustó este proyecto?
Por favor deja un comentario.
Gracias por leer. Puedes contactar conmigo dejando un comentario. Si te gusta esta publicación, probablemente también te gustarán las siguientes, así que apóyame suscribiéndote a mi blog y a mi blog. Sitio de Facebook.
PD: Haga clic aquí para leer Introducción a Teensy.
Teensy/Arduino – Juego de Memoria
Este proyecto se trata de crear un juego sencillo para poner a prueba tu memoria. Utilizaré una placa Teensy 3.0. Si deseas obtener más información sobre esta placa, por favor haz clic aquí para leer la Guía de Inicio que creé hace unos días. Este proyecto también es 100% compatible con Arduino.
Partes Necesarias
- 1x Teensy 3.0 (o Arduino UNO)
- 8x Resistencias de 220 Ohmios
- 4x LED’s
- 4x Botones Pulsadores
- 1x Zumbador
- 1x Protoboard
- Cables Jumper
Puedes encontrar todas las partes para tus proyectos al mejor precio en MakerAdvisor.com/tools.
Esquemáticos
Teensy
Arduino
Puedes subir el código a continuación. Este código funciona tanto con Teensy como con Arduino.
- …
¿Disfrutaste este proyecto? Por favor deja un comentario. ¡Gracias por leer! Puedes contactarme dejando un comentario. Si te gustó este artículo, probablemente también te gustarán los siguientes, así que por favor apóyame suscribiéndote a mi blog y a mi página de Facebook.
¡Qué original y creativo! Me encanta la idea de usar Teensy/Arduino para desarrollar un juego de memoria. Seguramente es una forma divertida de aprender sobre programación y al mismo tiempo disfrutar de un entretenido pasatiempo. ¡Definitivamente lo probaré!
¡Qué innovador! Me encanta la idea de combinar la tecnología de Teensy/Arduino con un juego clásico como la memoria. Seguro que es una manera divertida de poner a prueba tus habilidades. ¡Definitivamente lo intentaré!
¡Me encanta la idea de utilizar Teensy/Arduino para crear un juego de memoria! ¡Seguro que es súper divertido y creativo! ¡Lo intentaré hacer en casa!
¡Me parece una idea súper divertida! Me encanta cómo se puede combinar la tecnología con algo clásico como un juego de memoria. Será interesante ver cómo puedo probar mis habilidades mientras me divierto. ¡Definitivamente voy a probarlo en casa!
¡Qué genial! Me gusta la combinación de tecnología y diversión que ofrece este proyecto. Seguro que es una experiencia entretenida y educativa al mismo tiempo. ¡Quiero probarlo ya!