We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#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 }
There was an error while loading. Please reload this page.