summaryrefslogtreecommitdiff
path: root/src/static_patterns.h
blob: f590f603159dab79eba28c57781ba207e42e6361 (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
26
27
28
29
30
31
32
33
34
#ifndef STATIC_PATTERNS_H_
#define STATIC_PATTERNS_H_

#include <avr/pgmspace.h>

const uint8_t PROGMEM shutdownPattern[] = {
	0x20, 0x40,
	0x01, 0x0f,
	0xff, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0xff,
	0x7e, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x7e,
	0x3c, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x3c,
	0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18,
	0x00, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x00,
	0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};

const uint8_t PROGMEM flashingPattern[] = {
	0x20, 0x10,
	0x06, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x07, 0x33, 0x55, 0x98, 0x00, 0x00
};

const uint8_t PROGMEM emptyPattern[] = {
	0x10, 0x1a,
	0x20, 0x00,
	' ',   1, ' ', 'O', 'h', 'a', 'i', ' ', '-' ,' ',
	'S', 't', 'o', 'r', 'a', 'g', 'e', ' ', 'i', 's',
	' ', 'e', 'm', 'p', 't', 'y'
};

#endif /* STATIC_PATTERNS_H_ */