use of org.openhab.binding.tinkerforge.internal.types.HighLowValue in project openhab1-addons by openhab.
the class DigitalSensorImpl method fetchSensorValue.
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated NOT
*/
@Override
public void fetchSensorValue() {
HighLowValue value = HighLowValue.UNDEF;
try {
value = extractValue(getMbrick().getTinkerforgeDevice().getPort(getPort()));
setSensorValue(value);
} catch (TimeoutException e) {
TinkerforgeErrorHandler.handleError(this, TinkerforgeErrorHandler.TF_TIMEOUT_EXCEPTION, e);
} catch (NotConnectedException e) {
TinkerforgeErrorHandler.handleError(this, TinkerforgeErrorHandler.TF_NOT_CONNECTION_EXCEPTION, e);
}
}
use of org.openhab.binding.tinkerforge.internal.types.HighLowValue in project openhab1-addons by openhab.
the class DigitalSensorImpl method setSensorValue.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public void setSensorValue(HighLowValue newSensorValue) {
HighLowValue oldSensorValue = sensorValue;
sensorValue = newSensorValue;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.DIGITAL_SENSOR__SENSOR_VALUE, oldSensorValue, sensorValue));
}
use of org.openhab.binding.tinkerforge.internal.types.HighLowValue in project openhab1-addons by openhab.
the class ColorLedImpl method fetchDigitalValue.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated NOT
*/
@Override
public void fetchDigitalValue() {
try {
HighLowValue value = tinkerforgeDevice.isLightOn() == BrickletColor.LIGHT_ON ? HighLowValue.HIGH : HighLowValue.LOW;
setDigitalState(value);
} catch (TimeoutException e) {
TinkerforgeErrorHandler.handleError(this, TinkerforgeErrorHandler.TF_TIMEOUT_EXCEPTION, e);
} catch (NotConnectedException e) {
TinkerforgeErrorHandler.handleError(this, TinkerforgeErrorHandler.TF_NOT_CONNECTION_EXCEPTION, e);
}
}
use of org.openhab.binding.tinkerforge.internal.types.HighLowValue in project openhab1-addons by openhab.
the class AccelerometerLedImpl method setDigitalState.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public void setDigitalState(HighLowValue newDigitalState) {
HighLowValue oldDigitalState = digitalState;
digitalState = newDigitalState;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.ACCELEROMETER_LED__DIGITAL_STATE, oldDigitalState, digitalState));
}
use of org.openhab.binding.tinkerforge.internal.types.HighLowValue in project openhab1-addons by openhab.
the class DigitalActorDigitalOut4Impl method setDigitalState.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public void setDigitalState(HighLowValue newDigitalState) {
HighLowValue oldDigitalState = digitalState;
digitalState = newDigitalState;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.DIGITAL_ACTOR_DIGITAL_OUT4__DIGITAL_STATE, oldDigitalState, digitalState));
}
Aggregations