Added Fan Speed Feedback register to UMAS DH CRAH.

Added Fan Speed Feedback register to UMAS DH CRAH.
This commit is contained in:
RobertJDavis
2025-11-05 07:13:59 -07:00
parent dfc103f1e1
commit e5ae233875
3 changed files with 5 additions and 2 deletions

View File

@@ -141,6 +141,8 @@ State<ModbusIP>* RunningState<ModbusIP>::update(Equipment<ModbusIP>* equipment)
}
}
setPointValue(equipment, "Fan Speed Feedback", BMS_Speed_Setpoint);
// Apply any strategies defined for the standby state
_applyStrategies(equipment);
return nullptr;

View File

@@ -23,7 +23,7 @@
#include <ModbusIP_ESP8266.h>
const char *ssid = "ArduinoWifiB"; /**< @brief The SSID of the WiFi network. */
const char *password = "123abc456"; /**< @brief The password for the WiFi network. */
IPAddress local_IP(172, 30, 22, 100); /**< @brief The static IP address for the device. */
IPAddress local_IP(172, 17, 32, 49); /**< @brief The static IP address for the device. */
IPAddress gateway(172, 17, 32, 1); /**< @brief The gateway IP address. */
IPAddress subnet(255, 255, 255, 0); /**< @brief The subnet mask. */
@@ -144,6 +144,7 @@ modbusMap mb_map[] =
{HR_FLOAT, 23, 0, "Fan Max Speed"}, // Send to PLC
{HR, 25, 0, "BMS Control Source"}, // Receive signal from PLC 0:Speed, 1:Room Temp
{HR, 26, 2, "BMS Enable Source"}, // Receive signal from PLC 0:Keypad, 1:DI, 2:BMS
{HR_FLOAT, 28, 0, "Fan Speed Feedback"},
};