-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
d027de4
commit 47d4b0e
Showing
22 changed files
with
922 additions
and
83 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,14 @@ | ||
{ | ||
"0.0.1": { | ||
"en": "Initial release", | ||
"de": "Initiales Release" | ||
"en": "Initial alpha release", | ||
"de": "Initiales Alpha-Release" | ||
}, | ||
"0.0.2": { | ||
"en": "New device images", | ||
"de": "Neue Gerätebilder" | ||
}, | ||
"0.0.3": { | ||
"en": "Beta updates", | ||
"de": "Neue Gerätebilder" | ||
} | ||
} |
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
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
135 changes: 135 additions & 0 deletions
135
.homeycompose/flow/triggers/location_left_or_reached.json
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,135 @@ | ||
{ | ||
"title": { | ||
"en": "Location has been left or reached", | ||
"de": "Standort wurde verlassen oder erreicht", | ||
"nl": "Locatie is verlaten of bereikt" | ||
}, | ||
"titleFormatted": { | ||
"en": "Location [[location]] has been [[action]] with tolerance [[distance]] m", | ||
"de": "Standort [[location]] wurde [[action]] mit Toleranz [[distance]] m", | ||
"nl": "Locatie [[location]] is [[action]] met tolerantie [[distance]] m" | ||
}, | ||
"hint": { | ||
"en": "The flow is triggered when the specified location (specified in device settings) ais reached or left. The tolerance specifies the radius of the geofence area in meters.", | ||
"de": "Der Flow wird ausgelöst, wenn der angebene Standort (angegben in den Geräteeinstellungen) erreicht oder verlassen werden. Die Toleranz gibt Radius des Geofence-Bereichs in Metern an.", | ||
"nl": "De Flow wordt geactiveerd wanneer de opgegeven locatie (opgegeven in de apparaatinstellingen) wordt bereikt of verlaten. De tolerantie specificeert de straal van het geofencegebied in meters." | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "location_latitude", | ||
"type": "number", | ||
"title": { | ||
"en": "Latitude", | ||
"de": "Breitengrad", | ||
"nl": "Breedtegraad" | ||
} | ||
}, | ||
{ | ||
"name": "location_longitude", | ||
"type": "number", | ||
"title": { | ||
"en": "Longitude", | ||
"de": "Längengrad", | ||
"nl": "Lengtegraad" | ||
} | ||
}, | ||
{ | ||
"name": "location_name", | ||
"type": "string", | ||
"title": { | ||
"en": "Location name", | ||
"de": "Standortname", | ||
"nl": "Plaats naam" | ||
} | ||
}, | ||
{ | ||
"name": "location_street", | ||
"type": "string", | ||
"title": { | ||
"en": "Street", | ||
"de": "Straße", | ||
"nl": "Straat" | ||
} | ||
}, | ||
{ | ||
"name": "location_city", | ||
"type": "string", | ||
"title": { | ||
"en": "City", | ||
"de": "Ort", | ||
"nl": "Plaats" | ||
} | ||
}, | ||
{ | ||
"name": "location_postcode", | ||
"type": "string", | ||
"title": { | ||
"en": "Postcode", | ||
"de": "Postleitzahl", | ||
"nl": "postcode" | ||
} | ||
}, | ||
{ | ||
"name": "location_country", | ||
"type": "string", | ||
"title": { | ||
"en": "Country", | ||
"de": "Land", | ||
"nl": "Land" | ||
} | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "action", | ||
"type": "dropdown", | ||
"values": [ | ||
{ | ||
"id": "reached", | ||
"title": { | ||
"en": "reached", | ||
"de": "erreicht", | ||
"nl": "bereikt" | ||
} | ||
}, | ||
{ | ||
"id": "left", | ||
"title": { | ||
"en": "left", | ||
"de": "verlassen", | ||
"nl": "verlaat" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "location", | ||
"type": "autocomplete", | ||
"title": { | ||
"en": "Location", | ||
"de": "Standort", | ||
"nl": "Plaats" | ||
} | ||
}, | ||
{ | ||
"name": "distance", | ||
"type": "number", | ||
"required": false, | ||
"title": { | ||
"en": "Distance (m)", | ||
"de": "Entfernung (m)", | ||
"nl": "Afstand (m)" | ||
}, | ||
"placeholder": { | ||
"en": "Default: 100m", | ||
"de": "Standard: 100m", | ||
"nl": "Standaard: 100m" | ||
} | ||
}, | ||
{ | ||
"name": "device", | ||
"type": "device", | ||
"filter": "driver_id=location" | ||
} | ||
] | ||
} |
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
Oops, something went wrong.