Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
![GitHub repo size](https://img.shields.io/github/repo-size/moisesjlima/arduino-genius)
![GitHub](https://img.shields.io/github/license/moisesjlima/arduino-genius)

# Projeto - Jogo GENIUS com arduino
GENIUS é um jogo de memória que se tornou popular na década de 80. O objetivo do jogo é acompanhar uma sequência de luzes e sons sem errar. Este projeto ensina passo a passo a desenvolver este jogo no arduino.

[![genius arduino](http://img.youtube.com/vi/gYgGgox5Q4o/0.jpg)](http://www.youtube.com/watch?v=gYgGgox5Q4o "arduino genius")

2 changes: 1 addition & 1 deletion genius_arduino.ino
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void loop() {
/************************* Funções **************************/

void proximaRodada() {
randomSeed(analogRead(A0));
randomSeed(analogRead(A0)); //Comentário Adicionado durante o curso, para enterder o Pull request ;)
int sorteio = random(4);
sequencia[rodada] = sorteio;
rodada = rodada + 1;
Expand Down