blob: 2660bf19f1369ef84542398b2d8c995b70b66365 (
plain)
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
|
/**
* dogs.h - Interface for drawing to the EADOGS102N-6 display.
* Copyright (C) 2020 Clyne Sullivan
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* See the GNU General Public License for more details.
*/
#ifndef DOGS_H_
#define DOGS_H_
#define DISP_WIDTH 102
#define DISP_HEIGHT 64
extern unsigned char dogs_buffer[DISP_WIDTH * DISP_HEIGHT / 8];
void dogs_init();
void dogs_clear();
void dogs_flush();
#endif // DOGS_H_
|