Skip to content
Darrell edited this page Nov 19, 2015 · 3 revisions

#Welcome to the GameDev wiki!#

##Documentation of the Arduboy core libraries.##

11/15/2015 - Under Construction.

###Hello World###

The obligatory example:

#include <SPI.h>
#include "Arduboy.h"

Arduboy myArduboy

void setup()
{
  myArduboy.start();
  myArduboy.setFrameRate(60);
  myArduboy.setCursor(29, 22);
  myArduboy.print("Hello World!");
  myArduboy.display();
}

void loop()
{
   // Do something here
}

Clone this wiki locally