Skip to content

Commit

Permalink
refs #84 * Added EEP for Eltako FTKE
Browse files Browse the repository at this point in the history
  • Loading branch information
fruggy83 committed Jan 11, 2020
1 parent 4ae2b00 commit e6de92e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@
import org.openhab.binding.enocean.internal.eep.F6_05.F6_05_02;
import org.openhab.binding.enocean.internal.eep.F6_10.F6_10_00;
import org.openhab.binding.enocean.internal.eep.F6_10.F6_10_00_EltakoFPE;
import org.openhab.binding.enocean.internal.eep.F6_10.F6_10_00_EltakoFTKE;
import org.openhab.binding.enocean.internal.eep.F6_10.F6_10_01;
import org.openhab.binding.enocean.internal.eep.Generic.Generic4BS;
import org.openhab.binding.enocean.internal.eep.Generic.GenericRPS;
Expand Down Expand Up @@ -200,6 +201,7 @@ public enum EEPType {
ContactAndSwitch02(RORG._4BS, 0x14, 0x01, false, A5_14_01.class, THING_TYPE_CONTACT, CHANNEL_BATTERY_VOLTAGE,
CHANNEL_CONTACT),
ContactAndSwitch03(RORG.RPS, 0x10, 0x00, false, "EltakoFPE", ELTAKOID, F6_10_00_EltakoFPE.class, THING_TYPE_CONTACT, CHANNEL_CONTACT),
ContactAndSwitch04(RORG.RPS, 0x10, 0x00, false, "EltakoFTKE", ELTAKOID, F6_10_00_EltakoFTKE.class, THING_TYPE_CONTACT, CHANNEL_CONTACT),

SmokeDetection(RORG.RPS, 0x05, 0x02, false, F6_05_02.class, null, CHANNEL_SMOKDEDETECTION, CHANNEL_BATTERYLOW),

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/**
* Copyright (c) 2010-2020 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.openhab.binding.enocean.internal.eep.F6_10;

import org.openhab.binding.enocean.internal.messages.ERP1Message;

/**
*
* @author Daniel Weber - Initial contribution
*/
public class F6_10_00_EltakoFTKE extends F6_10_00 {

public F6_10_00_EltakoFTKE() {
super();
}

public F6_10_00_EltakoFTKE(ERP1Message packet) {
super(packet);
}
}
1 change: 1 addition & 0 deletions src/main/resources/ESH-INF/thing/Contact.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<option value="A5_14_01">A5-14-01 Single input contact, supply voltage monitor</option>
<option value="A5_14_01_ELTAKO">Eltako battery status</option>
<option value="F6_10_00_EltakoFPE">F6-10-00 Eltako FPE-X</option>
<option value="F6_10_00_EltakoFTKE">F6-10-00 Eltako FTKE</option>
<option value="D0_06_00">D0-06 signal message for battery status</option>
</options>
<default>D5_00_01</default>
Expand Down

0 comments on commit e6de92e

Please sign in to comment.