Browse Source

Rambo Pin documentation and servo support

Updated pins reference and servo support.

cross referenced between Rambo 1.1, 1.2, and 1.3
Todd Swindoll 10 years ago
parent
commit
506353892e
1 changed files with 21 additions and 1 deletions
  1. 21
    1
      Marlin/pins.h

+ 21
- 1
Marlin/pins.h View File

2358
 
2358
 
2359
 #define LARGE_FLASH true
2359
 #define LARGE_FLASH true
2360
 
2360
 
2361
+// servo support
2362
+#ifdef NUM_SERVOS
2363
+ #define SERVO0_PIN 22 //motor header MX1
2364
+ #if NUM_SERVOS > 1
2365
+ #define SERVO1_PIN 23 //Motor header MX2
2366
+ #endif
2367
+ #if NUM_SERVOS > 2
2368
+ #define SERVO2_PIN 24 //Motor header MX3
2369
+ #endif
2370
+ #if NUM_SERVOS > 3
2371
+ #define SERVO2_PIN 5 //pwm header pin 5
2372
+ #endif
2373
+#endif
2374
+
2361
 #define X_STEP_PIN 37
2375
 #define X_STEP_PIN 37
2362
 #define X_DIR_PIN 48
2376
 #define X_DIR_PIN 48
2363
 #define X_MIN_PIN 12
2377
 #define X_MIN_PIN 12
2416
 #define SDPOWER            -1
2430
 #define SDPOWER            -1
2417
 #define SDSS               53
2431
 #define SDSS               53
2418
 #define LED_PIN            13
2432
 #define LED_PIN            13
2419
-#define FAN_PIN            8
2433
+#define FAN_PIN            8  
2434
+/**********************************************************
2435
+Fan Pins
2436
+Fan_0 8
2437
+Fan_1 6
2438
+Fan_2 2
2439
+***********************************************************/
2420
 #define PS_ON_PIN          4
2440
 #define PS_ON_PIN          4
2421
 #define KILL_PIN           -1 //80 with Smart Controller LCD
2441
 #define KILL_PIN           -1 //80 with Smart Controller LCD
2422
 #define SUICIDE_PIN        -1  //PIN that has to be turned on right after start, to keep power flowing.
2442
 #define SUICIDE_PIN        -1  //PIN that has to be turned on right after start, to keep power flowing.

Loading…
Cancel
Save