Browse Source

Add A8, A8 Plus, A6 logos to configs (#15489)

Co-Authored-By: Leo <leo@nutz.de>
Luu Lac 5 years ago
parent
commit
e34aa1ff8f

+ 56
- 0
config/examples/Anet/A6/_Statusscreen.h View File

@@ -0,0 +1,56 @@
1
+/**
2
+ * Marlin 3D Printer Firmware
3
+ * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
+ *
5
+ * Based on Sprinter and grbl.
6
+ * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
7
+ *
8
+ * This program is free software: you can redistribute it and/or modify
9
+ * it under the terms of the GNU General Public License as published by
10
+ * the Free Software Foundation, either version 3 of the License, or
11
+ * (at your option) any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
+ * GNU General Public License for more details.
17
+ *
18
+ * You should have received a copy of the GNU General Public License
19
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+#pragma once
23
+
24
+/**
25
+ * Custom Status Screen bitmap
26
+ *
27
+ * Place this file in the root with your configuration files
28
+ * and enable CUSTOM_STATUS_SCREEN_IMAGE in Configuration.h.
29
+ *
30
+ * Use the Marlin Bitmap Converter to make your own:
31
+ * http://marlinfw.org/tools/u8glib/converter.html
32
+ */
33
+
34
+//
35
+// Status Screen Logo bitmap
36
+//
37
+#define STATUS_LOGO_Y           10
38
+#define STATUS_LOGO_WIDTH       40
39
+
40
+const unsigned char status_logo_bmp[] PROGMEM = {
41
+  B01110000,B00000000,B00001000,B00000011,B10001110,
42
+  B10001000,B00000000,B00001000,B00000100,B01010000,
43
+  B10001010,B11000111,B00111110,B00000100,B01010000,
44
+  B11111011,B00101000,B10001000,B00000111,B11001110,
45
+  B10001010,B00101111,B00001000,B00000100,B01010001,
46
+  B10001010,B00101000,B00001000,B00000100,B01010001,
47
+  B10001010,B00100111,B00000110,B00000100,B01001110
48
+};
49
+
50
+//
51
+// Use default bitmaps
52
+//
53
+#define STATUS_HOTEND_ANIM
54
+#define STATUS_BED_ANIM
55
+#define STATUS_HEATERS_X      48
56
+#define STATUS_BED_X          74

+ 56
- 0
config/examples/Anet/A8/_Statusscreen.h View File

@@ -0,0 +1,56 @@
1
+/**
2
+ * Marlin 3D Printer Firmware
3
+ * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
+ *
5
+ * Based on Sprinter and grbl.
6
+ * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
7
+ *
8
+ * This program is free software: you can redistribute it and/or modify
9
+ * it under the terms of the GNU General Public License as published by
10
+ * the Free Software Foundation, either version 3 of the License, or
11
+ * (at your option) any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
+ * GNU General Public License for more details.
17
+ *
18
+ * You should have received a copy of the GNU General Public License
19
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+#pragma once
23
+
24
+/**
25
+ * Custom Status Screen bitmap
26
+ *
27
+ * Place this file in the root with your configuration files
28
+ * and enable CUSTOM_STATUS_SCREEN_IMAGE in Configuration.h.
29
+ *
30
+ * Use the Marlin Bitmap Converter to make your own:
31
+ * http://marlinfw.org/tools/u8glib/converter.html
32
+ */
33
+
34
+//
35
+// Status Screen Logo bitmap
36
+//
37
+#define STATUS_LOGO_Y           10
38
+#define STATUS_LOGO_WIDTH       40
39
+
40
+const unsigned char status_logo_bmp[] PROGMEM = {
41
+  B01110000,B00000000,B00001000,B00000011,B10001110,
42
+  B10001000,B00000000,B00001000,B00000100,B01010001,
43
+  B10001010,B11000111,B00111110,B00000100,B01010001,
44
+  B11111011,B00101000,B10001000,B00000111,B11001110,
45
+  B10001010,B00101111,B00001000,B00000100,B01010001,
46
+  B10001010,B00101000,B00001000,B00000100,B01010001,
47
+  B10001010,B00100111,B00000110,B00000100,B01001110
48
+};
49
+
50
+//
51
+// Use default bitmaps
52
+//
53
+#define STATUS_HOTEND_ANIM
54
+#define STATUS_BED_ANIM
55
+#define STATUS_HEATERS_X      48
56
+#define STATUS_BED_X          74

+ 66
- 0
config/examples/Anet/A8plus/_Statusscreen.h View File

@@ -0,0 +1,66 @@
1
+/**
2
+ * Marlin 3D Printer Firmware
3
+ * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
+ *
5
+ * Based on Sprinter and grbl.
6
+ * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
7
+ *
8
+ * This program is free software: you can redistribute it and/or modify
9
+ * it under the terms of the GNU General Public License as published by
10
+ * the Free Software Foundation, either version 3 of the License, or
11
+ * (at your option) any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
+ * GNU General Public License for more details.
17
+ *
18
+ * You should have received a copy of the GNU General Public License
19
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+#pragma once
23
+
24
+/**
25
+ * Custom Status Screen bitmap
26
+ *
27
+ * Place this file in the root with your configuration files
28
+ * and enable CUSTOM_STATUS_SCREEN_IMAGE in Configuration.h.
29
+ *
30
+ * Use the Marlin Bitmap Converter to make your own:
31
+ * http://marlinfw.org/tools/u8glib/converter.html
32
+ */
33
+
34
+//
35
+// Status Screen Logo bitmap
36
+//
37
+#define STATUS_LOGO_Y            6
38
+#define STATUS_LOGO_WIDTH       40
39
+
40
+const unsigned char status_logo_bmp[] PROGMEM = {
41
+  B01110000,B00000000,B00001000,B00000011,B10001110,
42
+  B10001000,B00000000,B00001000,B00000100,B01010001,
43
+  B10001010,B11000111,B00111110,B00000100,B01010001,
44
+  B11111011,B00101000,B10001000,B00000111,B11001110,
45
+  B10001010,B00101111,B00001000,B00000100,B01010001,
46
+  B10001010,B00101000,B00001000,B00000100,B01010001,
47
+  B10001010,B00100111,B00000110,B00000100,B01001110,
48
+  B00000000,B00000000,B00000000,B00000000,B00000000,
49
+  B00000000,B00000000,B00000000,B00000000,B00000000,
50
+  B00000000,B00000000,B00000000,B00000000,B00000000,
51
+  B00000000,B00001110,B01000000,B00000000,B00000000,
52
+  B00000000,B00010001,B01000000,B00000000,B00000000,
53
+  B00000000,B00010001,B01010001,B00111000,B00000000,
54
+  B00000000,B00011110,B01010001,B01000000,B00000000,
55
+  B00000000,B00010000,B01010001,B00111000,B00000000,
56
+  B00000000,B00010000,B01010001,B00000100,B00000000,
57
+  B00000000,B00010000,B01001110,B00111000,B00000000
58
+};
59
+
60
+//
61
+// Use default bitmaps
62
+//
63
+#define STATUS_HOTEND_ANIM
64
+#define STATUS_BED_ANIM
65
+#define STATUS_HEATERS_X      48
66
+#define STATUS_BED_X          74

Loading…
Cancel
Save