Overrideable CASE_LIGHT_PIN

This commit is contained in:
Scott Lahteine
2020-05-07 14:57:25 -05:00
parent 10e875cd79
commit 6be76af617
25 changed files with 97 additions and 25 deletions

View File

@ -106,7 +106,10 @@
//
#define SDSS 17
#define DEBUG_PIN 0
#define CASE_LIGHT_PIN 16 // Hardware PWM
#ifndef CASE_LIGHT_PIN
#define CASE_LIGHT_PIN 16 // Hardware PWM
#endif
// RS485 pins
#define TX_ENABLE_PIN 12

View File

@ -102,7 +102,10 @@
// Misc. Functions
//
#define PS_ON_PIN 15
#define CASE_LIGHT_PIN 15 // Hardware PWM
#ifndef CASE_LIGHT_PIN
#define CASE_LIGHT_PIN 15 // Hardware PWM
#endif
// A pin for debugging
#define DEBUG_PIN 0

View File

@ -104,7 +104,10 @@
//
#define SDSS 31 // SCL pin of I2C header || CS Pin for SD Card support
#define PS_ON_PIN 19
#define CASE_LIGHT_PIN 15 // Hardware PWM
#ifndef CASE_LIGHT_PIN
#define CASE_LIGHT_PIN 15 // Hardware PWM
#endif
// A pin for debugging
#define DEBUG_PIN -1