Rev 3 | Rev 9 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3 | Rev 7 | ||
|---|---|---|---|
| Line 14... | Line 14... | ||
| 14 | Written by Limor Fried/Ladyada for Adafruit Industries. |
14 | Written by Limor Fried/Ladyada for Adafruit Industries. |
| 15 | BSD license, check license.txt for more information |
15 | BSD license, check license.txt for more information |
| 16 | All text above, and the splash screen must be included in any redistribution |
16 | All text above, and the splash screen must be included in any redistribution |
| 17 | *********************************************************************/ |
17 | *********************************************************************/ |
| 18 | 18 | ||
| 19 | - | ||
| 20 | typedef uint8_t boolean; |
19 | #include "stdint.h" |
| 21 | static const boolean true = 1; |
- | |
| 22 | static const boolean false = 0; |
- | |
| 23 | 20 | ||
| 24 | #define BLACK 0 |
21 | #define BLACK 0 |
| 25 | #define WHITE 1 |
22 | #define WHITE 1 |
| 26 | #define INVERT 2 |
23 | #define INVERT 2 |
| 27 | 24 | ||