This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module main | |
import flag | |
import os | |
const ( | |
app_name = 'LeName' | |
app_version = 'v0.0.1' | |
app_description = 'LeName is a starter template' | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define DEBUG 0 // Set to 1 to enable debug output | |
#if DEBUG | |
#define DEBUG_PRINT(x) Serial.print(x) | |
#define DEBUG_PRINTLN(x) Serial.println(x) | |
#else | |
#define DEBUG_PRINT(x) | |
#define DEBUG_PRINTLN(x) | |
#endif |