Skip to content

Commit

Permalink
Spindle/Laser pins for RADDS (#16119)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjscosta authored and thinkyhead committed Dec 19, 2019
1 parent e5edbf9 commit 5f06f42
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions Marlin/src/pins/sam/pins_RADDS.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
//
// Servos
//
#define SERVO0_PIN 5
#if !HAS_CUTTER
#define SERVO0_PIN 5
#endif
#define SERVO1_PIN 6
#define SERVO2_PIN 39
#define SERVO3_PIN 40
Expand Down Expand Up @@ -184,7 +186,9 @@
#define HEATER_0_PIN 13
#define HEATER_1_PIN 12
#define HEATER_2_PIN 11
#define HEATER_BED_PIN 7 // BED
#if !HAS_CUTTER
#define HEATER_BED_PIN 7 // BED
#endif

#ifndef FAN_PIN
#define FAN_PIN 9
Expand All @@ -204,6 +208,16 @@
#define I2C_EEPROM
#define E2END 0x1FFF // 8KB

//
// M3/M4/M5 - Spindle/Laser Control
//
#if HAS_CUTTER
#if !NUM_SERVOS
#define SPINDLE_LASER_PWM_PIN 5 // SERVO0_PIN
#endif
#define SPINDLE_LASER_ENA_PIN 7 // HEATER_BED_PIN - Pullup/down!
#endif

//
// LCD / Controller
//
Expand Down

0 comments on commit 5f06f42

Please sign in to comment.