2015-02-20 01:28:38 +00:00
|
|
|
/**
|
|
|
|
* AZTEEG_X3 Arduino Mega with RAMPS v1.3 pin assignments
|
|
|
|
*/
|
|
|
|
|
2015-06-15 23:56:16 +00:00
|
|
|
#include "pins_RAMPS_13_EFB.h"
|
2015-02-20 01:28:38 +00:00
|
|
|
|
2015-03-29 04:11:12 +00:00
|
|
|
//LCD Pins//
|
|
|
|
|
2015-07-31 05:11:19 +00:00
|
|
|
#if ENABLED(VIKI2) || ENABLED(miniVIKI)
|
|
|
|
|
2015-07-31 14:36:20 +00:00
|
|
|
#define BEEPER_PIN 33
|
2015-07-31 06:19:11 +00:00
|
|
|
|
2015-03-29 04:11:12 +00:00
|
|
|
// Pins for DOGM SPI LCD Support
|
2015-07-31 14:36:20 +00:00
|
|
|
#define DOGLCD_A0 31
|
|
|
|
#define DOGLCD_CS 32
|
|
|
|
#define LCD_SCREEN_ROT_180
|
|
|
|
|
|
|
|
//The encoder and click button
|
|
|
|
#define BTN_EN1 22
|
|
|
|
#define BTN_EN2 7
|
|
|
|
#define BTN_ENC 12 //the click switch
|
|
|
|
|
|
|
|
#define SDSS 53
|
2015-07-31 23:40:50 +00:00
|
|
|
#define SD_DETECT -1 // Pin 49 if using display sd interface
|
2015-07-31 14:36:20 +00:00
|
|
|
|
2015-07-31 05:11:19 +00:00
|
|
|
#if ENABLED(TEMP_STAT_LEDS)
|
2015-07-31 14:36:20 +00:00
|
|
|
#define STAT_LED_RED 64
|
|
|
|
#define STAT_LED_BLUE 63
|
2015-03-29 04:11:12 +00:00
|
|
|
#endif
|
2015-07-31 05:11:19 +00:00
|
|
|
|
|
|
|
#elif ENABLED(TEMP_STAT_LEDS)
|
|
|
|
|
2015-02-20 01:28:38 +00:00
|
|
|
#define STAT_LED_RED 6
|
|
|
|
#define STAT_LED_BLUE 11
|
2015-07-31 05:11:19 +00:00
|
|
|
|
2015-02-20 01:28:38 +00:00
|
|
|
#endif
|