forked from home-assistant/intents
-
Notifications
You must be signed in to change notification settings - Fork 0
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
6 changed files
with
99 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,42 @@ | ||
language: sr | ||
areas: | ||
- name: Kitchen | ||
- name: "купатил(о|у)" | ||
id: bathroom | ||
- name: "спаваћ(а|ој) соб(а|и)" | ||
id: bedroom | ||
- name: "офис | канцеларија" | ||
id: office | ||
- name: "радн(а|ој) соб(а|и)" | ||
id: study | ||
- name: "терас(а|и) | балкон(у) | лођ(а|и)" | ||
id: balcony | ||
- name: "ормар(у) | плакар(у)" | ||
id: closet | ||
- name: "улаз(у) | предсобљ(е|у) | прецобљ(е|у)" | ||
id: entrance | ||
- name: "ходник(у) | пролаз(у)" | ||
id: hallway | ||
- name: "шпаиз(у) | шпјз(у) | остав(а|и)" | ||
id: pantry | ||
- name: "гардероб(и|а|ер|еру)" | ||
id: wardrobe | ||
- name: "веце(у) | вц(у)" | ||
id: wc | ||
- name: "степенице | степеништ(е|у)" | ||
id: staircase | ||
- name: "Кухињ(а|и)" | ||
id: kitchen | ||
- name: Living Room | ||
- name: "дневн(а|ој) соб(а|и)" | ||
id: living_room | ||
- name: Bedroom | ||
id: bedroom | ||
- name: Garage | ||
- name: "гараж(а|и)" | ||
id: garage | ||
entities: | ||
- name: Bedroom Lamp | ||
- name: "ноћн(а|у|е) ламп(а|у|е)" | ||
id: light.bedroom_lamp | ||
area: bedroom | ||
- name: Kitchen Switch | ||
- name: "кухињски прекидач" | ||
id: switch.kitchen | ||
area: kitchen | ||
- name: Ceiling Fan | ||
- name: "(плафонски) вентилатор (на плафону)" | ||
id: fan.ceiling | ||
area: living_room |
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,39 @@ | ||
language: sr | ||
tests: | ||
- sentences: [] | ||
intent: | ||
name: HassLightSet | ||
slots: {} | ||
# brightness | ||
- sentences: | ||
- "сетуј ноћну лампу на 50%" | ||
- "подеси ноћну лампу на 50 посто" | ||
- "подеси ноћну лампу на 50% светлине" | ||
- "намести ноћну лампу на 50% снаге" | ||
- "постави осветљење ноћне лампе на 50 процената" | ||
intent: | ||
name: HassLightSet | ||
slots: | ||
brightness_pct: 50 | ||
name: light.bedroom_lamp | ||
- sentences: | ||
- "постави осветљење у спаваћој соби на 50%" | ||
- "подеси осветљење у спаваћој соби на 50%" | ||
- "сетуј светло у спаваћој соби на 50%" | ||
intent: | ||
name: HassLightSet | ||
slots: | ||
brightness_pct: 50 | ||
area: bedroom | ||
# color | ||
- sentences: | ||
- "подеси ноћну лампу на плаву боју" | ||
- "постави боју ноћне лампе на плаву" | ||
intent: | ||
name: HassLightSet | ||
slots: | ||
color: blue | ||
name: light.bedroom_lamp | ||
- sentences: | ||
- "сетуј боју светла у дневној соби на зелено" | ||
intent: | ||
name: HassLightSet | ||
slots: | ||
color: green | ||
area: living_room |
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,10 @@ | ||
language: sr | ||
tests: | ||
- sentences: [] | ||
intent: | ||
name: HassTurnOff | ||
slots: {} | ||
- sentences: | ||
- "угаси сва светла у кухињи" | ||
- "угаси светло у кухињи" | ||
intent: | ||
name: "HassTurnOff" | ||
slots: | ||
area: "kitchen" | ||
domain: "light" |
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,9 @@ | ||
language: sr | ||
tests: | ||
- sentences: [] | ||
intent: | ||
name: HassTurnOn | ||
slots: {} | ||
- sentences: | ||
- "Упали светло у дневној соби" | ||
- "Упали сва светла у кухињи" | ||
- "Укључи светло у ходнику" | ||
intent: | ||
name: HassTurnOn | ||
slots: {} |