From d792990bee9d5e07adbf2abfecca342faa7c3664 Mon Sep 17 00:00:00 2001 From: Emmanuel HC Date: Fri, 9 Jan 2026 10:47:04 -0600 Subject: [PATCH] q --- platformio.ini | 4 ++-- src/Base_TCP/config.h | 8 ++++---- src/EPMS/Breaker/BKR_ABB_XT_TCP/State_Standby.cpp | 1 + 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/platformio.ini b/platformio.ini index 97e5cbb..7cf38b6 100644 --- a/platformio.ini +++ b/platformio.ini @@ -9,10 +9,10 @@ [platformio] -default_envs = MVG_SC_EC_M505_TCP ; Select here the name of the configuration you want to download +default_envs = Base_TCP ; Select here the name of the configuration you want to download [env] -upload_port = COM26 +upload_port = COM15 [common_env_options] framework = arduino diff --git a/src/Base_TCP/config.h b/src/Base_TCP/config.h index 09bf37f..ca0d770 100644 --- a/src/Base_TCP/config.h +++ b/src/Base_TCP/config.h @@ -21,10 +21,10 @@ * @{ */ #include - const char *ssid = "wifi_name"; /**< @brief The SSID of the WiFi network. */ - const char *password = "wifi_password"; /**< @brief The password for the WiFi network. */ - IPAddress local_IP(192, 168, 1, 234); /**< @brief The static IP address for the device. */ - IPAddress gateway(192, 168, 1, 1); /**< @brief The gateway IP address. */ + const char *ssid = "QTS_ATL_Arduino"; /**< @brief The SSID of the WiFi network. */ + const char *password = "Fayetteville123"; /**< @brief The password for the WiFi network. */ + IPAddress local_IP(172, 17, 25, 115); /**< @brief The static IP address for the device. */ + IPAddress gateway(172, 17, 25, 1); /**< @brief The gateway IP address. */ IPAddress subnet(255, 255, 255, 0); /**< @brief The subnet mask. */ ModbusIP mb; diff --git a/src/EPMS/Breaker/BKR_ABB_XT_TCP/State_Standby.cpp b/src/EPMS/Breaker/BKR_ABB_XT_TCP/State_Standby.cpp index 7d19437..e065339 100644 --- a/src/EPMS/Breaker/BKR_ABB_XT_TCP/State_Standby.cpp +++ b/src/EPMS/Breaker/BKR_ABB_XT_TCP/State_Standby.cpp @@ -98,6 +98,7 @@ void StandbyState::enterState(Equipment* equipment) { setPointValue(equipment, "kW", 0.0f); setPointValue(equipment, "kVA", 0.0f); setPointValue(equipment, "kWh", 0.0f); + setBitValue(equipment, "Alarm General", 0, false); } /**