NetBurner 3.5.6
PDF Version
_bmp_truck.h
1/******************************************************************************
2font5x7.h
3Definition for small font
4
5This file was imported from the MicroView library, written by GeekAmmo
6(https://github.com/geekammo/MicroView-Arduino-Library), and released under
7the terms of the GNU General Public License as published by the Free Software
8Foundation, either version 3 of the License, or (at your option) any later
9version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19Modified by:
20Emil Varughese @ Edwin Robotics Pvt. Ltd.
21July 27, 2015
22https://github.com/emil01/SparkFun_Micro_OLED_Arduino_Library/
23
24******************************************************************************/
25#pragma once
26
27/*
28#if defined(ARDUINO_ARCH_MBED)
29 // ARDUINO_ARCH_MBED (APOLLO3 v2) does not support or require pgmspace.h / PROGMEM
30 static const uint8_t bmp_truck[] = {
31#elif defined(__AVR__) || defined(__arm__) || defined(__ARDUINO_ARC__)
32 #include <avr/pgmspace.h>
33 static const uint8_t bmp_truck[] PROGMEM = {
34#else
35 #include <pgmspace.h>
36 static const uint8_t bmp_truck[] PROGMEM = {
37#endif
38*/
39
40#define BMP_TRUCK_WIDTH 19
41#define BMP_TRUCK_HEIGHT 16
42
43static const uint8_t bmp_truck_data[] = {
44 0xFF,
45 0x01,
46 0xC1,
47 0x41,
48 0x41,
49 0x41,
50 0x71,
51 0x11,
52 0x11,
53 0x11,
54 0x11,
55 0x11,
56 0x71,
57 0x41,
58 0x41,
59 0xC1,
60 0x81,
61 0x01,
62 0xFF,
63 0xFF,
64 0x80,
65 0x83,
66 0x82,
67 0x86,
68 0x8F,
69 0x8F,
70 0x86,
71 0x82,
72 0x82,
73 0x82,
74 0x86,
75 0x8F,
76 0x8F,
77 0x86,
78 0x83,
79 0x81,
80 0x80,
81 0xFF,
82};