-
Notifications
You must be signed in to change notification settings - Fork 27
/
Charliplexing.h
42 lines (35 loc) · 1.17 KB
/
Charliplexing.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
Charliplexing.h - Library for controlling the charliplexed led board
from JimmiePRodgers.com
Created by Alex Wenger, December 30, 2009.
Modified by Matt Mets, May 28, 2010.
Released into the public domain.
*/
#ifndef Charliplexing_h
#define Charliplexing_h
#include <inttypes.h>
#define SINGLE_BUFFER 0
#define DOUBLE_BUFFER 1 // comment out to save memory
#define GRAYSCALE 2 // comment out to save memory
#define FRAMERATE 80UL // Desired number of frames per second
#define DISPLAY_COLS 14 // Number of columns in the display
#define DISPLAY_ROWS 9 // Number of rows in the display
#ifdef GRAYSCALE
#define SHADES 8 // Number of distinct shades to display, including black, i.e. OFF
#else
#define SHADES 2
#endif
namespace LedSign
{
extern void Init(uint8_t mode = SINGLE_BUFFER);
extern void Set(uint8_t x, uint8_t y, uint8_t c = 1);
extern void SetBrightness(uint8_t brightness);
#ifdef DOUBLE_BUFFER
extern void Flip(bool blocking = false);
#endif
extern void Clear(uint8_t c = 0);
extern void Horizontal(uint8_t y, uint8_t c = 0);
extern void Vertical(uint8_t x, uint8_t c = 0);
extern uint8_t DisplayMode();
};
#endif