USBNova/config.h

26 lines
574 B
C
Raw Normal View History

/* This software is licensed under the MIT License: https://github.com/spacehuhntech/usbnova */
#pragma once
2022-11-11 03:28:11 -08:00
#define VERSION "1.1.0"
// ===== DEBUG Settings ===== //
2022-11-02 04:10:53 -07:00
//#define ENABLE_DEBUG
#define DEBUG_PORT Serial
#define DEBUG_BAUD 115200
// ===== Storage Settings ===== //
#define READ_BUFFER 2048
// ===== LED Settings ===== //
2022-06-30 12:19:02 -07:00
#define LED_PIN 11
// ===== SELECTOR SWITCH ===== //
2022-06-30 12:19:02 -07:00
#define SELECTOR A0
// ===== Parser Settings ===== //
#define CASE_SENSETIVE false
#define DEFAULT_SLEEP 5
// ===== Other Stuff ====== //
#define PREFERENCES_PATH "preferences.json"