]> git.basschouten.com Git - openhab-addons.git/commit
[freeathomesystem] Initial contribution (#13703)
authorAndras Uhrin <47272385+andrasU@users.noreply.github.com>
Sat, 20 Apr 2024 16:14:54 +0000 (18:14 +0200)
committerGitHub <noreply@github.com>
Sat, 20 Apr 2024 16:14:54 +0000 (18:14 +0200)
commitf466c88406c506baf75ddccd9df597cf4aa3d964
tree38935a1097486ac897a067b33d677c96362c45e7
parent6db28f5b4688cded757c1af870c12e118e4e8e21
[freeathomesystem] Initial contribution (#13703)

Signed-off-by: Andras Uhrin <andras.uhrin@gmail.com>
38 files changed:
CODEOWNERS
bom/openhab-addons/pom.xml
bundles/org.openhab.binding.freeathomesystem/NOTICE [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/README.md [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/pom.xml [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/feature/feature.xml [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/FreeAtHomeSystemBindingConstants.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/FreeAtHomeSystemDiscoveryService.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/FreeAtHomeSystemHandlerFactory.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/configuration/FreeAtHomeBridgeHandlerConfiguration.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/configuration/FreeAtHomeDeviceHandlerConfiguration.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/datamodel/FreeAtHomeDatapoint.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/datamodel/FreeAtHomeDatapointGroup.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/datamodel/FreeAtHomeDeviceChannel.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/datamodel/FreeAtHomeDeviceDescription.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/handler/FreeAtHomeBridgeHandler.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/handler/FreeAtHomeDeviceHandler.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/handler/FreeAtHomeDeviceStateListener.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/type/FreeAtHomeChannelTypeProvider.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/type/FreeAtHomeChannelTypeProviderImpl.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/type/FreeAtHomeThingTypeProvider.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/type/FreeAtHomeThingTypeProviderImpl.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/util/FidTranslationUtils.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/util/FreeAtHomeGeneralException.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/util/FreeAtHomeHttpCommunicationException.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/util/PIdContainerClass.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/util/PidTranslationUtils.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/util/UidUtils.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/valuestateconverter/BinaryValueStateConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/valuestateconverter/BooleanValueStateConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/valuestateconverter/DecimalValueStateConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/valuestateconverter/ShuttercontrolValueStateConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/java/org/openhab/binding/freeathomesystem/internal/valuestateconverter/ValueStateConverter.java [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/resources/OH-INF/addon/addon.xml [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/resources/OH-INF/i18n/freeathomesystem.properties [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/resources/OH-INF/thing/bridge-type.xml [new file with mode: 0644]
bundles/org.openhab.binding.freeathomesystem/src/main/resources/OH-INF/thing/thing-type.xml [new file with mode: 0644]
bundles/pom.xml