Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add BTT002 filament runout, PLR, and RGB pins #16442

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion Marlin/src/pins/stm32/pins_BTT_BTT002_V1_0.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,26 @@
#define Z_MAX_PIN PD1

//
// Z Probe must be this pins ##
// Z Probe must be this pin
//
#ifndef Z_MIN_PROBE_PIN
#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