summaryrefslogtreecommitdiffstats
path: root/LoLShield/Charliplexing.h
blob: 2e1dbf39b6537234cb2931b98f12b11b618910b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
  Charliplexing.h - Library for controlling the charliplexed led board
  from JimmiePRodgers.com
  Created by Alex Wenger, December 30, 2009.
  Released into the public domain.
*/

#ifndef Charliplexing_h
#define Charliplexing_h

#include <inttypes.h>

namespace LedSign
{
    extern void Init(void);
    extern void Set(uint8_t x, uint8_t y, uint8_t c);
	extern volatile unsigned int tcnt2;
};

#endif