Skip to content

A small device that produce 8x8 display with a single ATmega microcontroler and a led display

Notifications You must be signed in to change notification settings

Marcussacapuces91/arduino-direct-matrix-8x8

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

arduino-direct-matrix-8x8

A small device that produce 8x8 display with a single ATmega microcontroler and a led display.

Todo

  • Add a IR led/sensor to communicate with neighbours ;
  • Add a switch to select "today's-mood".

See also

Nuts & Bolts

How to store in flash:

const unsigned char FONT_CHARS[96][5] PROGMEM =
{
	{ 0x00, 0x00, 0x00, 0x00, 0x00 },  // (space)
	{ 0x00, 0x00, 0x5F, 0x00, 0x00 },  // !
	{ 0x00, 0x07, 0x00, 0x07, 0x00 },  // "
...

How to read in flash:

byte = pgm_read_byte(&(charset[c][y]));

About

A small device that produce 8x8 display with a single ATmega microcontroler and a led display

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages