Search in sources :

Example 1 with BrickletDustDetector

use of com.tinkerforge.BrickletDustDetector in project openhab1-addons by openhab.

the class MBrickletDustDetectorImpl method enable.

/**
     * <!-- begin-user-doc --> <!-- end-user-doc -->
     * 
     * @generated NOT
     */
@Override
public void enable() {
    if (tfConfig != null) {
        if (tfConfig.eIsSet(tfConfig.eClass().getEStructuralFeature("threshold"))) {
            setThreshold(tfConfig.getThreshold());
        }
        if (tfConfig.eIsSet(tfConfig.eClass().getEStructuralFeature("callbackPeriod"))) {
            setCallbackPeriod(tfConfig.getCallbackPeriod());
        }
    }
    try {
        tinkerforgeDevice = new BrickletDustDetector(getUid(), getIpConnection());
        tinkerforgeDevice.setDustDensityCallbackPeriod(getCallbackPeriod());
        listener = new DustDensityListener();
        tinkerforgeDevice.addDustDensityListener(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);
    }
}
Also used : MBrickletDustDetector(org.openhab.binding.tinkerforge.internal.model.MBrickletDustDetector) BrickletDustDetector(com.tinkerforge.BrickletDustDetector) NotConnectedException(com.tinkerforge.NotConnectedException) TimeoutException(com.tinkerforge.TimeoutException)

Example 2 with BrickletDustDetector

use of com.tinkerforge.BrickletDustDetector in project openhab1-addons by openhab.

the class MBrickletDustDetectorImpl method setTinkerforgeDevice.

/**
     * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
     * 
     * @generated
     */
@Override
public void setTinkerforgeDevice(BrickletDustDetector newTinkerforgeDevice) {
    BrickletDustDetector oldTinkerforgeDevice = tinkerforgeDevice;
    tinkerforgeDevice = newTinkerforgeDevice;
    if (eNotificationRequired())
        eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.MBRICKLET_DUST_DETECTOR__TINKERFORGE_DEVICE, oldTinkerforgeDevice, tinkerforgeDevice));
}
Also used : MBrickletDustDetector(org.openhab.binding.tinkerforge.internal.model.MBrickletDustDetector) BrickletDustDetector(com.tinkerforge.BrickletDustDetector) ENotificationImpl(org.eclipse.emf.ecore.impl.ENotificationImpl)

Aggregations

BrickletDustDetector (com.tinkerforge.BrickletDustDetector)2 MBrickletDustDetector (org.openhab.binding.tinkerforge.internal.model.MBrickletDustDetector)2 NotConnectedException (com.tinkerforge.NotConnectedException)1 TimeoutException (com.tinkerforge.TimeoutException)1 ENotificationImpl (org.eclipse.emf.ecore.impl.ENotificationImpl)1