My suggestion is to use the const keyword to define constants that don't change during program execution
const uint8_t TXP_PIN = 9;
const uint8_t TXN_PIN = 10;
const uint8_t ADC_POT = A1;
const uint8_t TCLKP_PIN = 2;
const uint8_t GCLKP_PIN = 3;
const uint8_t TCLKN_PIN = 4;
const uint8_t GCLKN_PIN = 5;
const uint8_t BCLK_PIN = 6;
const uint8_t LED_PIN = 13;
and of time constants
const unsigned long TX_PERIOD = 200;
const unsigned long TX_WIDTH = 50;
const unsigned long MAIN_DELAY = 15;
const unsigned long MAIN_WIDTH = 10;
const unsigned long GND_DELAY = 5;
const unsigned long GND_WIDTH = 40;
Comment