-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from raetha/devel
1.1
- Loading branch information
Showing
12 changed files
with
689 additions
and
73 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# WyzeSense2MQTT files | ||
config.yaml | ||
sensors.yaml | ||
config/ | ||
logs/ | ||
|
||
# Byte-compiled / optimized / DLL files | ||
|
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
1.0.2 | ||
1.1 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# Pip requirements file | ||
# | ||
# WyseSensePy | ||
six | ||
# wyzesense2mqtt requirements | ||
paho-mqtt | ||
|
||
# WyzeSense2MQTT requirements | ||
paho_mqtt | ||
retrying | ||
pyyaml | ||
wyzesense | ||
# bridge_tool_cli requirements | ||
# Now includes custom WyzeSensePy library to resolve assertion error, issues #12, #17 | ||
#wyzesense | ||
|
||
# Bridge Tool CLI Requirements | ||
docopt |
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
File renamed without changes.
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,20 @@ | ||
'AAAAAAAA': | ||
class: door | ||
name: Entry Door | ||
invert_state: false | ||
'BBBBBBBB': | ||
class: window | ||
name: Office Window | ||
invert_state: false | ||
'CCCCCCCC': | ||
class: opening | ||
name: Kitchen Fridge | ||
invert_state: false | ||
'DDDDDDDD': | ||
class: motion | ||
name: Hallway Motion | ||
invert_state: false | ||
'EEEEEEEE': | ||
class: moisture | ||
name: Basement Moisture | ||
invert_state: true |
Oops, something went wrong.