Added Fan Speed Feedback register to UMAS DH CRAH.
Added Fan Speed Feedback register to UMAS DH CRAH.
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
[platformio]
|
[platformio]
|
||||||
|
|
||||||
|
|
||||||
default_envs = PHX3_VFD_ABB_ACH580_RTU ; Select here the name of the configuration you want to download
|
default_envs = CRAH_UMAS_TCP ; Select here the name of the configuration you want to download
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
upload_port = COM6
|
upload_port = COM6
|
||||||
|
|||||||
@@ -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
|
// Apply any strategies defined for the standby state
|
||||||
_applyStrategies(equipment);
|
_applyStrategies(equipment);
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
#include <ModbusIP_ESP8266.h>
|
#include <ModbusIP_ESP8266.h>
|
||||||
const char *ssid = "ArduinoWifiB"; /**< @brief The SSID of the WiFi network. */
|
const char *ssid = "ArduinoWifiB"; /**< @brief The SSID of the WiFi network. */
|
||||||
const char *password = "123abc456"; /**< @brief The password for 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 gateway(172, 17, 32, 1); /**< @brief The gateway IP address. */
|
||||||
IPAddress subnet(255, 255, 255, 0); /**< @brief The subnet mask. */
|
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_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, 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, 26, 2, "BMS Enable Source"}, // Receive signal from PLC 0:Keypad, 1:DI, 2:BMS
|
||||||
|
{HR_FLOAT, 28, 0, "Fan Speed Feedback"},
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user