diff --git a/code/espurna/config/version.h b/code/espurna/config/version.h index 091bd57d..34193cb0 100644 --- a/code/espurna/config/version.h +++ b/code/espurna/config/version.h @@ -1,3 +1,5 @@ #define APP_NAME "ESPURNA" #define APP_VERSION "1.13.3a" +#define APP_AUTHOR "xose.perez@gmail.com" +#define APP_WEBSITE "http://tinkerman.cat" #define CFG_VERSION 3 diff --git a/code/espurna/utils.ino b/code/espurna/utils.ino index 78cb53b9..7686e17e 100644 --- a/code/espurna/utils.ino +++ b/code/espurna/utils.ino @@ -272,9 +272,8 @@ void info() { } else { DEBUG_MSG_P(PSTR("[MAIN] %s %s\n"), (char *) APP_NAME, (char *) APP_VERSION); } - DEBUG_MSG_P(PSTR("[MAIN] xose.perez@gmail.com\n")); - DEBUG_MSG_P(PSTR("[MAIN] @xoseperez\n")); - DEBUG_MSG_P(PSTR("[MAIN] http://tinkerman.cat\n\n")); + DEBUG_MSG_P(PSTR("[MAIN] " APP_AUTHOR "\n")); + DEBUG_MSG_P(PSTR("[MAIN] " APP_WEBSITE "\n\n")); DEBUG_MSG_P(PSTR("[MAIN] CPU chip ID: 0x%06X\n"), ESP.getChipId()); DEBUG_MSG_P(PSTR("[MAIN] CPU frequency: %u MHz\n"), ESP.getCpuFreqMHz()); DEBUG_MSG_P(PSTR("[MAIN] SDK version: %s\n"), ESP.getSdkVersion());