link start!
This commit is contained in:
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<IO>
|
||||
<Types>
|
||||
<BinaryInput>
|
||||
<Fixed>
|
||||
<Momentary maxCount="1">
|
||||
<Pin v="25"/>
|
||||
<Pin v="26"/>
|
||||
<Pin v="28"/>
|
||||
<Pin v="29"/>
|
||||
</Momentary>
|
||||
</Fixed>
|
||||
<Custom>
|
||||
<Maintained maxCount="1"></Maintained>
|
||||
</Custom>
|
||||
</BinaryInput>
|
||||
|
||||
<BinaryOutput>
|
||||
</BinaryOutput>
|
||||
|
||||
<ModulatingInput>
|
||||
<Fixed>
|
||||
<Pulse_Meter maxCount="1">
|
||||
<Pin v="25"/>
|
||||
<Pin v="26"/>
|
||||
<Pin v="28"/>
|
||||
<Pin v="29"/>
|
||||
</Pulse_Meter>
|
||||
<Counter maxCount="1">
|
||||
<Pin v="25"/>
|
||||
<Pin v="26"/>
|
||||
<Pin v="28"/>
|
||||
<Pin v="29"/>
|
||||
</Counter>
|
||||
</Fixed>
|
||||
<Std> <!-- the following sensors are supported by this model -->
|
||||
<Kntc20/>
|
||||
<Kntc20_TR20_Series/>
|
||||
<Pt1000/>
|
||||
<C7400A/>
|
||||
<C7632A/>
|
||||
<C7632B/>
|
||||
<C7600B/>
|
||||
<H7655A/>
|
||||
</Std>
|
||||
|
||||
<Custom>
|
||||
<CustomResistive/>
|
||||
<CustomVoltage/>
|
||||
<CustomSensor/>
|
||||
</Custom>
|
||||
</ModulatingInput>
|
||||
|
||||
<ModulatingOutput>
|
||||
<Fixed>
|
||||
</Fixed>
|
||||
|
||||
<Custom>
|
||||
<Analog/>
|
||||
<Floating/>
|
||||
<Pwm maxCount="1">
|
||||
<Pin v="-1"/>
|
||||
</Pwm>
|
||||
</Custom>
|
||||
</ModulatingOutput>
|
||||
</Types>
|
||||
|
||||
</IO>
|
||||
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.honeywell.lonSpyder.networkInterface;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.networkInterface.INetworkObject;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BIOPointInterface;
|
||||
import javax.baja.lonworks.londata.BLonInteger;
|
||||
import javax.baja.naming.BOrd;
|
||||
import javax.baja.sys.BIcon;
|
||||
import javax.baja.sys.Context;
|
||||
import javax.baja.sys.Property;
|
||||
|
||||
public interface INetworkVariable extends INetworkObject {
|
||||
BOrd getContainerPath();
|
||||
|
||||
String getContainerString();
|
||||
|
||||
String getDisplayName(Context context);
|
||||
|
||||
BIOPointInterface getField(String str);
|
||||
|
||||
double getFieldValue(String str);
|
||||
|
||||
Property[] getFields();
|
||||
|
||||
BIcon getIcon();
|
||||
|
||||
BLonInteger getNsnvtType();
|
||||
|
||||
String getNvCategory();
|
||||
|
||||
String getSnvtName();
|
||||
|
||||
void setNsnvtType(BLonInteger bLonInteger);
|
||||
|
||||
void setNvCategory(String str);
|
||||
|
||||
void setSnvtName(String str);
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.honeywell.lonSpyder.selfdocument;
|
||||
|
||||
import javax.baja.util.BBitSet;
|
||||
|
||||
public interface ICpSelfDocument {
|
||||
BBitSet getFlag();
|
||||
|
||||
int getHeader();
|
||||
|
||||
int getIndex();
|
||||
|
||||
int getResourceFileScope();
|
||||
|
||||
void setFlag(BBitSet bBitSet);
|
||||
|
||||
void setHeader(int i);
|
||||
|
||||
void setIndex(int i);
|
||||
|
||||
void setResourceFileScope(int i);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.honeywell.lonSpyder.selfdocument;
|
||||
|
||||
public interface INvSelfDocument {
|
||||
int getFbIndex();
|
||||
|
||||
int getMemberNumber();
|
||||
|
||||
int getResourceScope();
|
||||
|
||||
void setFbIndex(int i);
|
||||
|
||||
void setMemberNumber(int i);
|
||||
|
||||
void setResourceScope(int i);
|
||||
}
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
package com.honeywell.lonSpyder.xl10Controller.compilation.shortstack;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.logicContainers.BIMacro;
|
||||
import com.honeywell.honeywellXL10NextGen.xl10Controller.IChecksumCRCGenerator;
|
||||
import javax.baja.lonworks.BLonDevice;
|
||||
import javax.baja.lonworks.enums.BLonNvDirection;
|
||||
import javax.baja.lonworks.enums.BLonServiceType;
|
||||
import javax.baja.lonworks.londata.BLonData;
|
||||
import javax.baja.sys.BComponent;
|
||||
import javax.baja.sys.BObject;
|
||||
|
||||
public interface IShortStack {
|
||||
void generateShortStackImage(BLonDevice bLonDevice, BObject bObject, BComponent[] bComponentArr) throws Exception;
|
||||
|
||||
BLonNvDirection[] getListOfNVDirection(byte[] bArr);
|
||||
|
||||
String[] getListOfNVNames(byte[] bArr, BIMacro bIMacro, int i);
|
||||
|
||||
BLonServiceType[] getListOfServiceTypes(byte[] bArr);
|
||||
|
||||
int[] getListOfSnvtTypes(byte[] bArr);
|
||||
|
||||
BLonData getLonAppInitData();
|
||||
|
||||
int getLonAppInitDataLength();
|
||||
|
||||
BLonData getLonSiData();
|
||||
|
||||
int getLonSiDataLength();
|
||||
|
||||
void setChecksumAndLength(IChecksumCRCGenerator iChecksumCRCGenerator);
|
||||
|
||||
byte[] toNetBytes(int i);
|
||||
}
|
||||
Reference in New Issue
Block a user