 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.  (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)  ### 2.16x2 lcd screen with I2C driver   ### 3.A push button ### 4.A resistor (of resistance between 1 and 10k ohms)  ### 5.A piezo buzzer  (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  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.  Here is how I made the code for the characters used in my code  (The dino)  (The tree) What's more interesting is that they even provide you with some sample arduino code to display it in your lcd!  ``` 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  Up and runnning!!   I tried putting it all together into a box.  All packed up!  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.
author | filler |
---|---|
permlink | google-chrome-t-rex-game-with-arduino |
category | steemmakers |
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"} |
created | 2018-07-04 17:20:15 |
last_update | 2018-07-04 17:28:42 |
depth | 0 |
children | 13 |
last_payout | 2018-07-11 17:20:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 18.210 HBD |
curator_payout_value | 5.788 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,043 |
author_reputation | 4,924,532,976,740 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,415,027 |
net_rshares | 10,467,310,047,473 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 121,681,063,133 | 1.5% | ||
boy | 0 | 63,816,358 | 100% | ||
bunny | 0 | 50,828,933 | 100% | ||
bue | 0 | 42,435,621,394 | 100% | ||
eric-boucher | 0 | 9,831,449,132 | 2.5% | ||
anwenbaumeister | 0 | 51,867,282,522 | 5% | ||
roelandp | 0 | 58,706,524,865 | 2.5% | ||
raymondspeaks | 0 | 231,671,365 | 2.5% | ||
ninjace | 0 | 4,522,266,080 | 50% | ||
charlie777pt | 0 | 601,979,710 | 0.5% | ||
lk666 | 0 | 327,297,516 | 1% | ||
deepam | 0 | 192,178,269 | 100% | ||
remlaps1 | 0 | 9,632,688,756 | 17% | ||
curie | 0 | 119,224,580,238 | 5% | ||
hendrikdegrote | 0 | 2,350,676,066,896 | 5% | ||
vact | 0 | 85,438,837,824 | 5% | ||
dashfit | 0 | 461,350,302 | 2.5% | ||
sethroot | 0 | 102,257,445 | 0.5% | ||
shaunmza | 0 | 16,649,983,823 | 90% | ||
lisa.palmer | 0 | 1,140,634,077 | 17% | ||
lenin-mccarthy | 0 | 134,646,725 | 2.5% | ||
resteemer | 0 | 163,554,383 | 2.5% | ||
pacokam8 | 0 | 348,897,423 | 2% | ||
michelios | 0 | 1,179,195,975 | 0.75% | ||
awesomianist | 0 | 494,890,741 | 1% | ||
moksamol | 0 | 634,266,920 | 2.5% | ||
getrichordie | 0 | 224,359,093 | 2.5% | ||
thatsweeneyguy | 0 | 6,051,832,848 | 50% | ||
choogirl | 0 | 12,751,457,135 | 2.7% | ||
devi1714 | 0 | 106,934,983 | 2.5% | ||
markangeltrueman | 0 | 10,779,472,251 | 8.11% | ||
tantawi | 0 | 224,843,665 | 5% | ||
locikll | 0 | 2,136,268,877 | 10% | ||
aboutyourbiz | 0 | 848,743,478 | 5% | ||
fanstaf | 0 | 375,020,851 | 3.75% | ||
paulag | 0 | 16,781,819,687 | 25% | ||
howtostartablog | 0 | 226,809,365 | 0.5% | ||
cobloc | 0 | 109,771,887 | 2.5% | ||
orcheva | 0 | 294,187,991 | 2.5% | ||
beyondthecrypto | 0 | 131,208,758 | 2.5% | ||
makrotheblack | 0 | 157,557,526 | 2.5% | ||
thinknzombie | 0 | 6,748,380,046 | 2.5% | ||
nolasco | 0 | 229,387,391 | 0.25% | ||
whiteliquor | 0 | 64,004,970 | 5% | ||
nitego | 0 | 267,553,648 | 1.5% | ||
ratticus | 0 | 1,200,941,304 | 2.5% | ||
neumannsalva | 0 | 467,522,880 | 2.5% | ||
lengalenga | 0 | 553,988,383 | 100% | ||
carlgnash | 0 | 3,639,167,554 | 10.82% | ||
horpey | 0 | 998,602,292 | 2.5% | ||
tamacvet | 0 | 82,221,378,174 | 100% | ||
techtek | 0 | 43,518,032,964 | 100% | ||
gabox | 0 | 189,594,089 | 0.25% | ||
cepul | 0 | 261,530,848 | 6.76% | ||
indy8phish | 0 | 459,393,853 | 2.5% | ||
sunravelme | 0 | 1,799,514,006 | 6.76% | ||
honeysara | 0 | 266,298,875 | 1.25% | ||
vadimlasca | 0 | 5,485,737,131 | 100% | ||
mustaphaaoufi | 0 | 286,735,590 | 2.5% | ||
plojslydia | 0 | 68,271,831 | 5% | ||
aidarojaswriter | 0 | 116,357,969 | 2.02% | ||
massivevibration | 0 | 2,642,271,198 | 5% | ||
crokkon | 0 | 27,768,183,316 | 50% | ||
jefpatat | 0 | 55,411,594,270 | 100% | ||
dillemma | 0 | 249,022,293 | 13.53% | ||
kiriatjrb | 0 | 102,984,861 | 10% | ||
coloringbook | 0 | 111,597,968 | 13.53% | ||
cooknbake | 0 | 108,688,486 | 1% | ||
clweeks | 0 | 312,767,681 | 2.5% | ||
torico | 0 | 339,280,906 | 0.25% | ||
beelzebub | 0 | 123,684,452 | 13.53% | ||
buckydurddle | 0 | 314,484,715 | 0.67% | ||
pingcess | 0 | 193,273,142 | 2.5% | ||
podanrj | 0 | 6,216,754,496 | 45% | ||
marialefleitas | 0 | 170,403,121 | 6.76% | ||
lordkingpotato | 0 | 26,139,515,978 | 100% | ||
afrikablr | 0 | 198,723,493 | 10% | ||
birgitt | 0 | 177,437,281 | 5% | ||
mayowadavid | 0 | 290,548,903 | 2.5% | ||
makerhacks | 0 | 85,575,841,334 | 50% | ||
poodai | 0 | 252,480,625 | 2.5% | ||
sayee | 0 | 30,198,132,231 | 100% | ||
belial | 0 | 137,533,307 | 13.53% | ||
emdesan | 0 | 441,354,580 | 10% | ||
happychild | 0 | 504,509,867 | 2.5% | ||
peaceandwar | 0 | 812,635,669 | 2.5% | ||
enzor | 0 | 170,974,078 | 5% | ||
joendegz | 0 | 79,196,509 | 2.5% | ||
lekosvapenglass | 0 | 121,773,927 | 40% | ||
rogeviolinista | 0 | 111,567,520 | 10% | ||
digitalpnut | 0 | 76,635,877 | 2.5% | ||
erudire | 0 | 416,554,243 | 100% | ||
demogorgon | 0 | 289,326,836 | 13.53% | ||
utopian-io | 0 | 6,878,971,444,429 | 5% | ||
janine-ariane | 0 | 480,635,404 | 5% | ||
drmake | 0 | 111,758,554,633 | 100% | ||
ajayyy | 0 | 2,880,701,265 | 100% | ||
one-person | 0 | 283,926,654 | 0.75% | ||
zuul | 0 | 182,719,890 | 13.53% | ||
xanderslee | 0 | 328,381,165 | 5% | ||
awolesigideon | 0 | 105,662,166 | 5% | ||
crescendoofpeace | 0 | 92,563,551 | 1.25% | ||
steemmakers | 0 | 35,334,279,404 | 100% | ||
trishy | 0 | 61,751,201 | 5% | ||
anikekirsten | 0 | 1,163,198,093 | 5% | ||
rasamuel | 0 | 109,386,691 | 2.5% | ||
stahlberg | 0 | 809,471,532 | 2.5% | ||
cordeta | 0 | 94,694,922 | 2.5% | ||
mangoish | 0 | 143,702,843 | 10% | ||
creatrixity | 0 | 71,102,272 | 2.5% | ||
speaklife | 0 | 64,404,114 | 5% | ||
hetty-rowan | 0 | 661,985,628 | 6.76% | ||
laritheghost | 0 | 246,563,458 | 2.5% | ||
dolphinscute | 0 | 111,820,881 | 2.5% | ||
culgin | 0 | 831,847,796 | 1.75% | ||
fidelpoet | 0 | 87,022,018 | 5% | ||
knfitaly | 0 | 7,136,185,413 | 40% | ||
soufiani | 0 | 371,026,429 | 0.1% | ||
iamfo | 0 | 125,913,615 | 2.5% | ||
mrday | 0 | 652,165,020 | 2.5% | ||
debbietiyan | 0 | 138,047,712 | 2.5% | ||
salvadorcrg | 0 | 561,832,879 | 50% | ||
randomwanderings | 0 | 467,758,523 | 13.53% | ||
jazzhero | 0 | 1,355,056,577 | 6.76% | ||
didic | 0 | 852,718,662 | 2.5% | ||
operahoser | 0 | 97,298,354 | 0.6% | ||
kaking | 0 | 275,073,068 | 50% | ||
smylie2005 | 0 | 92,090,198 | 3.38% | ||
wdoutjah | 0 | 329,627,016 | 2.5% | ||
caitycat | 0 | 98,781,109 | 2.5% | ||
ajpacheco1610 | 0 | 81,935,565 | 2.5% | ||
veryspider | 0 | 939,322,322 | 10% | ||
iamthenerd | 0 | 287,847,865 | 2.5% | ||
benleemusic | 0 | 1,559,821,819 | 0.5% | ||
jbrrd | 0 | 147,391,693 | 15% | ||
christianunger | 0 | 135,868,441 | 2.5% | ||
ivan-g | 0 | 922,675,697 | 50% | ||
chimtivers96 | 0 | 248,028,782 | 5% | ||
cyclops | 0 | 113,484,194 | 13.53% | ||
sissyjill | 0 | 100,512,897 | 7% | ||
amirdesaingrafis | 0 | 118,022,976 | 2.5% | ||
morbyjohn | 0 | 169,966,275 | 7% | ||
flash4yard | 0 | 1,772,177,722 | 100% | ||
anyes2013 | 0 | 76,163,276 | 2.5% | ||
princluv | 0 | 601,367,965 | 100% | ||
theunlimited | 0 | 67,905,648 | 10% | ||
chillingotter | 0 | 152,931,797 | 2.5% | ||
dmxmaster | 0 | 599,776,913 | 100% | ||
effofex | 0 | 7,595,445,571 | 100% | ||
haunting | 0 | 271,182,938 | 80% | ||
wirdayulahya | 0 | 214,351,656 | 50% | ||
hiddenblade | 0 | 102,453,026 | 6.76% | ||
quochuy | 0 | 1,706,476,727 | 6.76% | ||
kendallron | 0 | 134,218,814 | 6.76% | ||
realblockchain | 0 | 1,019,641,935 | 20% | ||
thingtwo | 0 | 157,531,159 | 13.53% | ||
yaqinnas | 0 | 1,484,266,969 | 98% | ||
apteacher | 0 | 126,336,050 | 1% | ||
zaxan | 0 | 193,084,387 | 10.82% | ||
thesteemmustflow | 0 | 138,694,548 | 1% | ||
qberryfarms | 0 | 121,844,415 | 2.5% | ||
vigna | 0 | 174,673,338 | 0.25% | ||
onethousandpics | 0 | 77,267,114 | 2.5% | ||
astrobot | 0 | 296,009,649 | 50% | ||
marcuz | 0 | 184,172,782 | 2.5% | ||
electricswine | 0 | 1,582,145,318 | 50% | ||
niouton | 0 | 259,661,665 | 1% | ||
jorgeddln | 0 | 75,609,689 | 6.76% | ||
syawalkoki | 0 | 84,182,785 | 25% | ||
cosmophobia | 0 | 303,637,024 | 2.5% | ||
stevecronin | 0 | 511,496,396 | 100% | ||
richardgreen | 0 | 83,052,470 | 2.5% | ||
techupdate | 0 | 139,033,097 | 2.5% | ||
electronicsworld | 0 | 6,371,310,416 | 100% | ||
fischkopp | 0 | 99,775,993 | 5% | ||
gibic | 0 | 1,900,356,962 | 100% | ||
mahmudulhassan | 0 | 138,083,461 | 2.5% | ||
steemitresources | 0 | 1,334,008,380 | 50% | ||
filler | 0 | 971,569,576 | 100% | ||
kind-sir | 0 | 64,923,167 | 2% | ||
steemrepo | 0 | 38,240,205,864 | 50% | ||
call-me-howie | 0 | 812,586,073 | 2.5% | ||
hansmast | 0 | 421,386,047 | 2.5% | ||
gatis-photo | 0 | 97,692,224 | 2% | ||
syawalimusa | 0 | 152,674,418 | 25% | ||
cutie-pie | 0 | 304,465,520 | 50% | ||
c-squared | 0 | 7,566,479,710 | 13.53% | ||
microoo | 0 | 591,136,894 | 50% | ||
ranzwocket | 0 | 18,786,080,653 | 100% |
# # upvote for me please? https://steemit.com/news/@bible.com/2sysip #
author | a-0-0 |
---|---|
permlink | re-filler-google-chrome-t-rex-game-with-arduino-20180704t172051552z |
category | steemmakers |
json_metadata | {"tags":["steemmakers"],"links":["https://steemit.com/news/@bible.com/2sysip"],"app":"steemit/0.1"} |
created | 2018-07-04 17:20:51 |
last_update | 2018-07-04 17:20:51 |
depth | 1 |
children | 0 |
last_payout | 2018-07-11 17:20:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | -4,863,186,238,920 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,415,087 |
net_rshares | 0 |
<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.
author | c-squared |
---|---|
permlink | 20180705t104758786z |
category | steemmakers |
json_metadata | {"tags":["c-squared"]} |
created | 2018-07-05 10:47:57 |
last_update | 2018-07-05 10:47:57 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 10:47:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 359 |
author_reputation | 8,872,520,093,091 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,508,198 |
net_rshares | 903,217,948 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
filler | 0 | 903,217,948 | 100% |
I love this, hope to see more of this from you>>
author | erudire |
---|---|
permlink | re-filler-google-chrome-t-rex-game-with-arduino-20180705t223831959z |
category | steemmakers |
json_metadata | {"tags":["steemmakers"],"app":"steemit/0.1"} |
created | 2018-07-05 22:38:36 |
last_update | 2018-07-05 22:38:36 |
depth | 1 |
children | 1 |
last_payout | 2018-07-12 22:38:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | -4,397,390,380,759 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,581,549 |
net_rshares | -899,777,280 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
filler | 0 | 961,805,058 | 100% | ||
plentyofphish | 0 | -1,861,582,338 | -4% |
Thanks! Glad you liked it! :D
author | filler |
---|---|
permlink | re-erudire-re-filler-google-chrome-t-rex-game-with-arduino-20180706t061012234z |
category | steemmakers |
json_metadata | {"tags":["steemmakers"],"app":"steemit/0.1"} |
created | 2018-07-06 06:10:15 |
last_update | 2018-07-06 06:10:15 |
depth | 2 |
children | 0 |
last_payout | 2018-07-13 06:10:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 4,924,532,976,740 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,616,497 |
net_rshares | 0 |
Nice and interesting poct
author | princluv |
---|---|
permlink | re-filler-google-chrome-t-rex-game-with-arduino-20180707t011431261z |
category | steemmakers |
json_metadata | {"tags":["steemmakers"],"app":"steemit/0.1"} |
created | 2018-07-07 01:14:30 |
last_update | 2018-07-07 01:14:30 |
depth | 1 |
children | 0 |
last_payout | 2018-07-14 01:14:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 722,900,354,816 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,722,156 |
net_rshares | 0 |
<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.
author | steemmakers |
---|---|
permlink | re-filler-google-chrome-t-rex-game-with-arduino-20180705t064543581z |
category | steemmakers |
json_metadata | "" |
created | 2018-07-05 06:45:39 |
last_update | 2018-07-05 06:45:39 |
depth | 1 |
children | 0 |
last_payout | 2018-07-12 06:45:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,019 |
author_reputation | 1,907,312,584,548 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,484,893 |
net_rshares | 912,982,466 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
filler | 0 | 912,982,466 | 100% |
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)
author | steemrepo |
---|---|
permlink | re-filler-google-chrome-t-rex-game-with-arduino-20180706t015003830z |
category | steemmakers |
json_metadata | {"tags":["steemrepo"],"app":"steemjs/examples"} |
created | 2018-07-06 01:50:03 |
last_update | 2018-07-06 01:50:03 |
depth | 1 |
children | 1 |
last_payout | 2018-07-13 01:50:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 348 |
author_reputation | 938,871,055,812 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,595,743 |
net_rshares | 0 |
YES
author | filler |
---|---|
permlink | re-steemrepo-re-filler-google-chrome-t-rex-game-with-arduino-20180706t060856106z |
category | steemmakers |
json_metadata | {"tags":["steemmakers"],"app":"steemit/0.1"} |
created | 2018-07-06 06:09:00 |
last_update | 2018-07-06 06:09:00 |
depth | 2 |
children | 0 |
last_payout | 2018-07-13 06:09:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3 |
author_reputation | 4,924,532,976,740 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,616,398 |
net_rshares | 28,765,377,169 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sayee | 0 | 28,765,377,169 | 100% |
Love the project! I have only done stuff with a Raspberry Pi but this looks fun!
author | stevecronin |
---|---|
permlink | re-filler-google-chrome-t-rex-game-with-arduino-20180705t210220423z |
category | steemmakers |
json_metadata | {"tags":["steemmakers"],"app":"steemit/0.1"} |
created | 2018-07-05 21:02:21 |
last_update | 2018-07-05 21:02:21 |
depth | 1 |
children | 1 |
last_payout | 2018-07-12 21:02:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 3,474,028,063,222 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,573,869 |
net_rshares | 976,451,836 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
filler | 0 | 976,451,836 | 100% |
Thanks! Share your raspberry pi projects too :D
author | filler |
---|---|
permlink | re-stevecronin-re-filler-google-chrome-t-rex-game-with-arduino-20180706t060952481z |
category | steemmakers |
json_metadata | {"tags":["steemmakers"],"app":"steemit/0.1"} |
created | 2018-07-06 06:09:54 |
last_update | 2018-07-06 06:09:54 |
depth | 2 |
children | 0 |
last_payout | 2018-07-13 06:09:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 4,924,532,976,740 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,616,461 |
net_rshares | 28,159,790,281 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sayee | 0 | 28,159,790,281 | 100% |
#### 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**
author | utopian-io |
---|---|
permlink | 20180706t001011965z |
category | steemmakers |
json_metadata | {"tags":["utopian.tip"],"app":"utopian-io"} |
created | 2018-07-06 00:10:15 |
last_update | 2018-07-06 00:10:15 |
depth | 1 |
children | 0 |
last_payout | 2018-07-13 00:10:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 422 |
author_reputation | 152,955,367,999,756 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,588,207 |
net_rshares | 0 |
Wow i love this :D So cool ! And the step by step is very instructional :D An amazing post <3 <3 <3
author | veryspider |
---|---|
permlink | re-filler-google-chrome-t-rex-game-with-arduino-20180705t111837681z |
category | steemmakers |
json_metadata | {"tags":["steemmakers"],"app":"steemit/0.1"} |
created | 2018-07-05 11:18:39 |
last_update | 2018-07-05 11:18:39 |
depth | 1 |
children | 1 |
last_payout | 2018-07-12 11:18:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 73,242,024,201,233 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,511,250 |
net_rshares | 922,746,985 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
filler | 0 | 922,746,985 | 100% |
author | filler |
---|---|
permlink | re-veryspider-re-filler-google-chrome-t-rex-game-with-arduino-20180705t121731539z |
category | steemmakers |
json_metadata | {"tags":["steemmakers"],"app":"steemit/0.1"} |
created | 2018-07-05 12:17:36 |
last_update | 2018-07-05 12:17:36 |
depth | 2 |
children | 0 |
last_payout | 2018-07-12 12:17:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 4,924,532,976,740 |
root_title | "Google Chrome T-Rex game with Arduino" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,517,650 |
net_rshares | 30,254,652,968 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sayee | 0 | 29,370,964,057 | 100% | ||
filler | 0 | 883,688,911 | 100% |