diff --git a/include/config.h b/include/config.sample.h similarity index 91% rename from include/config.h rename to include/config.sample.h index 0030827..5ca3f05 100644 --- a/include/config.h +++ b/include/config.sample.h @@ -6,13 +6,20 @@ #define FTP_DEBUG #define DELAY_AFTER_DEBUG_AND_TRACE 0 -#define WIFI_SSID "Schlenz" -#define WIFI_PASS "1410WischlingenPanda" +#define WIFI_SSID "---CHANGEME---" +#define WIFI_PASS "---CHANGEME---" #define VS1053_SLEEP_DELAY 5000 -#define MQTT_REPORT_INTERVAL 10000 #define POSITION_SEND_INTERVAL 5000 +#define DEBOUNCE_MILLIS 200 +#define VOLUME_DEFAULT 230 +#define VOLUME_MIN 190 +#define VOLUME_MAX 255 +#define VOLUME_STEP 0x08 + +#define RFID_SCAN_INTERVAL 100 + #define PIN_SD_CS(x) (digitalWrite(16, x)) #define PIN_SD_CS_SETUP() (pinMode(16, OUTPUT)) @@ -50,21 +57,6 @@ #define BTN_NEXT_SETUP() (pinMode(33, INPUT_PULLUP)) -#define MCP_I2C_ADDR 7 - -#define NUM_BUTTONS 4 - -#define DEBOUNCE_MILLIS 200 -#define VOLUME_DEFAULT 230 -#define VOLUME_MIN 190 -#define VOLUME_MAX 255 -#define VOLUME_STEP 0x08 - -#define MCP_SPI_SETTING_DELAY 1 - -#define RFID_SCAN_INTERVAL 100 - - // Other definitions #define INFO(x, ...) Serial.printf(x, ##__VA_ARGS__) #define ERROR(x, ...) Serial.printf(x, ##__VA_ARGS__)