28 March 2021

 





    For this project, I am making a controller in the shape of an old Nokia Cell Phone to control the movements of the game, snake. Just like the good old days! This controller will have the CPE as the display of the cell phone itself simply to produce pretty colors as you play. And for the controls, I will be using two potentiometers to control the left and right movement of the snake. So far, I have chosen and gathered the materials I will be using to make the Nokia phone and I have written a simple pseudo code to guide me when I start the coding process. 


Questions:

  1. Is there anything I can add to my controller to make it more interesting?

  2. Am I missing something in my schematic?



#include <Adafruit_CircuitPlayground.h>

#include <Adafruit_Circuit_Playground.h>


//any variables needed


void setup() {

  // put your setup code here, to run once:

  CircuitPlayground.begin();

  Serial.begin(9600);



}


void loop() {

  // put your main code here, to run repeatedly:

  //function to read both potentiometer

  //function for neopixels

  //function to play short music tone with switched on

  



}




No comments:

Post a Comment

Note: Only a member of this blog may post a comment.