Search in sources :

Example 1 with EEPId

use of org.opencean.core.common.EEPId in project openhab1-addons by openhab.

the class EnoceanGenericBindingProviderTest method testGetEEP.

@Test
public void testGetEEP() throws BindingConfigParseException {
    EnoceanGenericBindingProvider provider = new EnoceanGenericBindingProvider();
    provider.processBindingConfiguration("enocean", new TestItem("item"), "{id=00:8B:62:43, eep=F6:02:01, channel=B, parameter=I_PRESSED}");
    assertEquals(new EEPId("F6:02:01"), provider.getEEP("item"));
}
Also used : EEPId(org.opencean.core.common.EEPId) Test(org.junit.Test)

Example 2 with EEPId

use of org.opencean.core.common.EEPId in project openhab1-addons by openhab.

the class EnoceanBinding method processEEPs.

private void processEEPs(EnoceanBindingProvider enoceanBindingProvider, String itemName) {
    EnoceanParameterAddress parameterAddress = enoceanBindingProvider.getParameterAddress(itemName);
    EEPId eep = enoceanBindingProvider.getEEP(itemName);
    esp3Host.addDeviceProfile(parameterAddress.getEnoceanDeviceId(), eep);
    Item item = enoceanBindingProvider.getItem(itemName);
    if (profiles.containsKey(parameterAddress.getAsString())) {
        Profile profile = profiles.get(parameterAddress.getAsString());
        profile.removeItem(item);
    }
    Class<Profile> customProfileClass = enoceanBindingProvider.getCustomProfile(itemName);
    if (customProfileClass != null) {
        Constructor<Profile> constructor;
        Profile profile;
        try {
            constructor = customProfileClass.getConstructor(Item.class, EventPublisher.class);
            profile = constructor.newInstance(item, eventPublisher);
            addProfile(item, parameterAddress, profile);
        } catch (Exception e) {
            logger.error("Could not create class for profile " + customProfileClass, e);
        }
    } else if (EEPId.EEP_F6_02_01.equals(eep) || EEPId.EEP_F6_10_00.equals(eep)) {
        if (item.getClass().equals(RollershutterItem.class)) {
            RollershutterProfile profile = new RollershutterProfile(item, eventPublisher);
            addProfile(item, parameterAddress, profile);
        }
        if (item.getClass().equals(DimmerItem.class)) {
            DimmerOnOffProfile profile = new DimmerOnOffProfile(item, eventPublisher);
            addProfile(item, parameterAddress, profile);
        }
        if (item.getClass().equals(SwitchItem.class) && parameterAddress.getParameterId() == null) {
            SwitchOnOffProfile profile = new SwitchOnOffProfile(item, eventPublisher);
            addProfile(item, parameterAddress, profile);
        }
        if (item.getClass().equals(StringItem.class) && EEPId.EEP_F6_10_00.equals(eep)) {
            WindowHandleProfile profile = new WindowHandleProfile(item, eventPublisher);
            addProfile(item, parameterAddress, profile);
        }
    }
}
Also used : EventPublisher(org.openhab.core.events.EventPublisher) EEPId(org.opencean.core.common.EEPId) RollershutterProfile(org.openhab.binding.enocean.internal.profiles.RollershutterProfile) SwitchOnOffProfile(org.openhab.binding.enocean.internal.profiles.SwitchOnOffProfile) Profile(org.openhab.binding.enocean.internal.profiles.Profile) SwitchOnOffProfile(org.openhab.binding.enocean.internal.profiles.SwitchOnOffProfile) StandardProfile(org.openhab.binding.enocean.internal.profiles.StandardProfile) DimmerOnOffProfile(org.openhab.binding.enocean.internal.profiles.DimmerOnOffProfile) WindowHandleProfile(org.openhab.binding.enocean.internal.profiles.WindowHandleProfile) RollershutterProfile(org.openhab.binding.enocean.internal.profiles.RollershutterProfile) ConfigurationException(org.osgi.service.cm.ConfigurationException) NoSuchPortException(gnu.io.NoSuchPortException) DimmerItem(org.openhab.core.library.items.DimmerItem) SwitchItem(org.openhab.core.library.items.SwitchItem) RollershutterItem(org.openhab.core.library.items.RollershutterItem) Item(org.openhab.core.items.Item) StringItem(org.openhab.core.library.items.StringItem) EnoceanParameterAddress(org.opencean.core.address.EnoceanParameterAddress) RollershutterItem(org.openhab.core.library.items.RollershutterItem) DimmerItem(org.openhab.core.library.items.DimmerItem) DimmerOnOffProfile(org.openhab.binding.enocean.internal.profiles.DimmerOnOffProfile) WindowHandleProfile(org.openhab.binding.enocean.internal.profiles.WindowHandleProfile)

Aggregations

EEPId (org.opencean.core.common.EEPId)2 NoSuchPortException (gnu.io.NoSuchPortException)1 Test (org.junit.Test)1 EnoceanParameterAddress (org.opencean.core.address.EnoceanParameterAddress)1 DimmerOnOffProfile (org.openhab.binding.enocean.internal.profiles.DimmerOnOffProfile)1 Profile (org.openhab.binding.enocean.internal.profiles.Profile)1 RollershutterProfile (org.openhab.binding.enocean.internal.profiles.RollershutterProfile)1 StandardProfile (org.openhab.binding.enocean.internal.profiles.StandardProfile)1 SwitchOnOffProfile (org.openhab.binding.enocean.internal.profiles.SwitchOnOffProfile)1 WindowHandleProfile (org.openhab.binding.enocean.internal.profiles.WindowHandleProfile)1 EventPublisher (org.openhab.core.events.EventPublisher)1 Item (org.openhab.core.items.Item)1 DimmerItem (org.openhab.core.library.items.DimmerItem)1 RollershutterItem (org.openhab.core.library.items.RollershutterItem)1 StringItem (org.openhab.core.library.items.StringItem)1 SwitchItem (org.openhab.core.library.items.SwitchItem)1 ConfigurationException (org.osgi.service.cm.ConfigurationException)1