Data Initialized Channel Not Turning On
I am having trouble with the data initialized channel (252) not turning on from my Duet Module.
public boolean isDeviceOnLine() {
return obixInitialized;
}
public boolean isDataInitialized() {
return obixInitialized;
}
The Device Online Channel turns on, but not the Data Initialized. I tried adding this in relevant locations
processDataInitializedEvent(new ModuleComponentEvent(this, obixInitialized, 1));Data Initialized channel is not affected. Anyone know how to make this work?
0
Comments
public boolean isDeviceOnLine() { return deviceonline; } public boolean isDataInitialized() { return datainitialized; } //////////////////////////////////////////////////////// // Device Online/Initialize //////////////////////////////////////////////////////// private void setDeviceOnline(boolean state) { if (state != this.deviceonline) { this.deviceonline = state; this.processDeviceOnLineEvent(new ModuleComponentEvent(this, state, 1)); } } private void setDataInitialize(boolean state) { if (state != this.datainitialized) { this.datainitialized = state; this.processDataInitializedEvent(new ModuleComponentEvent(this, state, 1)); } }