#ifndef __config #define __config #include #define SerialDebug static const uint32_t SerialDebugBaudrate = 115200; static const uint32_t SerialDebugStartupDelay = 2000; static const char* ConnectionSettingsFile = "/settings.json"; static const char* DefaultAPSSIDPrefix = "Stairs-"; static const uint32_t StationModeTimeout = 30000; static const char* StepSettingsFile = "/stepsettings"; // TODO make these configurable through the web interface? static const uint8_t PinLEDAP = 4; static const uint8_t PinLEDSTA = 5; static const uint8_t PinAPButton = 2; // Pins for the I2C bus static const uint8_t PinSDA = 13; static const uint8_t PinSCL = 12; // I2C address and PWM frequency of the PCA9685 board static const uint8_t PWMDriverAddress = 0x40; static const uint16_t PWMDriverPWMFrequency = 1600; #endif