Difference between revisions of "F18: Flappy Bird"

From Embedded Systems Learning Academy
Jump to: navigation, search
(Design & Implementation)
(Design & Implementation)
Line 265: Line 265:
 
[[File:Block2.jpg|1000px|thumb|left|State_Diagram]]
 
[[File:Block2.jpg|1000px|thumb|left|State_Diagram]]
 
</td>
 
</td>
</td>
+
<td>
 
</td>
 
</td>
 
<td>
 
<td>

Revision as of 08:17, 19 December 2018

Grading Criteria

  • How well is Software & Hardware Design described?
  • How well can this report be used to reproduce this project?
  • Code Quality
  • Overall Report Quality:
    • Software Block Diagrams
    • Hardware Block Diagrams
      Schematic Quality
    • Quality of technical challenge and solutions adopted.

Project Title

Flappy Bird

Abstract

Flappy Bird is a fun and intuitive mobile game on Android platform driving a lot of people crazy these days. In this game, the player can control the vertical movement of the bird that is pressing on the button makes the bird leap upward for a little bit, and the bird will fall freely without control. In the proposed game design, as soon as the game begins, obstacles will keep appearing from the right side of the screen and moving leftwards which will make bird seem to be flying in the forward direction. The goal of this game would be to control the bird, dodging and passing it through an incoming obstacle with as many obstacles as possible. The will run endlessly until bird hit the obstacle, ground or ceiling. At the beginning of the game, the player is acknowledged of the controls, rules as well as the highest score that they have to beat. Once the Bird is unable to beat the last obstacle, the game is concluded and the score for that session is displayed.


Objectives & Introduction

Flappy Bird was designed as a 2D game with simplicity in mind. Hence the primary objective was to develop a game that was a breeze to use for the end user. The push button interfaced with SJ One board acts as an interface between the user and the device which enables the control of the movement of the bird and helps it maneuver and skip the incoming obstacles. The bird continues to gradually descend and reach the bottom of the screen unless an input from the user helps it to fly upwards. The signals received from the button are relayed to the micro controller form the General Purpose I/O Pins. This input is read repeatedly and based on which the x co-ordinate of the bird gets incremented. In parallel the Obstacles are generated with random varying gaps for the bird to pass through them. The game is especially challenging when the user has take care of not letting the bird escape the screen space as well as dodging as many obstacles as possible in order to beat the high score. However, if the either of the challenges are not tackled, the game finishes and displays the current score. There are three components to the entire project:

  • 1. The Display : A 32x32 LED Display Matrix acts as the display of the game which is handled using the in-built GPIO pins provided by the manufacturer
  • 2. The Controller : The SJ One Board computes the random obstacle generation and handles the movement of the bird from the input button and transfers the information to the display using the GPIO pins
  • 3 The Button : The push button interfaced with the game reads the input given by the user and relays to the SJ One board

Team Members & Responsibilities

  • Karan Daryani
    • PCB Layout Designing
    • Obstacle generation driver design
  • Artik Shetty
    • Bird generation driver design
    • Hardware and Product enclosure design
  • Mahesh Shinde
    • Managing Wiki page
    • Collision detection driver design
  • Rachit Mathur
    • Code Integration(overall tasks integration)
    • Switch control implementation

Schedule

Week# Date Task Status Actual Completion Date
1 09/18/2018
  • Submission of Project Proposals
  • Completed
  • 09/25/2018
2 10/9/2018
  • Research on project requirements.
  • Order components and distribute project modules.
  • Completed
  • Completed
  • 10/12/2018
  • 10/12/2018
3 10/16/2018
  • Reading the Datasheet for the LED Matrix and Understanding it.
  • Working on Basic Idea and Design for the project.
  • Project report update on the wiki.
  • Completed
  • Completed
  • Completed
  • 11/03/2018
  • 11/03/2018
  • 11/05/2018
4 10/23/2018
  • Write basic LED display driver to blink individual pixels and set of pixels.
  • Initial PCB Circuit and Design.
  • Project report update on the wiki.
  • Completed
  • Completed
  • Completed
  • 11/03/2018
  • 11/03/2018
  • 11/05/2018
5 10/30/2018
  • Develop Algorithm for Obstacle Generation.
  • Develop Alogrithm to Display a Bird on Matrix.
  • Project report update on the wiki.
  • Completed
  • Completed
  • Completed
  • 11/14/2018
  • 11/21/2018
  • 11/14/2018
6 11/06/2018
  • Integrate Obstacle Generation and a Bird on the Matrix at One Time.
  • Project report update on the wiki.
  • Completed
  • Completed
  • 11/21/2018
  • 11/26/2018
7 11/13/18
  • PCB layout design using Eagle and Finalizing the schematic.
  • Project report update on the wiki.
  • Completed
  • Completed
  • 11/20/2018
  • 11/20/2018
8 11/20/18
  • Detection of Collision between the Bird and the Obstacle
  • Project report update on the wiki.
  • Completed
  • Completed
9 11/27/18
  • Designing the Interface of the Start Screen.
  • Soldering components and hardware testing on PCB
  • Project report update on the wiki.
  • Completed
  • Completed
  • Completed
10 12/04/18
  • Packaging of hardware board and related components.
  • Complete wiki report.
  • Completed
  • Completed
11 12/08/18
  • Final bug fixes and troubleshooting.
  • Complete wiki report and final demo.


Parts List & Cost

Item# Part Manufacturer Quantity Cost($)
1 SJ One Board Preet 1 80.00
2 Adafruit RGB LED Matrix LED Matrix 1 62.00
3 Power Adapter Power Supply 1 7.95
4 JLC PCB JLC PCB 1 22.00
6 Miscellaneous (Jumper Wires, Connectors, Switches) Excess Solution 2.00
  • Total Cost: $173.95

Design & Implementation

The block diagram for the project given below depicts the flow of the game

State_Diagram


Hardware Design

Discuss your hardware design here. Show detailed schematics, and the interface here.

Hardware Interface

In this section, you can describe how your hardware communicates, such as which BUSes used. You can discuss your driver implementation here, such that the Software Design section is isolated to talk about high level workings rather than inner working of your project.

Software Design

Show your software design. For example, if you are designing an MP3 Player, show the tasks that you are using, and what they are doing at a high level. Do not show the details of the code. For example, do not show exact code, but you may show psuedocode and fragments of code. Keep in mind that you are showing DESIGN of your software, not the inner workings of it.

Implementation

This section includes implementation, but again, not the details, just the high level. For example, you can list the steps it takes to communicate over a sensor, or the steps needed to write a page of memory onto SPI Flash. You can include sub-sections for each of your component implementation.

Testing & Technical Challenges

Describe the challenges of your project. What advise would you give yourself or someone else if your project can be started from scratch again? Make a smooth transition to testing section and described what it took to test your project.

Include sub-sections that list out a problem and solution, such as:

<Bug/issue name>

Discuss the issue and resolution.

Conclusion

Conclude your project here. You can recap your testing and problems. You should address the "so what" part here to indicate what you ultimately learnt from this project. How has this project increased your knowledge?

Project Video

Upload a video of your project and post the link here.

Project Source Code

References

Acknowledgement

Any acknowledgement that you may wish to provide can be included here.

References Used

List any references used in project.

Appendix

You can list the references you used.