Search in sources :

Example 1 with MBrickletIO4

use of org.openhab.binding.tinkerforge.internal.model.MBrickletIO4 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);
        }
    }
}
Also used : NotConnectedException(com.tinkerforge.NotConnectedException) MBrickletIO4(org.openhab.binding.tinkerforge.internal.model.MBrickletIO4) BrickletIO4(com.tinkerforge.BrickletIO4) MBrickletIO4(org.openhab.binding.tinkerforge.internal.model.MBrickletIO4) TimeoutException(com.tinkerforge.TimeoutException)

Aggregations

BrickletIO4 (com.tinkerforge.BrickletIO4)1 NotConnectedException (com.tinkerforge.NotConnectedException)1 TimeoutException (com.tinkerforge.TimeoutException)1 MBrickletIO4 (org.openhab.binding.tinkerforge.internal.model.MBrickletIO4)1