-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
63 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"pluginAlias": "GogoGate2", | ||
"pluginType": "platform", | ||
"singular": false, | ||
"headerDisplay": "This plugin is provided by [nicoduj](https://github.com/nicoduj/)", | ||
"footerDisplay": "Support via [paypal](https://www.paypal.me/nicoduj/2.50).", | ||
"schema": { | ||
"type": "object", | ||
"required": ["name","gogogateIP","username","password"], | ||
"properties": { | ||
"name": { | ||
"title": "Name", | ||
"type": "string" | ||
}, | ||
"gogogateIP": { | ||
"title": "IP Address of your gogogate (must be fixed)", | ||
"type": "string", | ||
"format": "ipv4" | ||
}, | ||
"username": { | ||
"title": "Gogogate account login", | ||
"type": "string" | ||
}, | ||
"password": { | ||
"title": "Gogogate account password", | ||
"type": "string" | ||
}, | ||
"refreshTimer": { | ||
"title": "Refresh timer", | ||
"type": "integer", | ||
"default" : 0, | ||
"minimum": 30, | ||
"maximum": 600, | ||
"description" : "Enable refresh of doors state every X seconds, for automation purpose if you need to activate something else based on a state change of a door by another means than homekit. Be aware it might make you gogoggate smokes since the plugin will ask its status very often :)" | ||
}, | ||
"maxWaitTimeForOperation": { | ||
"title": "Maximum wait time during operation", | ||
"type": "integer", | ||
"default": 30, | ||
"minimum": 30, | ||
"maximum": 90, | ||
"description" : "Set the maximum time that we wait for door operation to complete. When elapsed, check the current State again and updates accordingly." | ||
}, | ||
"refreshTimerDuringOperation": { | ||
"title": "Refresh timer during operation", | ||
"type": "integer", | ||
"default": 10, | ||
"minimum": 2, | ||
"maximum": 15, | ||
"description": "Set the refresh timer during operation in progress to detect the end of the operation." | ||
} | ||
} | ||
}, | ||
"form": null, | ||
"display": null | ||
} |
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