forked from J-N-K/openhab-addons
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nikohomecontrol] Add shutter invert and fix connection with NHC does…
… not recover (openhab#10281) * Ignore devices.changed event. Signed-off-by: Mark Herwege <[email protected]> * Null warnings cleanup. Signed-off-by: Mark Herwege <[email protected]> * Remove @NonNullByDefault({}) Signed-off-by: Mark Herwege <[email protected]> * Shorten logger messages. Signed-off-by: Mark Herwege <[email protected]> * Introduce rollershutter invert flag. Signed-off-by: Mark Herwege <[email protected]> * Add null annotations. Signed-off-by: Mark Herwege <[email protected]> * Connection resilience improvements and log level cleanup. Signed-off-by: Mark Herwege <[email protected]> * Update bundles/org.openhab.binding.nikohomecontrol/src/main/resources/OH-INF/thing/thing-types.xml Signed-off-by: Fabian Wolter <[email protected]> Co-authored-by: Fabian Wolter <[email protected]>
- Loading branch information
1 parent
ea9eabf
commit 3d912d4
Showing
38 changed files
with
456 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...rg/openhab/binding/nikohomecontrol/internal/handler/NikoHomeControlActionBlindConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* Copyright (c) 2010-2021 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.nikohomecontrol.internal.handler; | ||
|
||
import org.eclipse.jdt.annotation.NonNullByDefault; | ||
|
||
/** | ||
* {@link NikoHomeControlActionBlindConfig} is the config class for Niko Home Control Blind Actions. | ||
* | ||
* @author Mark Herwege - Initial Contribution | ||
*/ | ||
@NonNullByDefault | ||
public class NikoHomeControlActionBlindConfig extends NikoHomeControlActionConfig { | ||
public boolean invert; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.