fp-arduino

EECS 183 Final Project: Arduino

Core Due Friday, April 12, 8 pm submit your space_invaders.ino file here

Reach Due Tuesday, April 23, 8 pm submit your reach file(s) here - available starting on or about April 6

Starting March 29th, office hours times and locations will be changed for the final project. Check the Office Hours details here

This project involves using the Arduino micro-controller to link two sensors to an LED screen, so that you can play Space Invaders. The goal of this project is for you to:

This project does not use an autograder to determine grades.

The project is graded by staff playing the game that your team creates. An autograder is not used to grade this project. Grading rubrics are shown in the specification. All grading will be done after the submission deadline.

  • Pros - unlike the autograder, people are less pedantic and are not as thorough at finding bugs. The grading is less stringent since we just play your game.
  • Cons - you will have to check the rubric to know you have achieved what is asked. Staff will not pregrade before the deadline.

Here’s a picture of what your Core product will look like:

Space Invaders!

Here’s a brief demo of the project:

This project will be limited to the first 25 teams to request this project. Your team MUST submit a reservation request using the Arduino Team Sign-Up form. Only one sign up per team, please. Also note that, should the limit of 25 teams be reached before this time, the sign up form will close and your team will not be able to select this project.

For the Reach, you will be able to implement a game of your choice. Because of this flexibility, the Reach will be graded by hand at the Showcase. There are no autograders for either the Core or the Reach, so if you prefer to have feedback from the autograder, you may wish to choose a different final project.

Your team will be provided all of the hardware to complete the project. We will notify teams who sign up about where you can pick up your hardware kit.

Here are the pages of this specification, for quick reference while you are coding the project:

Table of Contents

Core

The core part of this project is for you to implement a clone of Space Invaders, an early arcade game and a key part of video game history. We chose this game so that it is approachable for beginning programmers and game developers while fitting the micro Arcade platform well.

Hardware Overview

Your team will be provided with the following necessary hardware

The Arduino

The Arduino Uno, the microcontroller board you will be using for this project

The Arduino is a single-board microcontroller, essentially a tiny computing platform for creating interactive projects. The Arduino language is based on C/C++ and is very easy to learn. Libraries are available for all types of displays you will use, and I/O in general is easy to program. Arduino uses its own IDE, and you are expected to use it. You can download it at the Arduino website.

If you orient your Arduino to match the picture above, you can see the main components of the Arduino you will be using. Going counter-clockwise from the top left:

  1. On the top left corner, there’s a button that restarts the Arduino.
  2. Just below that button is a USB port, that allows you to upload code to the Arduino.
  3. On the bottom left corner, there’s 5V power connector. You won’t need to use this, as we will be powering the Arduino by USB.
  4. Along the lower edge are a series of pins, which connect the Arduino to inputs and outputs. If you look closely, you will see that some pins provide power, while others get analog input (like the potentiometer) and output (like telling the LED screen which rows to light up)
  5. Along the upper edge, there’s another series of pins. These handle digital input (like the button) and output (like the color of the LEDs).

The Breadboard

The way you will connect the Arduino to its inputs and outputs with through a breadboard. They look like this:

A half-sized solder-less breadboard

Breadboards let you create circuits by providing an easy way to wire things together. Inside the breadboard, there’s a piece of metal that connects every numbered row, so all wires plugged into that row would share the same voltage/signal. Additionally, the column of holes on the side also share a connection. The colored lines indicate that these holes are usually used for power and ground (red for power, blue for ground) - any electronic circuit needs to have some connection between power and ground to work. For example, in the picture above, all the holes inside a purple rectangle share a connection. For this project, we will mostly be using the power and ground holes on the breadboard.

The Inputs

There will be two inputs to your game: a potentiometer and a button. A button is really just a switch - when you press the button, it completes a circuit and changes the voltage, which is how the Arduino knows you pressed the button. For the curious, electrically, it looks like this:

How the button is electrically wired

A potentiometer is a much more complicated piece of hardware than a button. If you want to find out more, take a look at the Wikipedia article.

The Output

We are using the Adafruit 32x16 LED screen. The front of it looks like this (when it’s lit up):

The front of the Adafruit 32x16 matrix

Each of those bright, little dots is an LED (Light Emitting Diode). We can separately set the amount of red, green, and blue light that comes out of each one. If they’re all on, the LED will be white, and if they’re all off the LED will be black.

On the back, there are three main connectors. Make sure the board says “IN” or “INPUT” and “OUT” or “OUTPUT” near the correct connectors:

The back of the Adafruit 32x16 matrix

Returning Hardware

At the end of the showcase, you must return all components that you have checked out from the class. If any component is broken, or if it is not returned at the end of the showcase, you must pay to replace that component. You will not receive your grades for the semester until you have paid.

Software Overview

Your team will be provided with the following necessary software:

Additionally, you will need to install:

Space Invaders

The goal of this game is to kill all invaders by shooting them, before they can move past you or kill you in turn. You will control a cannon through a potentiometer and a button; the potentiometer controls where you cannon points, while the button fires the cannon.

Every game begins the same way:

  1. Before the game starts, before a level starts (including when a player dies), display “Lives: <number of lives>”.
  2. Before the game starts, before a level starts (including when a player dies), display “Level: <level number>”.
  3. The invaders are then array-ed on the top of the screen; the game begins.
    • If an invader’s strength is reduced to 0, it dies and disappears from the screen.
    • If an invader touches the player’s cannon, the player dies (and loses a life).
    • If an invader reaches the bottom of the board, the player loses a life.
    • If all invaders are killed, the next level is loaded.
  4. The game continues until the player has died three times. Display “Game Over” when this happens.

The initial layout and the strength of the invaders depends on the level. All levels have at most 16 invaders, laid out in two rows of 8.

Graphics

The player’s cannon is drawn as four LEDs, 3 on the bottom and one on top in the middle. The player is always aquamarine in color.

 *
***

The invaders are drawn with 12 LEDs each:

 ## 
#**#
####
#  #

The LEDs marked with # change in color depending on the strength of the invader, while the LEDs marked with * are always BLUE. The invaders are colored roughly according to a rainbow:

Finally, the cannonball fired by the player takes two LEDs, vertically on top of each other. It is always ORANGE.

*
*

Game Dynamics

The player is controlled by the potentiometer, and when the button is pressed, a cannonball should shoot out from the top middle LED. The cannon should be able to shoot from any column of the board; this means that the base of your cannon should be able to move one pixel off the edge of the screen, with the barrel appearing on the edge. When you shoot, the shot should be visible until you reach a creature or until it moves off of the top of the board. Both the cannonball and the invader should disappear if the ball would move on top of the invader. Finally the bottom row of invaders should move down by one LED every few seconds. Only once the bottom row of invaders is completely destroyed, the top row of invaders should start moving down. If an invader overlaps with the player, then the player loses a life. The game continues until the player has lost all three lives. It is up to you what you want to do after displaying “Game Over”. You can either restart the game or keep displaying “Game Over”.

Given this description, the key part of your code will need to do the following:

Getting Started

Here is a short guide to help you start this project. This guide walks you through wiring the potentiometer, the button, and the LED screen, as well as getting your computer set up to start programming the Arduino.

Team Registration

You must register your 4-person team on the Core autograder and submit the starter file by Monday, April 1 at 11:59PM. We will grade only that you made a submission. You will receive full credit for registration even if you score 0 points on the autograder when submitting. Note we will use the autograder for this project only for file submission and team registration. See the Section Submission and Grading to learn how this project is graded.

Note: To receive credit, your team must submit the starter files - you must make a submission to the autograder to receive credit.

You can view the team registration steps here.

Kit Distribution

To find out how and when you can receive a hardware kit, see the kit distribution page.

Hardware

WARNING: DO NOT power your Arduino or LED Matrix unless you are sure everything is wired properly. Improperly wired projects may cause damage to your board or components. If you break a component, you will be responsible for replacing it!

There are two parts to setting up your hardware: wiring the button and the potentiometer to the Arduino as inputs and wiring the LED screen to the Arduino as an input.

For the setup instructions below, there are additional tutorial videos in the Prjoect Help section.

The Inputs: Potentiometer and Button

Attach the potentiometer onto a column on the breadboard so that all the legs are in the same column. Looking at the image below, the leftmost leg is connected to ground. For this project, you should connect the middle leg to analog pin 5. The rightmost leg should be connected to power.

How to connect the potentiometer to the Arduino and to the breadboard

For the button, you want to position it on your breadboard so that the legs on opposite sides of the button spans a ditch (as shown in the digram). One leg should be wired to power; the other leg should be connected to the resistor(in the range of 1 kohm to 10 kohm) and digital pin 10. The resistor should be connected to ground. This image shows the correct wiring for a button connected to digital pin 10.

How to connect the button to the Arduino and to the breadboard

The Outputs: The LED Screen

  1. Make sure that neither the Arduino nor the LED screen is connected to a power source - that is, neither to a USB cable, nor to a power converter.

  2. Each pin on the Arduino is labeled - the digital pins go from pin 0 up to pin 13, the analog pins go from A0 to A5, as well as power pins marked GND (for ground) and 5V (5 volts). We will refer to these as pin 0, pin 1, … pin 13, pin A0, pin A1, … pin A5, and simply ground and power for GND and 5V.

  3. The pins on the input connector of the LED screen are also labeled. The border of the board may obscure some of the labels, so we’ve recreated the diagram here:

    The pins on the input connector of the LED screen

    Here is (roughly) what the different pins do:

    • The symbol that looks like a downward arrow stands for ground.
    • The R1, G1, B1, R2, G2, B2 pins tell the screen what red, green, and blue values to display on the upper and lower half of the board respectively.
    • The CLK (clock) pin tells the screen that new data has come in.
    • The A, B, and C pins tell the screen which row is currently being described.
    • The LAT (latch) pin tells the screen that it’s the end of the current set of data.
    • The OE (output enable) pin tells the screen to move to the next row of LEDs.
  4. On your ribbon cable, take a look at the connectors - one side of each connector has a bump, which fits into the corresponding gap in the Arduino input connector. If you lay the cable flat, then the pins on the two ends of the cable correspond like this:

    How the ribbon cable is wired when it's lying flat

  5. Plug one end of your ribbon cable into the input connector in your LED screen, then flip the screen back over and lay everything flat again. Because the LED screen is now flipped from when you were reading the pin labels, the pins are also flipped. That is, for the unplugged end of the cable, the corresponding labels would match those in Step 9 (NOTE: MAKE SURE THE RED STRIPE IS AT THE TOP LIKE IN THE IMAGE BELOW).

  6. Just one more thing before we begin wiring. By convention, different colored wires are used for different things, so that it’s easier to separate them. The most common convention is to use red wires for power, and black wires for ground. In this project, we will also be using wires that represent the red, green, and blue values of LEDs. If you don’t have wires of these colors, don’t worry - you can still do the project, you’ll just have to keep track of the different wires more carefully.

  7. Now we’re ready to start wiring. First, four of the input connector pins should be grounded (i.e., connected to ground). Since we only have three ground pins on the Arduino, we will need to use the breadboard. Take a wire - preferably black - and gently insert it into one of the ground pins on the Arduino. Take the other end and insert it into a hole on the breadboard next to one of the blue lines.

  8. All the GND pins on the cable should be wired to other holes next to the same blue line. This connects those pins to the breadboard, which connects to ground on the Arduino.

  9. The remaining wires go directly between the Arduino and the cable. The wirings, Arduino -> cable, are listed below. Make sure you do each one correctly; once everything is wired, it becomes much more difficult to check that a wire is connecting the right pins. The pin labels are included again for easy reference.

    • 2 -> R1
    • 3 -> G1
    • 4 -> B1
    • 5 -> R2
    • 6 -> G2
    • 7 -> B2
    • 8 -> CLK
    • 9 -> OE
    • A0 -> A
    • A1 -> B
    • A2 -> C
    • A3 -> LAT

    The labels from the LED screen are flipped on the other end of the ribbon cable

  10. Double check that everything is wired correctly. There should be two (2) wires between the Arduino and the breadboard, four (4) wires between the breadboard and the LED screen, and twelve (12) wires between the Arduino and the LED screen. (You will have more if you’ve wired the potentiometer and/or the button.)

  11. Connect the Arduino to your computer with the USB cable.

  12. Connect the LED screen to the power converter, and plug the power converter into a wall socket.

  13. Wait for one minute, keeping an eye on the Arduino. The LEDs may remain off, or they may flicker depending on what is currently stored in the Arduino. Gently touch the chip on the Arduino (the large black rectangle in the middle), and make sure that it is not getting hot. If the Arduino gets hot, immediately unplug both the Arduino from your computer and the power converter from the wall socket. You probably wired your screen incorrect if this happens, and will need to check all your wires.

  14. If after a minute everything still looks fine - no smoke, the Arduino is at room temperature - then your Arduino is ready to be programed!

  15. You know you wired everything correctly if you run the plasma sample and it looks like this.

Software

WARNING: Do not start coding until you have wired your matrix properly and can test while you code.

See this page in the spec for Installing the Arduino IDE and creating a project with the starter files

Starter Files

You can download the starter files here.

All the code that you write for this project will be in the single distribution file. This includes not only the code for drawing the invaders and the player cannon, but also the code that determines whether the player has won or lost. The Arduino framework relies on two functions:

For convenience, we have outlined several classes for you. You are not required to use these classes, but they may help you get started. We have also given you several function headers. You are not required to use our functions if you don’t want to. You can create your own.

The Arduino, Adafruit GFX, and RGB Matrix Panel libraries also provide several functions you may use. Some functions you may find useful include:

These functions, and many others, are all documented on the Arduino website.

In addition to Arduino functions, the Adafruit screen also has functions you can use. We have defined a global variable called matrix, which is how you control the LED screen. It has several member functions:

For everywhere that we used COLOR above, we refer to the output of the function Color333(). You can learn more about the Adafruit libraries by looking at the .h files included with the distribution code.

Finally, you can use the Serial.print(string text) and Serial.println(string test) functions for debugging. This prints text to the Arduino IDE, much like cout prints to the console in Xcode or Visual Studios. Serial.print() does not insert an endl, while Serial.println() does. You can open the Serial monitor by clicking the top right of the Arduino IDE:

How to open the Serial monitor

Be careful! If you use either function too many times in your code, your code could slow to a crawl.

Hints

Arduino Uno

Before completing your game, it is helpful to understand the basic operation of the Arduino Uno. Every sketch (program) for the Arduino contains two special functions: setup() (called setupGame() in our code) and loop(). The setupGame() is called once, when the sketch starts. It’s a good place to do setup tasks like setting pin modes or initializing libraries. The loop() function is called over and over and is heart of most sketches. The Distribution Code already has the setupGame() and loop() functions defined for you.

How the Arduino Uno executes sketches (programs)

Potentiometer

The potentiometer input is passed as an argument to the update() function of the Game class using the integer parameter potentiometer_value. The position of the player cannon must correlate to the position of the potentiometer. That is, when the potentiomter is rotated to the middle, the cannon should be in the middle of the LED screen. As you rotate the potentiomter clockwise from center, the cannon will move to the right. Any time you are not rotating the potentiomter, the cannon should not move accross the game screen.

You may find that your cannon has some small amount of jitter on the LED display. A simple method to help reduce this is called input smoothing.

General Game Rules

FAQ

Q: What is the hitbox for an invader? A: The cannonball and cannon should be able to go between the “legs” of the invader. The cannonball’s / cannon’s pixels should never be drawn on top of an invader. In the below images, the invader is drawn in blue, the cannon in green, and the cannonball in yellow, the hitbox is drawn in red (the colors may change for the actual implementation). To clarify, the image with the cannon should not cause the player to die. The player should die once the invader moves again or the player moves the cannon to the left. Similarly, the invader should not die in the image with the cannonball, but the invader should die once the invader / cannonball moves once more. invader hitboxes

Q: How can I make levels 5 and up truly random? A: You will need to use the random seed function. Here is a link to the arduino website with more information.

Q: How fast should the invaders/player/cannonballs be? A: That is up to you! Just make sure that the game is playable (ie. the Invaders do not move down too fast) but it is also not too easy to beat

Q: I don’t like the colors given to the invaders/player/cannonballs. Can I change them? A: No, we want the core to be as close to the instructions we gave you as possible, so we know that you understand how to program the Arduino correctly. You can choose whichever colors you want to use for the reach!

Q: How many levels do I need? A: The game should continue on forever, you should be able to generate levels as long as the player hasn’t died 3 times.

Reach

For the Reach, your team may either signficantly extend the Core Invaders game, or create a new game or application of your design and vision. From the basic use of the Arduino microcontroller, there are many extensions for this project. The list of possible extensions to this project is limited only by your imagination. Note for the reach you must use an Arduino, i.e., you cannot use a Raspberry Pi or just a laptop.

NOTE: You are free to obtain and use new hardware in your Reach. Be sure to plan ahead; you will likely have to order all additional hardware over the internet and wait for it to arrive. We will provide extra buttons, potentiometers, resistors, wires, and breadboards as requested. We usually have a few Arduino Mega boards, and a few extra LED displays to loan - first come, first served. The LED displays included in the kit are only compatible with the Arduino Uno or Mega.

Here is a short list meant to inspire your team:

Extending your Invaders game:

Creating a new game or application:

Submission and Grading

Submissions will occur via an autograder which is configured to only accept file submissions. You will create a sketch file starting from the distribution code. Your entire implementation will be in this one file. We will retrieve your file from your group repository on the due date. We are not grading the functions separately. We will run your game on a board and make sure everything that is specified happens correctly or points will be deducted. Do not just write your code without continuously testing it on the board. It will be exceptionally (impossibly?) hard to debug that way.

Submit your space_invaders.ino file to the autograder here Note that the autograder will be used to submit your work. Grading will be done by hand using the rubric linked below.

The final project grade is broken down as:

Grading Rubrics

Troubleshooting

If the Arduino IDE refuses to run on your compluter, you may need to use the Arduino Web Editor. Go back to the Arduino website and follow the instructions for the Ardunio Web Editor at the top of the page.

Project Help

Teaching staff are eager to help you succeed with the project. Here are some resources we will have in place:

  1. Office hours - for information about individual and group office hours check below.
  2. Final project tutorial session, scheduled for Sunday, March 31.
  3. Labs. Your lab session is a great way to find a partner and to learn what you need to complete the project.
  4. Tutorial videos on some of the tasks that students find challenging.

Office Hours

Office hours for the Arduino project will be all in-person. Office hours can be in different locations, and may change. Check the calendar below to find the times and locations of each office hours block.

Go to the queue

Sign-up Instructions

Follow Brady to office hours in the Duderstadt

Support Staff

Each project will have a dedicated group of staff to help your team be successful. Each staff member will support only a single project. Here are a list of the staff who will be supporting the project.

Note: Depending on demand - teams are free to chose a project and it is impossible to predict demand precisely, the staff list may grow or shrink after the team registration deadline.

References