create account

Google Chrome T-Rex game with Arduino by filler

View this thread on: hive.blogpeakd.comecency.com
· @filler · (edited)
$24.00
Google Chrome T-Rex game with Arduino
![P_20180704_192734.jpg](https://cdn.steemitimages.com/DQmZH8eFuUypEyxQ4NPGkfrr2nfsSsZkeq58RwYkmRrNq9c/P_20180704_192734.jpg)

We all have seen the simple game in Googleโ€™s Chrome browser that we can access only when there is no internet connection. A fun and simple way to pass time while waiting for the connection to return. The dino character is not only cute but also represents a pre-historic period without internet.

![trex.png](https://cdn.steemitimages.com/DQmUrxx3LJECwfSZSedb76fF4WvPLA4jSXnQk62KHv5cANj/trex.png)
(The game from Google Chrome) 

Today, Iโ€™ll write about how I tried to recreate the game in the Arduino platform. This is a fairly simple project and can be finished in an afternoonโ€™s time. 



## Components needed

### 1.Arduino UNO (Or any other board)
![Capturearduino.PNG](https://cdn.steemitimages.com/DQmcH3hxcFVJKfcyv9bDipWXP8SvdhkreMriHho3cK2MK3v/Capturearduino.PNG)

### 2.16x2 lcd screen with I2C driver

![P_20180704_193325.jpg](https://cdn.steemitimages.com/DQmQEU9Ggn2eoYXG2JL5j1Nr8sHGAM6CjmG57gKJ88qo14x/P_20180704_193325.jpg)

![P_20180704_193336.jpg](https://cdn.steemitimages.com/DQmYpdrgV5V7aUppP63fKKXpXvTMTDdmCccYzYi2QYB7x6g/P_20180704_193336.jpg)

### 3.A push button



### 4.A resistor (of resistance between 1 and 10k ohms)
![P_20180704_193428.jpg](https://cdn.steemitimages.com/DQmUg4W5jCYAQdkPkK6Wvyb7kW1maLy6iFmSsYeEkLPwp3V/P_20180704_193428.jpg)

### 5.A piezo buzzer

![P_20180704_193411.jpg](https://cdn.steemitimages.com/DQmbPcrg8nkxYoewvgqbgZfydxiWXXPob2j8xMunJehmtgg/P_20180704_193411.jpg)

(Mine's an old one, which I had used for another project from college.)

### 6.Jumper Wires

### 7.Breadboard

### 8.A Battery


### 9.An enclosure of any sort


## Wiring up the components

![circuit.png](https://cdn.steemitimages.com/DQmQpPYSsN639dwqWyMt2LpjRWP7UAAkdn3XVeQkfm3MTeu/circuit.png)

As we have used an lcd screen with an I2C driver, all we need to do is to connect the SDA and SCL pins of the lcd to the respective SDA and SCL ports of your suitable Arduino board.

I connected a pushbutton and connected one of its ends to the positive rail and the other end was connected to a digital pin in the Arduino board. This pin was also pulled down to ground by a resistor. The resistance value can be anything from 1ohm to 10k ohms. This is to pull down the button while it is not pushed.

Next, connect the piezo buzzerโ€™s ground to the ground rail and the positive pin to any of the digital pins of the Arduino. 

## Code

```
#include<Wire.h>
#include<LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0X3F, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); 

boolean dinoOnGround = true;  
 //declare a boolean to check if the dino is in the ground

int buttonPin = 8;
int buzzerPin = 9;

int buttonState = 0; 
 // a token variable to check the state of the button

int highScore = 0; 

boolean playState = false;
 //the game starts only when this becomes true
 // This is a common method used in coding games

int dist = 0;   
int distTwo = 0;
 // variables to set the distance between the trees

int score = 0;

/*   An array of byte type is used to display
      bitmaps in an LCD Display.
      Here, the display is 5x8, the size of one 
      'unit' in our lcd
      The places where it is a 1 will light up and 
      the places with a 0 will be off
       You can create this array easily with a site 
       that I'll explain below
*/


//bitmap array for the dino character
byte dino [8]        
{ B00000,
  B00111,
  B00101,
  B10111,
  B11100,
  B11111,
  B01101,
  B01100,
};

//character for the tree
byte tree [8]      
{
  B00011,
  B11011,
  B11011,
  B11011,
  B11011,
  B11111,
  B01110,
  B01110
};



void setup() {
  
 lcd.begin(16,2);
 lcd.createChar(7, dino);
 lcd.createChar(6,tree);
 lcd.setCursor(0,1);
 lcd.write(7);
 pinMode(buttonPin,INPUT);
 pinMode(buzzerPin,OUTPUT);

}

void loop() {
 
 lcd.clear();

// at the start, check is playState is true or false
if(!playState){  
  lcd.setCursor(0,0);                
 lcd.print("Press to start"); 
//When it is false, print the starting instruction

 if(digitalRead(buttonPin)==HIGH) //Read the button
 {
  playState = true; 
// when button pushed, make playState true
 }

}
  
// when playState is true, call the startGame function
 if(playState)
 {
  startGame();
 }

 delay(100); 
}         
// the loop function ends here


// when playState is true, startGame function is called

void startGame(){  

lcd.clear();

  dist = random(4,9);  
 distTwo = random(4,9);
//Generate two random distances for the gap between the trees

// this for loop is to make the trees move
  for(int i=16; i>=-(dist+distTwo); i--){ 

   lcd.setCursor(13,0);
 lcd.print(score);  // print the score

  int state = digitalRead(buttonPin);  
// Read the push button


 if(state == HIGH) 
 {
  buttonState = 1;
  tone(buzzerPin,700,100);
  
 
 }
 else if(state == LOW)
 {
   buttonState = 0;
 }

//when the button is pushed, print the dino on the upper 

 if(buttonState == 1){  
  lcd.setCursor(1,0); // row and set dinoOnGround to false
  lcd.write(7);
  lcd.setCursor(1,1);
  lcd.print(" ");
  dinoOnGround = false;
  
  
 }
 else{                          // When the button is not pushed 
  lcd.setCursor(1,1);     // print the dino on the lower row 
  lcd.write(7);               // and set dinoOnGround to true
  lcd.setCursor(1,0);
  lcd.print(" ");
  dinoOnGround = true;
 }


// This prints the trees so that it moves with the for loop
 lcd.setCursor(i,1); 
  lcd.write(6);
  lcd.setCursor(i+1,1);
  lcd.print(" ");

  lcd.setCursor(i+dist,1);
  lcd.write(6);
  lcd.setCursor(i+dist+1,1);
  lcd.print(" ");

   lcd.setCursor(i+dist+distTwo,1);
  lcd.write(6);
  lcd.setCursor(i+dist+distTwo+1,1);
  lcd.print(" ");

 //When the trees reaches the starting point
  if((i+dist+distTwo)==-1){
    i=12;                    
  } // they are taken to the end and set up randomly once more

/*  Now check if the position of the trees 
      and that of the dino coincides, but we
      only need to do this if the dino is in the ground.
    
     Use the dinoOnGround variable and check if the
     condition is satisfied. If so the game is over
*/



  if(i==1 && (dinoOnGround == true))
  {
    lcd.clear();             // instructions for the game over screen
    lcd.print("YOU LOSE SUCKAA");
    if(score>highScore){
      highScore = score;
      
    }
    lcd.setCursor(0,1);
      lcd.print("HIGH : ");
      lcd.print(highScore);
    playState = false;  //Set the playState as false so it goes to the 
    delay(5000);         // start screen after the game is over
    score = 0;
    break;
  }
  else if(i+dist == 1 && (dinoOnGround == true))
  {
    lcd.clear();
    lcd.print("YOU LOSE SUCKAA");
    if(score>highScore){
      highScore = score;
    }
    lcd.setCursor(0,1);
      lcd.print("HIGH : ");
      lcd.print(highScore);
    playState = false;
    delay(5000);
    score = 0;
    break;
  }
  else if(i+dist+distTwo == 1 && (dinoOnGround == true))
  {
    lcd.clear();
    lcd.print("YOU LOSE SUCKAA");
    if(score>highScore){
      highScore = score;
     
    } 
    lcd.setCursor(0,1);
      lcd.print("HIGH : ");
      lcd.print(highScore);
    playState = false;
    delay(5000);
    score = 0;
    break;
  }

score++;  
// increase the score variable for every run of the loop
  
  delay(500);
  
 }

}

```


## Explanation of the code

Explanations for various parts of the code


```
byte dino [8]        //bitmap array for the dino character
{ B00000,
  B00111,
  B00101,
  B10111,
  B11100,
  B11111,
  B01101,
  B01100,
};
```
This is used to define the shape of the character. You can either write it up in paper or use the handy dandy link that I'll provide here to generate the code.

You can go to  https://omerk.github.io/lcdchargen/ for easily generating the bitmap code for any shape you want.

The cells you click will be black. They will light up in the lcd screen.

![bitmapSite.png](https://cdn.steemitimages.com/DQmUzbAqb94tuqB6witRLonZkQCMx7N4LSHwj1uQuT9ftub/bitmapSite.png)

Here is how I made the code for the characters used in my code 
![dinosnip.png](https://cdn.steemitimages.com/DQmaEcVUU65i1Vjw1j6DUm5WnTYmW2TA7ZNGtyaKhKZB1BY/dinosnip.png)
(The dino)
![siteSnip2.png](https://cdn.steemitimages.com/DQmS22bUgNZt9XKN9ogyhPgTMsZYxKmgN7YwdHyCh5sy6ia/siteSnip2.png)
(The tree)

What's more interesting is that they even provide you with some sample arduino code to display it in your lcd!
![sitesnip24.png](https://cdn.steemitimages.com/DQmZ331BVxnckx7QPG97fNApsvycpgvt7MfpX6nLKQjVikX/sitesnip24.png)

```
lcd.createChar(7,dino);

lcd.write(7);
```

These commands are for creating the array which you wrote as a character and for further displaying it in the lcd screen. 

```
 if(score>highScore){
      highScore = score;
 } 
    lcd.setCursor(0,1);
    lcd.print("HIGH : ");
    lcd.print(highScore);
    playState = false;
```

This is after the game is over (Dino coinciding with the tree) and it checks if the score attained is greater than the high score and set the high score. It also sets the playState to false so that it goes back to the start screen

### Conclusion

![P_20180704_183332.jpg](https://cdn.steemitimages.com/DQmaCSdFiHk2oeDKmghHHTuWASogwh3hskkz22pnQjB4Xfz/P_20180704_183332.jpg)

Up and runnning!!

![P_20180704_183357.jpg](https://cdn.steemitimages.com/DQmcy1DXC5nQZ8mWrmKnYX51WFMYnAUW5PmEPfZ6ASArP95/P_20180704_183357.jpg)

![P_20180704_183420.jpg](https://cdn.steemitimages.com/DQmT5kktXGEb4DBQr5sybqiiqqD7aLYXxLTjUmyTPFdnzEW/P_20180704_183420.jpg)

I tried putting it all together into a box.

![P_20180704_192100.jpg](https://cdn.steemitimages.com/DQmNbhkr8GfmRdA6PUrv5aSUkJU1TBhmvGPiTjYpDteMjdu/P_20180704_192100.jpg)

All packed up!

![P_20180704_192400.jpg](https://cdn.steemitimages.com/DQmUAT9YRHcPYJpyVenK6qmFpb8EZLxEwFmpPfEMmu4gjcN/P_20180704_192400.jpg)

It was a really fun project and I was able to complete it in around half a day.

### Sources
 All the code and the pictures are my own creation. The screenshots of the web pages were taken by me.
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 125 others
properties (23)
authorfiller
permlinkgoogle-chrome-t-rex-game-with-arduino
categorysteemmakers
json_metadata{"tags":["steemmakers","arduino","diy","gaming","programming"],"image":["https://cdn.steemitimages.com/DQmZH8eFuUypEyxQ4NPGkfrr2nfsSsZkeq58RwYkmRrNq9c/P_20180704_192734.jpg","https://cdn.steemitimages.com/DQmUrxx3LJECwfSZSedb76fF4WvPLA4jSXnQk62KHv5cANj/trex.png","https://cdn.steemitimages.com/DQmcH3hxcFVJKfcyv9bDipWXP8SvdhkreMriHho3cK2MK3v/Capturearduino.PNG","https://cdn.steemitimages.com/DQmQEU9Ggn2eoYXG2JL5j1Nr8sHGAM6CjmG57gKJ88qo14x/P_20180704_193325.jpg","https://cdn.steemitimages.com/DQmYpdrgV5V7aUppP63fKKXpXvTMTDdmCccYzYi2QYB7x6g/P_20180704_193336.jpg","https://cdn.steemitimages.com/DQmUg4W5jCYAQdkPkK6Wvyb7kW1maLy6iFmSsYeEkLPwp3V/P_20180704_193428.jpg","https://cdn.steemitimages.com/DQmbPcrg8nkxYoewvgqbgZfydxiWXXPob2j8xMunJehmtgg/P_20180704_193411.jpg","https://cdn.steemitimages.com/DQmQpPYSsN639dwqWyMt2LpjRWP7UAAkdn3XVeQkfm3MTeu/circuit.png","https://cdn.steemitimages.com/DQmUzbAqb94tuqB6witRLonZkQCMx7N4LSHwj1uQuT9ftub/bitmapSite.png","https://cdn.steemitimages.com/DQmaEcVUU65i1Vjw1j6DUm5WnTYmW2TA7ZNGtyaKhKZB1BY/dinosnip.png","https://cdn.steemitimages.com/DQmS22bUgNZt9XKN9ogyhPgTMsZYxKmgN7YwdHyCh5sy6ia/siteSnip2.png","https://cdn.steemitimages.com/DQmZ331BVxnckx7QPG97fNApsvycpgvt7MfpX6nLKQjVikX/sitesnip24.png","https://cdn.steemitimages.com/DQmaCSdFiHk2oeDKmghHHTuWASogwh3hskkz22pnQjB4Xfz/P_20180704_183332.jpg","https://cdn.steemitimages.com/DQmcy1DXC5nQZ8mWrmKnYX51WFMYnAUW5PmEPfZ6ASArP95/P_20180704_183357.jpg","https://cdn.steemitimages.com/DQmT5kktXGEb4DBQr5sybqiiqqD7aLYXxLTjUmyTPFdnzEW/P_20180704_183420.jpg","https://cdn.steemitimages.com/DQmNbhkr8GfmRdA6PUrv5aSUkJU1TBhmvGPiTjYpDteMjdu/P_20180704_192100.jpg","https://cdn.steemitimages.com/DQmUAT9YRHcPYJpyVenK6qmFpb8EZLxEwFmpPfEMmu4gjcN/P_20180704_192400.jpg"],"links":["https://omerk.github.io/lcdchargen/"],"app":"steemit/0.1","format":"markdown"}
created2018-07-04 17:20:15
last_update2018-07-04 17:28:42
depth0
children13
last_payout2018-07-11 17:20:15
cashout_time1969-12-31 23:59:59
total_payout_value18.210 HBD
curator_payout_value5.788 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,043
author_reputation4,924,532,976,740
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,415,027
net_rshares10,467,310,047,473
author_curate_reward""
vote details (189)
@a-0-0 ·
#
# upvote for me please? https://steemit.com/news/@bible.com/2sysip
#
properties (22)
authora-0-0
permlinkre-filler-google-chrome-t-rex-game-with-arduino-20180704t172051552z
categorysteemmakers
json_metadata{"tags":["steemmakers"],"links":["https://steemit.com/news/@bible.com/2sysip"],"app":"steemit/0.1"}
created2018-07-04 17:20:51
last_update2018-07-04 17:20:51
depth1
children0
last_payout2018-07-11 17:20:51
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_length70
author_reputation-4,863,186,238,920
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,415,087
net_rshares0
@c-squared ·
c-squared-comment
<div class="pull-left">https://cdn.steemitimages.com/DQmaSUWYsJ3AMUEMRqCSaoKJVNvtsbKm4fNAtmTidr8Uggc/C%20Squared%20Logo%20Transparency%20200px.png</div><br>This post was shared in the <a href="https://discord.gg/B8JFmJ4">Curation Collective Discord community</a> for curators, and upvoted and resteemed by the @c-squared community account after manual review.
๐Ÿ‘  
properties (23)
authorc-squared
permlink20180705t104758786z
categorysteemmakers
json_metadata{"tags":["c-squared"]}
created2018-07-05 10:47:57
last_update2018-07-05 10:47:57
depth1
children0
last_payout2018-07-12 10:47:57
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_length359
author_reputation8,872,520,093,091
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,508,198
net_rshares903,217,948
author_curate_reward""
vote details (1)
@erudire ·
I love this, hope to see more of this from you>>
๐Ÿ‘  
๐Ÿ‘Ž  
properties (23)
authorerudire
permlinkre-filler-google-chrome-t-rex-game-with-arduino-20180705t223831959z
categorysteemmakers
json_metadata{"tags":["steemmakers"],"app":"steemit/0.1"}
created2018-07-05 22:38:36
last_update2018-07-05 22:38:36
depth1
children1
last_payout2018-07-12 22:38:36
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_length48
author_reputation-4,397,390,380,759
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,581,549
net_rshares-899,777,280
author_curate_reward""
vote details (2)
@filler ·
Thanks! Glad you liked it! :D
properties (22)
authorfiller
permlinkre-erudire-re-filler-google-chrome-t-rex-game-with-arduino-20180706t061012234z
categorysteemmakers
json_metadata{"tags":["steemmakers"],"app":"steemit/0.1"}
created2018-07-06 06:10:15
last_update2018-07-06 06:10:15
depth2
children0
last_payout2018-07-13 06:10:15
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_length29
author_reputation4,924,532,976,740
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,616,497
net_rshares0
@princluv ·
Nice and interesting poct
properties (22)
authorprincluv
permlinkre-filler-google-chrome-t-rex-game-with-arduino-20180707t011431261z
categorysteemmakers
json_metadata{"tags":["steemmakers"],"app":"steemit/0.1"}
created2018-07-07 01:14:30
last_update2018-07-07 01:14:30
depth1
children0
last_payout2018-07-14 01:14:30
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_length25
author_reputation722,900,354,816
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,722,156
net_rshares0
@steemmakers ·
<div class='pull-right'><center><a href='http://www.steemmakers.com'><img src='https://www.steemmakers.com/img/comment_logo_makers.png' /></a></center></div><b>Congratulations</b> This post has been upvoted by SteemMakers. We are a community-based project that aims to support makers and DIYers on the blockchain in every way possible. <br/><br/>Join our <a href='https://discord.gg/EFGbRuW'>Discord Channel</a> to connect with us and nominate your own or somebody else's posts in our review channel.<br/><br/><b>Help us to reward you for making it !</b> Join <a href='https://www.steemmakers.com/#/Trail'>our voting trail</a> or <a href='https://www.steemmakers.com/#/Delegation'>delegate steem power</a> to the community account. <br/><br/>Your post is also presented on the community website <a href='http://www.steemmakers.com'>www.steemmakers.com</a> where you can find other selected content. <br/><br/>If you like our work, please consider upvoting this comment to support the growth of our community. Thank you.
๐Ÿ‘  
properties (23)
authorsteemmakers
permlinkre-filler-google-chrome-t-rex-game-with-arduino-20180705t064543581z
categorysteemmakers
json_metadata""
created2018-07-05 06:45:39
last_update2018-07-05 06:45:39
depth1
children0
last_payout2018-07-12 06:45:39
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_length1,019
author_reputation1,907,312,584,548
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,484,893
net_rshares912,982,466
author_curate_reward""
vote details (1)
@steemrepo ·
Congratulations! this post got an upvote by **@steemrepo** and was manually picked by the curator ***@veryspider*** to be added on STEEM REPOSITORY, simply comment **"YES"** and we upload it on STEEM REPO [Website](http://www.steemrepo.info/steemrepo).<br> Want to know more about the Steem Repo project? Contact us on [Discord](discord.gg/cX3KvsY)
properties (22)
authorsteemrepo
permlinkre-filler-google-chrome-t-rex-game-with-arduino-20180706t015003830z
categorysteemmakers
json_metadata{"tags":["steemrepo"],"app":"steemjs/examples"}
created2018-07-06 01:50:03
last_update2018-07-06 01:50:03
depth1
children1
last_payout2018-07-13 01:50:03
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_length348
author_reputation938,871,055,812
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,595,743
net_rshares0
@filler ·
$0.06
YES
๐Ÿ‘  
properties (23)
authorfiller
permlinkre-steemrepo-re-filler-google-chrome-t-rex-game-with-arduino-20180706t060856106z
categorysteemmakers
json_metadata{"tags":["steemmakers"],"app":"steemit/0.1"}
created2018-07-06 06:09:00
last_update2018-07-06 06:09:00
depth2
children0
last_payout2018-07-13 06:09:00
cashout_time1969-12-31 23:59:59
total_payout_value0.043 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation4,924,532,976,740
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,616,398
net_rshares28,765,377,169
author_curate_reward""
vote details (1)
@stevecronin ·
Love the project! I have only done stuff with a Raspberry Pi but this looks fun!
๐Ÿ‘  
properties (23)
authorstevecronin
permlinkre-filler-google-chrome-t-rex-game-with-arduino-20180705t210220423z
categorysteemmakers
json_metadata{"tags":["steemmakers"],"app":"steemit/0.1"}
created2018-07-05 21:02:21
last_update2018-07-05 21:02:21
depth1
children1
last_payout2018-07-12 21:02:21
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_length80
author_reputation3,474,028,063,222
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,573,869
net_rshares976,451,836
author_curate_reward""
vote details (1)
@filler ·
$0.05
Thanks! Share your raspberry pi projects too :D
๐Ÿ‘  
properties (23)
authorfiller
permlinkre-stevecronin-re-filler-google-chrome-t-rex-game-with-arduino-20180706t060952481z
categorysteemmakers
json_metadata{"tags":["steemmakers"],"app":"steemit/0.1"}
created2018-07-06 06:09:54
last_update2018-07-06 06:09:54
depth2
children0
last_payout2018-07-13 06:09:54
cashout_time1969-12-31 23:59:59
total_payout_value0.041 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation4,924,532,976,740
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,616,461
net_rshares28,159,790,281
author_curate_reward""
vote details (1)
@utopian-io ·
#### Hi @filler!

Your post was upvoted by utopian.io in cooperation with steemmakers - supporting knowledge, innovation and technological advancement on the Steem Blockchain.

#### Contribute to Open Source with utopian.io
Learn how to contribute on <a href="https://join.utopian.io">our website</a> and join the new open source economy.

**Want to chat? Join the Utopian Community on Discord https://discord.gg/h52nFrV**
properties (22)
authorutopian-io
permlink20180706t001011965z
categorysteemmakers
json_metadata{"tags":["utopian.tip"],"app":"utopian-io"}
created2018-07-06 00:10:15
last_update2018-07-06 00:10:15
depth1
children0
last_payout2018-07-13 00:10:15
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_length422
author_reputation152,955,367,999,756
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,588,207
net_rshares0
@veryspider ·
Wow i love this :D So cool ! And the step by step is very instructional :D An amazing post <3 <3 <3
๐Ÿ‘  
properties (23)
authorveryspider
permlinkre-filler-google-chrome-t-rex-game-with-arduino-20180705t111837681z
categorysteemmakers
json_metadata{"tags":["steemmakers"],"app":"steemit/0.1"}
created2018-07-05 11:18:39
last_update2018-07-05 11:18:39
depth1
children1
last_payout2018-07-12 11:18:39
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_length99
author_reputation73,242,024,201,233
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,511,250
net_rshares922,746,985
author_curate_reward""
vote details (1)
@filler ·
$0.06
Thanks! I'm glad you liked it!
๐Ÿ‘  ,
properties (23)
authorfiller
permlinkre-veryspider-re-filler-google-chrome-t-rex-game-with-arduino-20180705t121731539z
categorysteemmakers
json_metadata{"tags":["steemmakers"],"app":"steemit/0.1"}
created2018-07-05 12:17:36
last_update2018-07-05 12:17:36
depth2
children0
last_payout2018-07-12 12:17:36
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation4,924,532,976,740
root_title"Google Chrome T-Rex game with Arduino"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,517,650
net_rshares30,254,652,968
author_curate_reward""
vote details (2)