26 lines
574 B
C
26 lines
574 B
C
/* This software is licensed under the MIT License: https://github.com/spacehuhntech/usbnova */
|
|
|
|
#pragma once
|
|
|
|
#define VERSION "1.1.0"
|
|
|
|
// ===== DEBUG Settings ===== //
|
|
//#define ENABLE_DEBUG
|
|
#define DEBUG_PORT Serial
|
|
#define DEBUG_BAUD 115200
|
|
|
|
// ===== Storage Settings ===== //
|
|
#define READ_BUFFER 2048
|
|
|
|
// ===== LED Settings ===== //
|
|
#define LED_PIN 11
|
|
|
|
// ===== SELECTOR SWITCH ===== //
|
|
#define SELECTOR A0
|
|
|
|
// ===== Parser Settings ===== //
|
|
#define CASE_SENSETIVE false
|
|
#define DEFAULT_SLEEP 5
|
|
|
|
// ===== Other Stuff ====== //
|
|
#define PREFERENCES_PATH "preferences.json" |