#ifndef __Config #define __Config #include "Arduino.h" static const int PinLCDRS = 7; static const int PinLCDEN = 8; static const int PinLCDDB4 = 9; static const int PinLCDDB5 = 10; static const int PinLCDDB6 = 11; static const int PinLCDDB7 = 12; static const int PinEncoderClock = 2; static const int PinEncoderData = 3; static const int PinButton = 4; static const int PinBuzzer = 5; static const int PinLED = 6; // You probably don't wanna change these without a proper review of the code, since most of it assumes 16x2 anyways static const int LCDWidth = 16; static const int LCDHeight = 2; static const int EncoderSensitivity = 4; static const int SmallStep = 1; static const int LargeStepTreshold = 60; static const int LargeStep = 10; static const int MenuTimeout = 2000; static const uint8_t LCDCharArrowRight = 0; static const uint8_t LCDCharArrowLeft = 1; static const uint8_t LCDCharArrowRightHollow = 2; static const uint8_t LCDCharArrowLeftHollow = 3; static const uint8_t LCDCharUpDown = 4; extern byte LCDCharArrowRightMap[8]; extern byte LCDCharArrowLeftMap[8]; extern byte LCDCharArrowRightHollowMap[8]; extern byte LCDCharArrowLeftHollowMap[8]; extern byte LCDCharUpDownMap[8]; #endif