From be5e3f92ae66928934cb587c0da16eb0a425086a Mon Sep 17 00:00:00 2001 From: Luc <8822552+luc-github@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:07:52 +0800 Subject: [PATCH] Add missing WhatsApp setting in ESP400 Bump version --- esp3d/src/core/commands/ESP400.cpp | 4 ++-- esp3d/src/include/esp3d_version.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/esp3d/src/core/commands/ESP400.cpp b/esp3d/src/core/commands/ESP400.cpp index 37598c8d..2ab1741a 100644 --- a/esp3d/src/core/commands/ESP400.cpp +++ b/esp3d/src/core/commands/ESP400.cpp @@ -124,9 +124,9 @@ const char* FirmwareLabels[] = {"Unknown", "Grbl", "Marlin", "Smoothieware", const char* FirmwareValues[] = {"0", "10", "20", "40", "50"}; #ifdef NOTIFICATION_FEATURE const char* NotificationsLabels[] = { - "none", "pushover", "email", "line", "telegram", "ifttt", "home-assistant"}; + "none", "pushover", "email", "line", "telegram", "ifttt", "home-assistant","WhatsApp"}; -const char* NotificationsValues[] = {"0", "1", "2", "3", "4", "5", "6"}; +const char* NotificationsValues[] = {"0", "1", "2", "3", "4", "5", "6", "7"}; #endif // NOTIFICATION_FEATURE const char* IpModeLabels[] = {"static", "dhcp"}; diff --git a/esp3d/src/include/esp3d_version.h b/esp3d/src/include/esp3d_version.h index a66b0992..01879e1b 100644 --- a/esp3d/src/include/esp3d_version.h +++ b/esp3d/src/include/esp3d_version.h @@ -22,7 +22,7 @@ #define _VERSION_ESP3D_H // version and sources location -#define FW_VERSION "3.0.0.a243" +#define FW_VERSION "3.0.0.a244" #define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0" #endif //_VERSION_ESP3D_H