-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitmaps.h
24 lines (21 loc) · 824 Bytes
/
bitmaps.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
* Copyright (c) 2015 Andrew Low.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Andrew Low - initial implementation
*******************************************************************************/
#include <avr/pgmspace.h>
#ifndef BITMAPS_H
#define BITMAPS_H
extern const unsigned char title[];
extern const unsigned char bat1[];
extern const unsigned char bat2[];
extern const unsigned char owl1[];
extern const unsigned char owl2[];
extern const unsigned char bug1[];
extern const unsigned char bug2[];
#endif