use of com.tinkerforge.TimeoutException in project openhab1-addons by openhab.
the class MBrickletUVLightImpl method enable.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated NOT
*/
@Override
public void enable() {
if (tfConfig != null) {
if (tfConfig.eIsSet(tfConfig.eClass().getEStructuralFeature("threshold"))) {
logger.debug("threshold {}", tfConfig.getThreshold());
setThreshold(tfConfig.getThreshold());
}
if (tfConfig.eIsSet(tfConfig.eClass().getEStructuralFeature("callbackPeriod"))) {
logger.debug("callbackPeriod {}", tfConfig.getCallbackPeriod());
setCallbackPeriod(tfConfig.getCallbackPeriod());
}
}
try {
tinkerforgeDevice = new BrickletUVLight(getUid(), getIpConnection());
tinkerforgeDevice.setUVLightCallbackPeriod(getCallbackPeriod());
listener = new UVLightListener();
tinkerforgeDevice.addUVLightListener(listener);
fetchSensorValue();
} 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 com.tinkerforge.TimeoutException in project openhab1-addons by openhab.
the class MBrickletUVLightImpl method fetchSensorValue.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated NOT
*/
@Override
public void fetchSensorValue() {
try {
long uvLight = tinkerforgeDevice.getUVLight();
DecimalValue value = Tools.calculate(uvLight);
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 com.tinkerforge.TimeoutException in project openhab1-addons by openhab.
the class DigitalActorIO4Impl method fetchDigitalValue.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated NOT
*/
@Override
public void fetchDigitalValue() {
HighLowValue pinValue = HighLowValue.UNDEF;
try {
pinValue = extractValue(getMbrick().getTinkerforgeDevice().getValue());
setDigitalState(pinValue);
} 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 com.tinkerforge.TimeoutException in project openhab1-addons by openhab.
the class DigitalSensorIO4Impl method enable.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated NOT
*/
@Override
public void enable() {
logger.debug("{} enable called on DigitalSensorIO4 {}", LoggerConstants.TFINIT, getSubId());
setSensorValue(HighLowValue.UNDEF);
if (tfConfig != null) {
logger.debug("{} found config for DigitalSensor {}", LoggerConstants.TFINIT, getSubId());
setPullUpResistorEnabled(tfConfig.isPullUpResistorEnabled());
logger.debug("{} pull-up resistor state is {} for {}", LoggerConstants.TFINIT, isPullUpResistorEnabled(), getSubId());
}
MBrickletIO4 bricklet = getMbrick();
if (bricklet == null) {
logger.error("{} No bricklet found for DigitalSensor: {} ", LoggerConstants.TFINIT, subId);
} else {
BrickletIO4 brickletIO4 = bricklet.getTinkerforgeDevice();
try {
logger.debug("{} setting InterruptListener for DigitalSensorIO4: {} ", LoggerConstants.TFINIT, subId);
listener = new InterruptListener();
brickletIO4.addInterruptListener(listener);
brickletIO4.setConfiguration((short) mask, BrickletIO4.DIRECTION_IN, isPullUpResistorEnabled());
fetchSensorValue();
} 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 com.tinkerforge.TimeoutException 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);
}
}
Aggregations