Skip to content

Commit

Permalink
Add filament runout, PLR, RGB pins
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb committed Jan 3, 2020
1 parent 96a5e64 commit 74e2a37
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Marlin/src/pins/stm32/pins_BTT_BTT002_V1_0.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,20 @@
#define Z_MIN_PROBE_PIN PD1
#endif

//
// Filament Runout Sensor
//
#ifndef FIL_RUNOUT_PIN
#define FIL_RUNOUT_PIN PA15
#endif

//
// Power Loss Detection
//
#ifndef POWER_LOSS_PIN
#define POWER_LOSS_PIN PD4
#endif

//
// Steppers
//
Expand Down Expand Up @@ -226,3 +240,19 @@
#endif

#endif // HAS_SPI_LCD

//
// RGB LEDs
//
#ifndef RGB_LED_R_PIN
#define RGB_LED_R_PIN PB5
#endif
#ifndef RGB_LED_G_PIN
#define RGB_LED_G_PIN PB4
#endif
#ifndef RGB_LED_B_PIN
#define RGB_LED_B_PIN PB3
#endif
#ifndef RGB_LED_W_PIN
#define RGB_LED_W_PIN -1
#endif

0 comments on commit 74e2a37

Please sign in to comment.