blob: 374e40d689684c6c8e0941d3057cea6ba3550fd8 (
plain) (
blame)
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
43
44
45
46
47
48
49
|
#ifndef MOUSE_SPR_I__
#define MOUSE_SPR_I__
/* *******************************************************************
* Includes
* ******************************************************************/
#include <stdint.h>
#include <avr/pgmspace.h>
#include <Arduino.h>
/* *******************************************************************
* Defines
* ******************************************************************/
/* *******************************************************************
* Types definition
* ******************************************************************/
/* *******************************************************************
* Global variables definition
* ******************************************************************/
/* *******************************************************************
* Local variables definition
* ******************************************************************/
const uint8_t MouseSprData[] PROGMEM =
{
8,8, //width and height
B11111100,
B10000100,
B10001000,
B10000100,
B10100010,
B11010001,
B00001010,
B00000100
};
/* *******************************************************************
* Local prototypes declaration
* ******************************************************************/
/* *******************************************************************
* Functions definition
* ******************************************************************/
#endif /* MOUSE_SPR_I__ */
|