Eryone Thinker V2 (#21190)
Co-Authored-By: Bryan Joshua Pedini <b.pedini@bjphoster.com>
This commit is contained in:
committed by
Scott Lahteine
parent
735c1b6183
commit
08d54b3d78
@@ -45,14 +45,20 @@
|
||||
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
|
||||
#endif
|
||||
|
||||
#define BOARD_INFO_NAME "Rambo"
|
||||
#ifndef BOARD_INFO_NAME
|
||||
#define BOARD_INFO_NAME "Rambo"
|
||||
#endif
|
||||
|
||||
//
|
||||
// Servos
|
||||
//
|
||||
#define SERVO0_PIN 22 // Motor header MX1
|
||||
#ifndef SERVO0_PIN
|
||||
#define SERVO0_PIN 22 // Motor header MX1
|
||||
#endif
|
||||
#define SERVO1_PIN 23 // Motor header MX2
|
||||
#define SERVO2_PIN 24 // Motor header MX3
|
||||
#ifndef SERVO2_PIN
|
||||
#define SERVO2_PIN 24 // Motor header MX3
|
||||
#endif
|
||||
#define SERVO3_PIN 5 // PWM header pin 5
|
||||
|
||||
//
|
||||
@@ -62,7 +68,9 @@
|
||||
#define X_MAX_PIN 24
|
||||
#define Y_MIN_PIN 11
|
||||
#define Y_MAX_PIN 23
|
||||
#define Z_MIN_PIN 10
|
||||
#ifndef Z_MIN_PIN
|
||||
#define Z_MIN_PIN 10
|
||||
#endif
|
||||
#define Z_MAX_PIN 30
|
||||
|
||||
//
|
||||
@@ -135,8 +143,12 @@
|
||||
#ifndef FAN_PIN
|
||||
#define FAN_PIN 8
|
||||
#endif
|
||||
#define FAN1_PIN 6
|
||||
#define FAN2_PIN 2
|
||||
#ifndef FAN1_PIN
|
||||
#define FAN1_PIN 6
|
||||
#endif
|
||||
#ifndef FAN2_PIN
|
||||
#define FAN2_PIN 2
|
||||
#endif
|
||||
|
||||
//
|
||||
// Misc. Functions
|
||||
@@ -220,8 +232,12 @@
|
||||
#define BEEPER_PIN 79 // AUX-4
|
||||
|
||||
// AUX-2
|
||||
#define BTN_EN1 76
|
||||
#define BTN_EN2 77
|
||||
#ifndef BTN_EN1
|
||||
#define BTN_EN1 76
|
||||
#endif
|
||||
#ifndef BTN_EN2
|
||||
#define BTN_EN2 77
|
||||
#endif
|
||||
#define BTN_ENC 78
|
||||
|
||||
#define SD_DETECT_PIN 81
|
||||
|
||||
Reference in New Issue
Block a user