create account

How to make your own DIY gaming console GAMEBUINO by boompanot

View this thread on: hive.blogpeakd.comecency.com
· @boompanot · (edited)
$54.53
How to make your own DIY gaming console GAMEBUINO
Hello world! I would like to introduce you to this project on how to make your own do it yourself arduino based gaming console GAMEBUINO, by using the arduino microcontroller, push buttons and nokia 5110 LCD display modules, which is make a 'DIY Gamebuino'. Gamebuino is an arduino game machine that makes up Arduboy and two mountain ranges. Like Arduboy, you can share your own games with your own homepage, or you can play games created by other users, or make your own games and share with them. we can play snake, pong, space invader, puzzle, supermario, bounce, spacemanship, maze, metalog, solitare and many more games using this project. 

![DQmbZs4rEcxr5cMf9Tkkc8QqLa4fMCii2cVMB1cjqWgj4XS.jpg](https://cdn.utopian.io/posts/52d092b83465b5a45005760e68836cb8c25cDQmbZs4rEcxr5cMf9Tkkc8QqLa4fMCii2cVMB1cjqWgj4XS.jpg)


#### What Will I Learn?

- You will learn how to make your own mini gaming console
- You will learn how program and make your own games
- You will learn how to connect all the components in one breadboard

 *HARDWARE*

Gather all the Requirements

- Nokia 5110 LCD Display
- Arduino UNo
- Speaker/Buzzer
- Connecting wires
- Breadboard
- 7 pcs Push buttons
- Resistance
- Usb cable
- PC
- Extra battery pack

<p>

This a Basic electronic tutorial, I will provide the connection of pin to arduino and the sketch code to make our programming easily.

![20180420_180545_HDR.jpg](https://steemitimages.com/DQmcTHNiQTvzmfvGDS417LqJBaUbAchV8u27fnE42e8jW1q/20180420_180545_HDR.jpg)

- **Step 1: Build the Display**

This project uses a Nokia 5110 as the Display adapter, This display is made of 84x48 individual pixels, so you can use it for graphics, text or bitmaps. so less expensive than using oled display. this display module has built in 8 pin outputs, the power pins GNd and VCC the LIGHT pin and the 4 data pin which will be connected to specified arduino pins.

|Nokia LCD        | ARDUINO       | 
| ------------- |:-------------:| 
| RST      | AO |
| SC      |A1      |
|DC       |A2   |  
|DIN         |D11     |
|CLK |D13|
|VCC          |3.3V|
|LIGHT   |GND|
|GND      |GND|

<p>

Follow the '[Nokia 5110/3310 Monochrome LCD](https://learn.adafruit.com/nokia-5110-3310-monochrome-lcd/overview)' tutorial from Adafruit to hookup and test your lcd.

Arduino Nokia LCD address Code:

<pre><code>#define SCR_CLK 13;  
 #define SCR_DIN 11;
 #define SCR_DC  A2;
 #define SCR_CS  A1;
 #define SCR_RST A0;</code></pre>

- **Step 2: Build The Switch**

The Momentary Push Button Switch a 12mm Square, These buttons gives a nice soft click every time it's pressed so you know that you've definitely activated it. Their almost instant return make them great for building your own homemade button pad. it also make a good reset switch or user feedback for a microcontroller circuit. 

| Push buttons        | ARDUINO       | 
| ------------- |:-------------:| 
| Right Button      | D7 |
| Left Button      |D8     |
| Down Button     |D6     |  
| Up Button    |D9     |
|A Button |D4|
|B Button         |D2|
| C Button  | A3

<p>

You will need 7 buttons (up,down,left,right,A,B,C). Without buttons you can't really play any games,

Buttons address code:

<pre><code> #define BTN_UP_PIN      9;
 #define BTN_RIGHT_PIN   7;
 #define BTN_DOWN_PIN    6;
 #define BTN_LEFT_PIN    8;
 #define BTN_A_PIN       4;
 #define BTN_B_PIN       2;
 #define BTN_C_PIN       A3;</code></pre>

- **Step 3: Build the Speaker**

The speaker/buzzer can be driven by an oscillating electronic circuit or other audio signal source. A click, beep or ring can indicate that a button has been pressed most of this using to make alarm tune or alarm system that we will use in this tutorial. the speaker that i used here was came from an old mini fm radio.

Hookup a 8 ohm speaker with a 100 ohm resistor between pin 3 and gnd.

| 1.8" TFT LCD        | ARDUINO       | 
| ------------- |:-------------:| 
| SPK      | D3 |

<p>

Speaker Address Code

<pre><code>#define BuzzerPin 3;</code></pre>

----

<p>

- **Step 4: Experimental Procedures**

At this step we need to build a proper wiring on the breadboard, you can use PCB than breadboard and solder the components, but you cannot remove the components as its soldered and attached to the board, unless you un-solder it. possitioning the buttons on the breadboard is too difficult when you have  big buttons like what i used here, the both UP and DOWN buttons will slide to horizontal powerlane of the breadboard, we cannot put the leg of the buttons there, you can bend the 2 legs and slide it outside the rails of the breadboard. we have 2 remaining leg of buttons the power and the pwm pin. remember to put a 220k ohms resistance between the speaker - pin to GND to protect the speaker from overload. both LIGHT pin of lcd should have a resistance too before the 3,3v.

![20180420_183324_HDR.jpg](https://steemitimages.com/DQmZsguAMnMjJJ3pGgG346WDevxmAjw6ZNjKGceKVC72y7q/20180420_183324_HDR.jpg)

<p>

- **Step 5: Download the software and libraries
**
*SOFTWARE*

1. download the Arduino IDE for your specific operating system. I’ll leave a link to where you can download this software: https://www.arduino.cc/en/Main/Software 

2. Adafruit-GFX-Library; https://github.com/adafruit/Adafruit-GFX-Library

3. Adafruit-PCD8544-Nokia-5110-LCD-library; https://github.com/adafruit/Adafruit-PCD8544-Nokia-5110-LCD-library/ 

- Download the Gamebuino library; http://legacy.gamebuino.com/wiki/index.php?title=Download

<center>Download the zip file from the link above</center>

![dl.png](https://cdn.utopian.io/posts/bae79d67c46b8a6556f19b21c2f8868627d4dl.png)

<center>Unzip the downloaded zip file and move it to Arduino's libraries (program files -> Arduino -> libraries) folder.</center>

![2.png](https://cdn.utopian.io/posts/5edee04e75d567ad388a49142219dac6870a2.png)

<center>If the addition to the library is complete, you have to make sure that the hardware is properly connected through the example source, and check if the game works well in the gamebuino.  to this step on the adafruit libraries you need to include all lib to arduino IDE</center>

- **Step 5: Buid a Simple Game**

By The use GAMEBUINO library we run games and program it with ease, On building a simple PONG games. the first line of the code we need to include the gamebuino H file. The Serial Peripheral Interface SPI for communicating with one or more peripheral components quickly over short distances

<pre><code>#include &lt;SPI.h>
#include &lt;Gamebuino.h>
Gamebuino gb;
boolean paused = false;
//player variables
int player_score = 0;
int player_h = 16;
int player_w = 3;
int player_x = 0;
int player_y = (LCDHEIGHT - player_h) / 2;
int player_vy = 2;
//oponent variables
int oponent_score = 0;
int oponent_h = 16;
int oponent_w = 3;
int oponent_x = LCDWIDTH - oponent_w;
int oponent_y = (LCDHEIGHT - oponent_h) / 2;
int oponent_vy = 2;
//ball variables
int ball_size = 6;
int ball_x = LCDWIDTH - ball_size - oponent_w - 1;
int ball_y = (LCDHEIGHT - ball_size) / 2;
int ball_vx = 3;
int ball_vy = 3;
extern const byte font5x7[]; //get the default large font</code></pre>

<center>setup() method is ran once at the just after the Arduino is powered up and the loop() method is ran continuously afterwards.
setup() is where you want to do any initialisation steps, and in loop() you want to run the code you want to run over and over again.</center>


<pre><code>///////////////////////////////////// SETUP
void setup() {
  gb.begin();
  gb.display.setFont(font5x7); //change the font to the large one
  gb.titleScreen(F("Pong Solo"));
  gb.pickRandomSeed(); //pick a different random seed each time for games to be different
  gb.battery.show = false; //hide the battery indicator
}
///////////////////////////////////// LOOP
void loop() {
  if (gb.update()) {
    //pause the game if C is pressed
    if (gb.buttons.pressed(BTN_C)) {
      gb.titleScreen(F("Pong Solo"));
      gb.battery.show = false;
      gb.display.fontSize = 2;
    }
    //move the player
    if (gb.buttons.repeat(BTN_UP, 1)) {
      player_y = max(0, player_y - player_vy);
    }
    if (gb.buttons.repeat(BTN_DOWN, 1)) {
      player_y = min(LCDHEIGHT - player_h, player_y + player_vy);
    }
    //move the ball
    ball_x = ball_x + ball_vx;
    ball_y = ball_y + ball_vy;
    //check for ball collisions
    //collision with the top border
    if (ball_y < 0) {
      ball_y = 0;
      ball_vy = -ball_vy;
      gb.sound.playTick();
    }
    //collision with the bottom border
    if ((ball_y + ball_size) > LCDHEIGHT) {
      ball_y = LCDHEIGHT - ball_size;
      ball_vy = -ball_vy;
      gb.sound.playTick();
    }
    //collision with the player
    if (gb.collideRectRect(ball_x, ball_y, ball_size, ball_size, player_x, player_y, player_w, player_h)) {
      ball_x = player_x + player_w;
      ball_vx = -ball_vx;
      gb.sound.playTick();
    }
    //collision with the oponent
    if (gb.collideRectRect(ball_x, ball_y, ball_size, ball_size, oponent_x, oponent_y, oponent_w, oponent_h)) {
      ball_x = oponent_x - ball_size;
      ball_vx = -ball_vx;
      gb.sound.playTick();
    }
    //collision with the left side
    if (ball_x < 0) {
      oponent_score = oponent_score + 1;
      gb.sound.playCancel();
      ball_x = LCDWIDTH - ball_size - oponent_w - 1;
      ball_vx = -abs(ball_vx);
      ball_y = random(0, LCDHEIGHT - ball_size);
    }
    //collision with the right side
    if ((ball_x + ball_size) > LCDWIDTH) {
      player_score = player_score + 1;
      gb.sound.playOK();
      ball_x = LCDWIDTH - ball_size - oponent_w - 16; //place the ball on the oponent side
      ball_vx = -abs(ball_vx);
      ball_y = random(0, LCDHEIGHT - ball_size);
    }
    //reset score when 10 is reached
    if ((player_score == 10) || (oponent_score == 10)) {
      player_score = 0;
      oponent_score = 0;
    }
    //move the oponent
    if ((oponent_y + (oponent_h / 2)) < (ball_y + (ball_size / 2))) { //if the ball is below the oponent
      oponent_y = oponent_y + oponent_vy; //move down
      oponent_y = min(LCDHEIGHT - oponent_h, oponent_y); //don't go out of the screen
    }
    else {
      oponent_y = oponent_y - oponent_vy; //move up
      oponent_y = max(0, oponent_y); //don't go out of the screen
    }
    //draw the score
    gb.display.fontSize = 2;
    gb.display.cursorX = 15;
    gb.display.cursorY = 16;
    gb.display.print(player_score);
    gb.display.cursorX = 57;
    gb.display.cursorY = 16;
    gb.display.print(oponent_score);
    //draw the ball
    gb.display.fillRect(ball_x, ball_y, ball_size, ball_size);
    //draw the player
    gb.display.fillRect(player_x, player_y, player_w, player_h);
    //draw the oponent
    gb.display.fillRect(oponent_x, oponent_y, oponent_w, oponent_h);
  }
}</code></pre>

<p>

- **Step 6: Upload code to Microcontroller board**

Connect the arduino uno board nano/mega/r3 to your computer via type b usb cable.
your computer will automatically scan the device driver, to verify the board of the arduino, on the IDE click >. TOOLS then verify the board type and PORT where the USB is connected. 

![DQmbnw4Uy5yV7n6geJ96n3obTbHLcyYAwBYDPouDKEr3p6f_1680x8400.png](https://cdn.utopian.io/posts/5dff24282b9978e2fe9e893a22fdbc171cf3DQmbnw4Uy5yV7n6geJ96n3obTbHLcyYAwBYDPouDKEr3p6f_1680x8400.png)

<center>once done click upload, it will compile the sketch first before uploading.</center>

![DQmZkWHx6r7bofGHBn6No164MKhDGk34cAYEsREmNBJCMJR.png](https://cdn.utopian.io/posts/620f9e5b556b87af1686c0cd86a81af1417cDQmZkWHx6r7bofGHBn6No164MKhDGk34cAYEsREmNBJCMJR.png)

When the game main screen is displayed on the screen of nokia 5110 LCD as shown below, firstly, the LCD is connected without any abnormality! As you can see on the screen, you can operate with three buttons on the main screen. 

![20180420_180716_HDR.jpg](https://steemitimages.com/DQmYF6Sf9LFGk5xLK2ouFviY1adQgLVEDkMiLhwyMQNjCXM/20180420_180716_HDR.jpg)

The operations for each button are as follows.  So let's test each button through the game to see if it works. In case of Pong Game, it is possible to play game through Up Button and Down Button. You can check if the piezo buzzer is connected properly by confirming that the sound of the game sounds well.Press C Button during game to return to main screen! 

![20180420_181251.jpg](https://steemitimages.com/DQmQaN1bhmmLHzW1BDoQ6RgJVcxdgTpdaKU65r61TDYa4vm/20180420_181251.jpg)

----

<p>

- **Step  7: INSTALL GAMES from GAMEBUINO**

Now let's try uploading another game to our own diy gamebuino.  we are going to use the via ino file on PC on USB cable since there is no SD card module in our DIY gamebuino.

Access the [Gamebuino](http://legacy.gamebuino.com/wiki/index.php?title=Games) homepage to download the game .

![5.png](https://cdn.utopian.io/posts/5db78df9c439b3971ec3814c69c8b0a45e365.png)

When you click on Game from the menu bar at the top of the homepage, you can see that various games are coming out. click on the DOWNLOAD button to install the zip file which contain the .ino file for arduino IDE.

![33.png](https://cdn.utopian.io/posts/3d430095f6c9aa85f3f08769799ca99332e233.png)

Lets try to download and play the EPIC MINI GAME to our DIY gamebuino. Download the zip file then open it, locate the source code .INO file then open it with arduino IDE.

<center>*Here is the sample gameplay of the EPIC MINI GAME*</center>

![collage.jpg](https://cdn.utopian.io/posts/d5c38ce904283a003ad5c4b10f28fe54e8d7collage.jpg)

![sss](http://legacy.gamebuino.com/forum/download/file.php?id=1312)

<center>*EPIC MINI GAMES and PONG Games is my first Gamebuino game ever!*</center>

<pre><code>- LET'S PLAY Another Gamebuino Game Super Crate Buino
Here's How crate works
This is how the game works
- Each crate you collect gives you 1 point
- You have to kill the enemies (or they'll kill you), but it makes no points
- The enemies keep spawning at the top of the map, the higher you score the faster they spawn
- When an enemy reaches the bottom of the map, it comes back to the top instantly but angry and running faster
- You start with only a pistol and a little map, but there is a total of 13 very different weapons and 5 maps to unlock by scoring points</code></pre>

<p>

<center> click on the game icon then click [Download](https://github.com/Rodot/Super-Crate-Buino/archive/master.zip) it will Download the zip file with .ino file inside</center>

![8888888888888.png](https://cdn.utopian.io/posts/bd1000ba94ddae3993cf752c7c144483090b8888888888888.png)

<center> *here is the gameplay shots*</center>

![20180420_182041.jpg](https://steemitimages.com/DQmPZkdsDovF5wCCQf8LQwQuRzz5FFdK2QPXVFHgLpgYQTE/20180420_182041.jpg)

----

<p>

![20180420_182130.jpg](https://steemitimages.com/DQmVKm8UG3gQQi8X6HDNm9Uwm5SQ63Zi6RbTnVyacLDaW97/20180420_182130.jpg)

![qq](https://raw.githubusercontent.com/Rodot/Super-Crate-Buino/master/bitmaps/screen%20record/supercratebuino_b.gif)

<center>*You can also create your own games for [gamebuino hex converter](http://legacy.gamebuino.com/wiki/index.php?title=Getting_started#Make_your_own_.HEX). 
After creating the game through the [emulator](http://legacy.gamebuino.com/wiki/index.php?title=Emulators) provided by Gamebuino, *</center>

Here is the process of making DIY Gamebuino! The most difficult part seems to be the amount of information. But a series of trial and error seemed to have been a big help.. thank you for reading..


<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@boompanot/how-to-make-your-own-diy-gaming-console-gamebuino">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorboompanot
permlinkhow-to-make-your-own-diy-gaming-console-gamebuino
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":17263282,"name":"Gamebuino-Classic","full_name":"Gamebuino/Gamebuino-Classic","html_url":"https://github.com/Gamebuino/Gamebuino-Classic","fork":false,"owner":{"login":"Gamebuino"}},"pullRequests":[],"platform":"github","type":"tutorials","tags":["utopian-io","tutorial","philippines","diy","arduino"],"users":["boompanot"],"links":["https://cdn.utopian.io/posts/52d092b83465b5a45005760e68836cb8c25cDQmbZs4rEcxr5cMf9Tkkc8QqLa4fMCii2cVMB1cjqWgj4XS.jpg","https://steemitimages.com/DQmcTHNiQTvzmfvGDS417LqJBaUbAchV8u27fnE42e8jW1q/20180420_180545_HDR.jpg","https://learn.adafruit.com/nokia-5110-3310-monochrome-lcd/overview","https://steemitimages.com/DQmZsguAMnMjJJ3pGgG346WDevxmAjw6ZNjKGceKVC72y7q/20180420_183324_HDR.jpg","https://cdn.utopian.io/posts/bae79d67c46b8a6556f19b21c2f8868627d4dl.png","https://cdn.utopian.io/posts/5edee04e75d567ad388a49142219dac6870a2.png","https://cdn.utopian.io/posts/5dff24282b9978e2fe9e893a22fdbc171cf3DQmbnw4Uy5yV7n6geJ96n3obTbHLcyYAwBYDPouDKEr3p6f_1680x8400.png","https://cdn.utopian.io/posts/620f9e5b556b87af1686c0cd86a81af1417cDQmZkWHx6r7bofGHBn6No164MKhDGk34cAYEsREmNBJCMJR.png","https://steemitimages.com/DQmYF6Sf9LFGk5xLK2ouFviY1adQgLVEDkMiLhwyMQNjCXM/20180420_180716_HDR.jpg","https://steemitimages.com/DQmQaN1bhmmLHzW1BDoQ6RgJVcxdgTpdaKU65r61TDYa4vm/20180420_181251.jpg","http://legacy.gamebuino.com/wiki/index.php?title=Games","https://cdn.utopian.io/posts/5db78df9c439b3971ec3814c69c8b0a45e365.png","https://cdn.utopian.io/posts/3d430095f6c9aa85f3f08769799ca99332e233.png","https://cdn.utopian.io/posts/d5c38ce904283a003ad5c4b10f28fe54e8d7collage.jpg","http://legacy.gamebuino.com/forum/download/file.php?id=1312","https://github.com/Rodot/Super-Crate-Buino/archive/master.zip","https://cdn.utopian.io/posts/bd1000ba94ddae3993cf752c7c144483090b8888888888888.png","https://steemitimages.com/DQmPZkdsDovF5wCCQf8LQwQuRzz5FFdK2QPXVFHgLpgYQTE/20180420_182041.jpg","https://steemitimages.com/DQmVKm8UG3gQQi8X6HDNm9Uwm5SQ63Zi6RbTnVyacLDaW97/20180420_182130.jpg","https://raw.githubusercontent.com/Rodot/Super-Crate-Buino/master/bitmaps/screen%20record/supercratebuino_b.gif","http://legacy.gamebuino.com/wiki/index.php?title=Getting_started#Make_your_own_.HEX","http://legacy.gamebuino.com/wiki/index.php?title=Emulators"],"image":["https://cdn.utopian.io/posts/52d092b83465b5a45005760e68836cb8c25cDQmbZs4rEcxr5cMf9Tkkc8QqLa4fMCii2cVMB1cjqWgj4XS.jpg","https://steemitimages.com/DQmcTHNiQTvzmfvGDS417LqJBaUbAchV8u27fnE42e8jW1q/20180420_180545_HDR.jpg","https://steemitimages.com/DQmZsguAMnMjJJ3pGgG346WDevxmAjw6ZNjKGceKVC72y7q/20180420_183324_HDR.jpg","https://cdn.utopian.io/posts/bae79d67c46b8a6556f19b21c2f8868627d4dl.png","https://cdn.utopian.io/posts/5edee04e75d567ad388a49142219dac6870a2.png","https://cdn.utopian.io/posts/5dff24282b9978e2fe9e893a22fdbc171cf3DQmbnw4Uy5yV7n6geJ96n3obTbHLcyYAwBYDPouDKEr3p6f_1680x8400.png","https://cdn.utopian.io/posts/620f9e5b556b87af1686c0cd86a81af1417cDQmZkWHx6r7bofGHBn6No164MKhDGk34cAYEsREmNBJCMJR.png","https://steemitimages.com/DQmYF6Sf9LFGk5xLK2ouFviY1adQgLVEDkMiLhwyMQNjCXM/20180420_180716_HDR.jpg","https://steemitimages.com/DQmQaN1bhmmLHzW1BDoQ6RgJVcxdgTpdaKU65r61TDYa4vm/20180420_181251.jpg","https://cdn.utopian.io/posts/5db78df9c439b3971ec3814c69c8b0a45e365.png","https://cdn.utopian.io/posts/3d430095f6c9aa85f3f08769799ca99332e233.png","https://cdn.utopian.io/posts/d5c38ce904283a003ad5c4b10f28fe54e8d7collage.jpg","http://legacy.gamebuino.com/forum/download/file.php?id=1312","https://cdn.utopian.io/posts/bd1000ba94ddae3993cf752c7c144483090b8888888888888.png","https://steemitimages.com/DQmPZkdsDovF5wCCQf8LQwQuRzz5FFdK2QPXVFHgLpgYQTE/20180420_182041.jpg","https://steemitimages.com/DQmVKm8UG3gQQi8X6HDNm9Uwm5SQ63Zi6RbTnVyacLDaW97/20180420_182130.jpg","https://raw.githubusercontent.com/Rodot/Super-Crate-Buino/master/bitmaps/screen%20record/supercratebuino_b.gif"],"moderator":{"account":"deathwing","time":"2018-04-20T15:05:13.335Z","pending":false,"reviewed":true,"flagged":false},"questions":null,"score":null,"total_influence":null,"staff_pick":null,"config":{"questions":[{"question":"Does the tutorial address a minimum of 3 substantial concepts and no more than 5?","question_id":"tut-1","answers":[{"answer":"3-5 substantial concepts covered in the tutorial.","answer_id":1,"value":10},{"answer":"Less than 3 or more than 5 substantial concepts covered in the tutorial.","answer_id":2,"value":5},{"answer":"No substantial or recognisable concepts.","answer_id":3,"value":0}]},{"question":"Concepts covered in the tutorial are indicated in the post text with a short description of each concept and when appropriate, images?","question_id":"tut-2","answers":[{"answer":"Thorough text and images for concepts covered.","answer_id":1,"value":10},{"answer":"Minimal text and images.","answer_id":2,"value":5},{"answer":"No or very little text and images.","answer_id":3,"value":0}]},{"question":"Does the contributor provide supplementary resources, such as code and sample files in the contribution post or a GitHub repository?","question_id":"tut-3","answers":[{"answer":"Yes","answer_id":1,"value":10},{"answer":"No","answer_id":2,"value":0}]},{"question":"Is the tutorial part of a series?","question_id":"tut-4","answers":[{"answer":"Yes.","answer_id":1,"value":10},{"answer":"Yes, but first entry in the series.","answer_id":2,"value":5},{"answer":"No.","answer_id":3,"value":0}]},{"question":"Is there an outline for the tutorial content at the beginning of the post?","question_id":"tut-5","answers":[{"answer":"Yes.","answer_id":1,"value":10},{"answer":"Yes, but not detailed enough or does not cover all sections.","answer_id":2,"value":5},{"answer":"No.","answer_id":3,"value":0}]},{"question":"Does the writing style meet the Utopian standard considering formalness, informativeness and clarity of the content?","question_id":"c-1","answers":[{"answer":"It is formal, informative and well written with clear content.","answer_id":1,"value":10},{"answer":"It is informative with clear content but not formal enough.","answer_id":2,"value":5},{"answer":"The contribution could be more informative or contains unrelated information, formality and clarity of the content are good enough.","answer_id":3,"value":4},{"answer":"Not all sections were clear enough but overall holds value for the project.","answer_id":4,"value":2},{"answer":"Not at all.","answer_id":5,"value":0}]},{"question":"Was the provided category template for the editor followed?","question_id":"c-2","answers":[{"answer":"All points of the template were included with additional points as well.","answer_id":1,"value":5},{"answer":"The template was followed without additions.","answer_id":2,"value":4},{"answer":"The template was edited but the points were covered in different way.","answer_id":3,"value":3},{"answer":"Not all points of the template were covered in the contribution but the structure is clear enough.","answer_id":4,"value":3},{"answer":"The template was not followed but the structure is clear enough.","answer_id":5,"value":2},{"answer":"The contents are not clearly structured at all.","answer_id":6,"value":0}]},{"question":"Did the contributor tag other users?","question_id":"c-3","answers":[{"answer":"No other users were tagged by the contributor.","answer_id":1,"value":5},{"answer":"Used tags are reasonable and all tagged people are connected to the project and/or the contribution.","answer_id":2,"value":5},{"answer":"The contribution contains mentions of other users that are not directly related to the contribution but related in other ways.","answer_id":3,"value":2},{"answer":"The contributor misuses tagging of other users.","answer_id":4,"value":0}]},{"question":"Did the contributor ask for upvotes, resteems, follows or witness vote?","question_id":"c-4","answers":[{"answer":"No","answer_id":1,"value":5},{"answer":"Yes, but not in a way that disturbs readability. ","answer_id":2,"value":5},{"answer":"Yes.","answer_id":3,"value":0}]},{"question":"Was a graphical content like images, charts, videos or screenshots included?","question_id":"c-5","answers":[{"answer":"Yes, the graphical content is included and adds more value to the contribution.","answer_id":1,"value":5},{"answer":"No but the contribution works well without graphical content well.","answer_id":2,"value":4},{"answer":"Yes, but most of the graphical content’s purpose is just for presentational matters.","answer_id":3,"value":3},{"answer":"No relevant or useful graphical content is included in the contribution.","answer_id":4,"value":0}]},{"question":"How would you rate the overall added value?","question_id":"c-6","answers":[{"answer":"Extraordinary value to both the project and the open source community overall.","answer_id":1,"value":20},{"answer":"Significant value to the project or open source community.","answer_id":2,"value":15},{"answer":"Some value to the project or open source community.","answer_id":3,"value":10},{"answer":"Little value to the project or open source community.","answer_id":4,"value":5},{"answer":"No obvious value to project or open source community.","answer_id":5,"value":0}]}]}}"
created2018-04-20 12:00:21
last_update2018-04-20 15:05:15
depth0
children2
last_payout2018-04-27 12:00:21
cashout_time1969-12-31 23:59:59
total_payout_value39.322 HBD
curator_payout_value15.209 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15,598
author_reputation751,752,100,906
root_title"How to make your own DIY gaming console GAMEBUINO"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,111,430
net_rshares10,697,426,016,683
author_curate_reward""
vote details (42)
@chinito ·
kumusta boompanot ! :) that is cool! i like the little screen too! very retro yet modern looking.  yay!

im following u and upvoted now.
properties (22)
authorchinito
permlinkre-boompanot-how-to-make-your-own-diy-gaming-console-gamebuino-20180423t203743094z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 05:38:54
last_update2018-04-23 05:38:54
depth1
children0
last_payout2018-04-30 05:38:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation194,951,979,677,448
root_title"How to make your own DIY gaming console GAMEBUINO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,613,389
net_rshares0
@deathwing ·
Thanks for the contribution.

----------------------------------------------------------------------
Need help? Write a ticket on https://support.utopian.io.
Chat with us on [Discord](https://discord.gg/uTyJkNm).

**[[utopian-moderator]](https://utopian.io/moderators)**
properties (22)
authordeathwing
permlinkre-boompanot-how-to-make-your-own-diy-gaming-console-gamebuino-20180420t150551056z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-20 15:05:54
last_update2018-04-20 15:05:54
depth1
children0
last_payout2018-04-27 15:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation269,081,450,536,201
root_title"How to make your own DIY gaming console GAMEBUINO"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,140,578
net_rshares0