link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -0,0 +1,29 @@
<panes version="1">
<bw_SensorCalibration default_text="SensorCalibration" type="javax.baja.ui.BWidget" x="0.0" y="0.0" w="400.0" h="300">
<lb_ModIpName default_text="List Of Sensors" type="javax.baja.ui.BLabel" x="30.0" y="25.0" w="80.0" h="20.0"/>
<ldd_ModIpName default_text="ModulatingInput1" type="javax.baja.ui.BListDropDown" x="130.0" y="25.0" w="200.0" h="20.0"/>
<!--
<lb_SensorType default_text="Sensor Type" type="javax.baja.ui.BLabel" x="30.0" y="60.0" w="80.0" h="20.0"/>
<tf_SensorType default_text="KNTC20" type="javax.baja.ui.BTextField" x="130.0" y="60.0" w="120.0" h="20.0"/>
-->
<lb_ActualValue default_text="Actual Value" type="javax.baja.ui.BLabel" x="30.0" y="60.0" w="80.0" h="20.0"/>
<tf_ActualValue default_text="0.0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="130.0" y="60.0" w="100.0" h="20.0"/>
<lb_ActualValueUnit default_text="Deg.F" type="javax.baja.ui.BLabel" x="235.0" y="60.0" w="50.0" h="20.0"/>
<lb_EditValue default_text="Edit Value" type="javax.baja.ui.BLabel" x="30.0" y="95.0" w="80.0" h="20.0"/>
<tf_EditValue default_text="0.0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="130.0" y="95.0" w="100.0" h="20.0"/>
<lb_EditValueUnit default_text="Deg.F" type="javax.baja.ui.BLabel" x="235.0" y="95.0" w="50.0" h="20.0"/>
<lb_Offset default_text="Offset" type="javax.baja.ui.BLabel" x="30.0" y="130.0" w="80.0" h="20.0"/>
<tf_Offset default_text="0.0" type="com.honeywell.honeywellXL10NextGen.functionalBlocks.ui.BFloatTextField" x="130.0" y="130.0" w="100.0" h="20.0"/>
<lb_OffsetUnit default_text="Deg.F" type="javax.baja.ui.BLabel" x="235.0" y="130.0" w="50.0" h="20.0"/>
<bb_SensorCalibrationHelp default_text="Help" type="javax.baja.ui.BButton" x="30.0" y="165.0" w="70.0" h="20.0"/>
<bb_SensorCalibrationCalibrate default_text="Calibrate" type="javax.baja.ui.BButton" x="110.0" y="165.0" w="70.0" h="20.0"/>
<bb_SensorCalibrationRefresh default_text="Refresh " type="javax.baja.ui.BButton" x="190.0" y="165.0" w="70.0" h="20.0"/>
<bb_SensorCalibrationClose default_text=" Close " type="javax.baja.ui.BButton" x="270.0" y="165.0" w="70.0" h="20.0"/>
<bb_SensorCalibrationWarning default_text=" " type="javax.baja.ui.BLabel" x="30.0" y="195.0" w="310.0" h="53.0"/>
</bw_SensorCalibration>
</panes>
@@ -0,0 +1,73 @@
package com.honeywell.honeywellXL10NextGen.xl10Controller.onlineOperation.flowBalancing;
import javax.baja.driver.BDevice;
public interface IFlowCalibrationPoints {
void disableProxies();
void enableProxies();
String getAreaUnit();
String getErrorString();
String getFlowOverrideUnit();
String getFlowUnit();
String getPressureUnit();
float readBoxFlow();
float readBoxFlowControlPoint();
float readControllerFlow();
int readControllerMode();
float readDamperPosition();
float readDuctArea();
int readFlowCalibrationFlag();
float readKFactor();
float readKFactorSetpoint();
float readMaxFlow();
float readMaxFlowSetpoint();
float readMinFlow();
float readMinFlowSetpoint();
float readPressureOffset();
float readVelocityPressureSensor();
void setDevice(BDevice bDevice);
boolean validatePoints();
boolean writeControllerFlow(float f);
boolean writeControllerMode(int i);
boolean writeDuctArea(float f);
boolean writeFlowCalibrationFlag(int i);
boolean writeKFactor(float f);
boolean writeKFactorSetpoint(float f);
boolean writeMaxFlow(float f);
boolean writeMaxFlowSetpoint(float f);
boolean writeMinFlow(float f);
boolean writeMinFlowSetpoint(float f);
}