|
@@ -0,0 +1,77 @@
|
|
1
|
+/**
|
|
2
|
+ * Marlin 3D Printer Firmware
|
|
3
|
+ * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
4
|
+ *
|
|
5
|
+ * This program is free software: you can redistribute it and/or modify
|
|
6
|
+ * it under the terms of the GNU General Public License as published by
|
|
7
|
+ * the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+ * (at your option) any later version.
|
|
9
|
+ *
|
|
10
|
+ * This program is distributed in the hope that it will be useful,
|
|
11
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+ * GNU General Public License for more details.
|
|
14
|
+ *
|
|
15
|
+ * You should have received a copy of the GNU General Public License
|
|
16
|
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
|
+ *
|
|
18
|
+ */
|
|
19
|
+
|
|
20
|
+/**
|
|
21
|
+ * Custom Status Screen bitmap
|
|
22
|
+ *
|
|
23
|
+ * Place this file in the root with your configuration files
|
|
24
|
+ * and enable CUSTOM_STATUS_SCREEN_IMAGE in Configuration.h.
|
|
25
|
+ *
|
|
26
|
+ * Use the Marlin Bitmap Converter to make your own:
|
|
27
|
+ * http://marlinfw.org/tools/u8glib/converter.html
|
|
28
|
+ */
|
|
29
|
+
|
|
30
|
+#pragma once
|
|
31
|
+
|
|
32
|
+//
|
|
33
|
+// Status Screen Logo bitmap
|
|
34
|
+//
|
|
35
|
+#define STATUS_LOGO_Y 0
|
|
36
|
+#define STATUS_LOGO_WIDTH 38
|
|
37
|
+
|
|
38
|
+static unsigned char status_logo_bmp[] PROGMEM = {
|
|
39
|
+ B11111111,B11111111,B11111111,B11111111,B11111100,
|
|
40
|
+ B10000000,B00000000,B00010000,B00000111,B11111100,
|
|
41
|
+ B10000000,B00000000,B00010000,B00000000,B11111100,
|
|
42
|
+ B10000000,B00000000,B00110000,B00000000,B01111100,
|
|
43
|
+ B10000000,B00000000,B00110000,B00000000,B00111100,
|
|
44
|
+ B10000000,B00000000,B01110000,B00000000,B00011100,
|
|
45
|
+ B11111111,B10000000,B01110000,B00000000,B00001100,
|
|
46
|
+ B11111111,B10000000,B11110000,B11100000,B00001100,
|
|
47
|
+ B11111111,B00000000,B11110000,B11111000,B00001100,
|
|
48
|
+ B11111111,B00000001,B11110000,B11111100,B00000100,
|
|
49
|
+ B11111110,B00000001,B11110000,B11010010,B00000100,
|
|
50
|
+ B11111110,B00000011,B11110000,B10101110,B00000100,
|
|
51
|
+ B11111100,B00000000,B11110000,B10101111,B00000100,
|
|
52
|
+ B11111100,B00000000,B00110000,B10000011,B00000100,
|
|
53
|
+ B11111000,B00000000,B00110000,B11111111,B00000100,
|
|
54
|
+ B11111000,B00000000,B00010000,B11111111,B00000100,
|
|
55
|
+ B11111111,B11100000,B00010000,B10111111,B00000100,
|
|
56
|
+ B11111111,B11110000,B00010000,B10101111,B00000100,
|
|
57
|
+ B11111111,B11110000,B00010000,B10101110,B00000100,
|
|
58
|
+ B11111111,B11110000,B00010000,B10000010,B00000100,
|
|
59
|
+ B10000011,B11110000,B00010000,B11111100,B00000100,
|
|
60
|
+ B10000001,B11110000,B00010000,B11111000,B00001100,
|
|
61
|
+ B10000001,B11100000,B00010000,B11100000,B00001100,
|
|
62
|
+ B10000000,B00000000,B00010000,B00000000,B00001100,
|
|
63
|
+ B10000000,B00000000,B00110000,B00000000,B00011100,
|
|
64
|
+ B11000000,B00000000,B00110000,B00000000,B00111100,
|
|
65
|
+ B11000000,B00000000,B01110000,B00000000,B01111100,
|
|
66
|
+ B11100000,B00000000,B11110000,B00000000,B11111100,
|
|
67
|
+ B11111000,B00000011,B11110000,B00000111,B11111100
|
|
68
|
+};
|
|
69
|
+
|
|
70
|
+//
|
|
71
|
+// Use default bitmaps
|
|
72
|
+//
|
|
73
|
+#define STATUS_HOTEND_ANIM
|
|
74
|
+#define STATUS_BED_ANIM
|
|
75
|
+#define STATUS_LOGO_X 0
|
|
76
|
+#define STATUS_HEATERS_X 50
|
|
77
|
+#define STATUS_BED_X 74
|