Prusa MINI Firmware overview
pins_SELENA_COMPACT.h
Go to the documentation of this file.
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  * Selena Compact pin assignments
26  */
27 
28 #ifndef TARGET_LPC1768
29  #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
30 #endif
31 
32 #define BOARD_INFO_NAME "Selena Compact"
33 #define BOARD_WEBSITE_URL "github.com/Ales2-k/Selena"
34 
35 //
36 // Servos
37 //
38 #define SERVO0_PIN P1_23
39 
40 //
41 // Limit Switches
42 //
43 #define X_MIN_PIN P1_28
44 #define X_MAX_PIN P1_25
45 #define Y_MIN_PIN P2_11
46 #define Y_MAX_PIN -1
47 #define Z_MIN_PIN P1_27
48 #define Z_MAX_PIN -1
49 #define Z_PROBE P1_22
50 
51 //
52 // Steppers
53 //
54 #define X_STEP_PIN P2_00
55 #define X_DIR_PIN P0_05
56 #define X_ENABLE_PIN P0_04
57 
58 #define Y_STEP_PIN P2_01
59 #define Y_DIR_PIN P0_11
60 #define Y_ENABLE_PIN P0_10
61 
62 #define Z_STEP_PIN P2_02
63 #define Z_DIR_PIN P0_20
64 #define Z_ENABLE_PIN P0_19
65 
66 #define E0_STEP_PIN P2_03
67 #define E0_DIR_PIN P0_22
68 #define E0_ENABLE_PIN P0_21
69 
70 #define E1_STEP_PIN P2_08
71 #define E1_DIR_PIN P2_13
72 #define E1_ENABLE_PIN P4_29
73 
74 //
75 // Temperature Sensors
76 // 3.3V max when defined as an analog input
77 //
78 #define TEMP_BED_PIN 0 // A0 (TH1)
79 #define TEMP_0_PIN 1 // A1 (TH2)
80 #define TEMP_1_PIN 2 // A2 (TH3)
81 
82 
83 //
84 // Heaters / Fans
85 //
86 
87 #define HEATER_BED_PIN P2_05
88 #define HEATER_BED2_PIN P2_04
89 #define HEATER_0_PIN P2_07
90 #define HEATER_1_PIN P2_06
91 #ifndef FAN_PIN
92  #define FAN_PIN P1_24
93 #endif
94 #define FAN1_PIN P1_26
95 
96 //
97 // Display
98 //
99 
100 #if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
101  #define LCD_PINS_RS P0_16
102  #define LCD_PINS_ENABLE P0_18
103  #define LCD_PINS_D4 P0_15
104  #define LCD_PINS_D5 P1_00
105  #define LCD_PINS_D6 P1_01
106  #define LCD_PINS_D7 P1_04
107  #define BEEPER_PIN P1_31
108 
109  #define BTN_EN1 P3_25
110  #define BTN_EN2 P3_26
111  #define BTN_ENC P1_30
112 
113  #define SD_DETECT_PIN -1
114 #endif // REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER