Skip to content

Commit f2e4492

Browse files
ccutrerJ-N-KTrinitus01
authored
[amazonechocontrol] Import SmartHomeJ fork (openhab#17935)
Both forks have diverged a reasonable amount. Signed-off-by: Cody Cutrer <[email protected]> Co-authored-by: Jan N. Klug <[email protected]> Co-authored-by: Tom Blum <[email protected]>
1 parent 64eeeae commit f2e4492

File tree

244 files changed

+12724
-9540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

244 files changed

+12724
-9540
lines changed

bundles/org.openhab.binding.amazonechocontrol/NOTICE

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ https://www.eclipse.org/legal/epl-2.0/.
1111
== Source Code
1212

1313
https://github.com/openhab/openhab-addons
14+
15+
Parts of this code have been forked from https://github.com/smarthomej/addons

bundles/org.openhab.binding.amazonechocontrol/README.md

+318-193
Large diffs are not rendered by default.

bundles/org.openhab.binding.amazonechocontrol/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
<version>1.1.6.RELEASE</version>
2222
<scope>compile</scope>
2323
</dependency>
24+
<dependency>
25+
<groupId>org.apache.velocity</groupId>
26+
<artifactId>velocity-engine-core</artifactId>
27+
<version>2.3</version>
28+
<scope>provided</scope>
29+
</dependency>
2430
</dependencies>
2531

2632
</project>

bundles/org.openhab.binding.amazonechocontrol/src/main/feature/feature.xml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
<feature name="openhab-binding-amazonechocontrol" description="Amazon Echo Control Binding" version="${project.version}">
66
<feature>openhab-runtime-base</feature>
7+
<bundle dependency="true">mvn:org.apache.velocity/velocity-engine-core/2.3</bundle>
78
<bundle start-level="80">mvn:org.openhab.addons.bundles/org.openhab.binding.amazonechocontrol/${project.version}</bundle>
89
</feature>
910
</features>

bundles/org.openhab.binding.amazonechocontrol/src/main/java/org/openhab/binding/amazonechocontrol/internal/AccountHandlerConfig.java

+1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ public class AccountHandlerConfig {
2525
public int discoverSmartHome = 0;
2626
public int pollingIntervalSmartHomeAlexa = 60;
2727
public int pollingIntervalSmartSkills = 120;
28+
public int activityRequestDelay = 10;
2829
}

0 commit comments

Comments
 (0)