Search in sources :

Example 1 with BrickletSoundIntensity

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

the class MBrickletSoundIntensityImpl method setTinkerforgeDevice.

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

Example 2 with BrickletSoundIntensity

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

the class MBrickletSoundIntensityImpl 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 BrickletSoundIntensity(getUid(), getIpConnection());
        tinkerforgeDevice.setIntensityCallbackPeriod(getCallbackPeriod());
        listener = new SoundIntensityListener();
        tinkerforgeDevice.addIntensityListener(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 : NotConnectedException(com.tinkerforge.NotConnectedException) MBrickletSoundIntensity(org.openhab.binding.tinkerforge.internal.model.MBrickletSoundIntensity) BrickletSoundIntensity(com.tinkerforge.BrickletSoundIntensity) TimeoutException(com.tinkerforge.TimeoutException)

Aggregations

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