]> git.basschouten.com Git - openhab-addons.git/commit
[touchwand] Touchwand Binding initial contribution - migration to OH3 (#8754)
authorRoie Geron <roie.geron@gmail.com>
Sun, 18 Oct 2020 00:19:40 +0000 (03:19 +0300)
committerGitHub <noreply@github.com>
Sun, 18 Oct 2020 00:19:40 +0000 (17:19 -0700)
commit7cd5510a727d1c3c7333665775127a48b25cbf02
tree39396e19d22b9e84807eb4efba833e1d7a010309
parentde6390501b52cbb512c762e00771b080c31e6293
[touchwand] Touchwand Binding initial contribution  - migration to OH3  (#8754)

* initial migration to OH 3

Signed-off-by: Roie Geron <roie.geron@gmail.com>
33 files changed:
CODEOWNERS
bundles/org.openhab.binding.touchwand/NOTICE [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/README.md [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/pom.xml [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/feature/feature.xml [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandBaseUnitHandler.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandBindingConstants.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandBridgeHandler.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandDimmerHandler.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandHandlerFactory.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandRestClient.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandShutterHandler.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandSwitchHandler.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandUnitStatusUpdateListener.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandUnitUpdateListener.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandWallControllerHandler.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/TouchWandWebSockets.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/config/TouchwandBridgeConfiguration.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/discovery/TouchWandControllerDiscoveryService.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/discovery/TouchWandUnitDiscoveryService.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/dto/Csc.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/dto/CurrStatus.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/dto/TouchWandShutterSwitchUnitData.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/dto/TouchWandUnitData.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/dto/TouchWandUnitDataWallController.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/java/org/openhab/binding/touchwand/internal/dto/TouchWandUnitFromJson.java [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/resources/OH-INF/binding/binding.xml [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/resources/OH-INF/thing/bridge.xml [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/resources/OH-INF/thing/dimmer.xml [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/resources/OH-INF/thing/shutter.xml [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/resources/OH-INF/thing/switch.xml [new file with mode: 0644]
bundles/org.openhab.binding.touchwand/src/main/resources/OH-INF/thing/wallcontroller.xml [new file with mode: 0644]
bundles/pom.xml