Skip to content

Instantly share code, notes, and snippets.

View massimomusante's full-sized avatar
:octocat:

Massimo Musante massimomusante

:octocat:
View GitHub Profile
@massimomusante
massimomusante / PacDemo-1.ino
Created August 14, 2012 16:59
Pacman demo on arduino and hd44780 lcd display (fragments)
// make some custom characters:
...
byte pac2Def[8] = {
0b00000,
0b01110,
0b10100,
0b11000,
0b11100,
0b01110,
0b00000,
@massimomusante
massimomusante / PacDemo.ino
Created August 14, 2012 16:55
Pacman demo on arduino and hd44780 lcd display
/* LCD custom character demo */
// include the library code:
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
// make some custom characters:
byte pac1Def[8] = {