Skip to content

SuperSolik/arduboy-games

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

arduboy-games

Tiny games for the Arduboy

Minesweeper

Minimalistic implementation, flashes red LED on lose, green LED on win

Controls:

  • UP, DOWN, RIGHT, LEFT buttons to navigate the field
  • A button to: reveal a tile if not revealed, reveal closest non-flagged neighbors (helps speed up opening the non-mined tiles)
  • B button to toggle flag on a tile (mark tile as mined)

.hex file is available in /minesweeper/binaries/, you can try it on the emulator

logo

gameplay

Dot Arduboy Edition

Arduboy adaptation of the core gameplay of the IOS game I recently found (App Store link), originally created by the https://twitter.com/OuzzGame, all credits for the game idea/concept goes to them, I've adapted the gameplay for the Arduboy merely for fun

Similar to Minesweeper, but with different "cell" layout, and instead of bombs the player should reveal the dot pattern

title screen:

  • A or B buttons to difficulty screen
  • UP and DOWN buttons simultaneously to reset the score

difficulty screen:

  • UP and DOWN buttons to choose between difficulties
  • A button to select difficulty

gameplay:

  • UP, DOWN, RIGHT, LEFT buttons to navigate
  • A button to toggle dot

When all of the dots will be opened in such a way that it satisfies the dot counts (represented as numbers), the game will show the overall score (persistently saved to EEPROM)

.hex file is available in the /guess_dots/binaries, also playable on emulator

guess dots gameplay easy & medium

guess dots gameplay hard

Dash Arduboy Edition

Sidescroller, inspired by the famous "Geometry Dash" game. The obstacle batches are continuously generated, so the gameplay is endless.

In the top left corner the first number represents the overall max score, second number represents the current score. The max score is persistent in the EEPROM.

title screen:

  • A buttons to start the game
  • UP and DOWN buttons simultaneously to reset the max score

gameplay:

  • UP or A or B button to jump
  • DOWN to pause

.hex file is available in the /ardu_dash/binaries, also playable on emulator

ardy_dash_clip_1

ardu_dash_clip_2

Rotating 3D cube demo

Classic rotating 3D cube demo, rotation is controlled by the UP, DOWN, RIGHT, LEFT buttons

rotating cube