Skip to content

Commit

Permalink
BTT SKR V2 probe and chamber pins (#21717)
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb authored Apr 27, 2021
1 parent ee016e6 commit 516fe13
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions Marlin/src/pins/stm32f4/pins_BTT_SKR_V2_0.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,15 +200,35 @@
#define TEMP_0_PIN PA2 // TH0
#define TEMP_1_PIN PA3 // TH1

#if HOTENDS == 1
#if TEMP_SENSOR_PROBE
#define TEMP_PROBE_PIN TEMP_1_PIN
#elif TEMP_SENSOR_CHAMBER
#define TEMP_CHAMBER_PIN TEMP_1_PIN
#endif
#endif

//
// Heaters / Fans
//
#define HEATER_0_PIN PB3 // Heater0
#define HEATER_1_PIN PB4 // Heater1
#define HEATER_BED_PIN PD7 // Hotbed
#define FAN_PIN PB7 // Fan0
#define FAN1_PIN PB6 // Fan1
#define FAN2_PIN PB5 // Fan2
#ifndef HEATER_0_PIN
#define HEATER_0_PIN PB3 // Heater0
#endif
#ifndef HEATER_1_PIN
#define HEATER_1_PIN PB4 // Heater1
#endif
#ifndef HEATER_BED_PIN
#define HEATER_BED_PIN PD7 // Hotbed
#endif
#ifndef FAN_PIN
#define FAN_PIN PB7 // Fan0
#endif
#ifndef FAN1_PIN
#define FAN1_PIN PB6 // Fan1
#endif
#ifndef FAN2_PIN
#define FAN2_PIN PB5 // Fan2
#endif

//
// Software SPI pins for TMC2130 stepper drivers
Expand Down

0 comments on commit 516fe13

Please sign in to comment.