Skip to content

Commit a1e51cc

Browse files
authored
Update style and fix formatting (home-assistant#5040)
* Update style and fix formatting * Add platform * Be more precise
1 parent 3f6f8c4 commit a1e51cc

File tree

1 file changed

+26
-27
lines changed

1 file changed

+26
-27
lines changed

source/_components/calendar.google.markdown

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ha_release: 0.33
1414
---
1515

1616

17-
This platform allows you to connect to your [Google Calendars](https://calendar.google.com) and generate binary sensors. The sensors created can trigger based on any event on the calendar or only for matching events. When you first setup this component it will generate a new configuration file *google_calendars.yaml* that will contain information about all of the calendars you can see.
17+
The `google` calendar platform allows you to connect to your [Google Calendars](https://calendar.google.com) and generate binary sensors. The sensors created can trigger based on any event on the calendar or only for matching events. When you first setup this component it will generate a new configuration file `google_calendars.yaml` that will contain information about all of the calendars you can see.
1818

1919
### {% linkable_title Prerequisites %}
2020

@@ -27,7 +27,7 @@ Generate a Client ID and Client Secret on [Google Developers Console](https://co
2727
1. Save this page. You don't have to fill out anything else there.
2828
1. Click 'Create credentials' -> OAuth client ID.
2929
1. Set the Application type to 'Other' and give this credential set a name then click Create.
30-
1. Save the client ID and secret as you will need to put these in your configuration.yaml file.
30+
1. Save the client ID and secret as you will need to put these in your `configuration.yaml` file.
3131
1. Click on "Library", search for "Google Calendar API" and enable it.
3232

3333
### {% linkable_title Basic Setup %}
@@ -37,33 +37,43 @@ To integrate Google Calendar in Home Assistant, add the following section to you
3737
```yaml
3838
# Example configuration.yaml entry
3939
google:
40-
client_id: *Value_created_from_steps_above*
41-
client_secret: *Value_created_from_steps_above*
40+
client_id: YOUR_CLIENT_ID
41+
client_secret: YOUR_CLIENT_SECRET
4242
```
4343
44-
Configuration variables:
45-
46-
- **client_id** (*Required*): Use the value you generated in the Prerequisites stage.
47-
- **client_secret** (*Required*): Use the value you generated in the Prerequisites stage.
48-
- **track_new_calendar** (*Optional*): Will automatically generate a binary sensor when a new calendar is detected. The system scans for new calendars on startup. By default this is set to `True`.
44+
{% configuration %}
45+
client_id:
46+
description: Use the value you generated in the Prerequisites stage.
47+
required: true
48+
type: string
49+
minimum:
50+
description: Use the value you generated in the Prerequisites stage.
51+
required: true
52+
type: string
53+
track_new_calendar:
54+
description: Will automatically generate a binary sensor when a new calendar is detected. The system scans for new calendars only on startup.
55+
required: false
56+
type: boolean
57+
default: true
58+
{% endconfiguration %}
4959
5060
The next steps will require you to have Home Assistant running.
5161
5262
After you have it running complete the Google authentication that pops up. It will give you a URL and a code to enter. This will grant your Home Assistant service access to all the Google Calendars that the account you authenticate with can read. This is a Read-Only view of these calendars.
5363
54-
5564
### {% linkable_title Calendar Configuration %}
56-
Editing `google_calendars.yaml`
65+
66+
Editing the `google_calendars.yaml` file.
5767

5868
A basic entry for a single calendar looks like:
5969

6070
```yaml
61-
- cal_id: "***************************@group.calendar.google.com"
71+
- cal_id: "*****@group.calendar.google.com"
6272
entities:
6373
- device_id: test_everything
6474
name: Give me everything
6575
track: true
66-
- cal_id: "***************************@group.calendar.google.com"
76+
- cal_id: "*****@group.calendar.google.com"
6777
entities:
6878
- device_id: test_important
6979
name: Important Stuff
@@ -79,38 +89,27 @@ A basic entry for a single calendar looks like:
7989
Variables:
8090

8191
- **cal_id**: The Google generated unique id for this calendar. **DO NOT CHANGE**
82-
8392
- **entities**: Yes, you can have multiple sensors for a calendar!
84-
8593
- **device_id**: (*Required*): The name that all your automations/scripts will use to reference this device.
86-
8794
- **name**: (*Required*): What is the name of your sensor that you'll see in the frontend.
88-
8995
- **track**: (*Required*): Should we create a sensor `True` or ignore it `False`?
90-
9196
- **search**: (*Optional*): If set will only trigger for matched events.
92-
9397
- **offset**: (*Optional*): A set of characters that precede a number in the event title for designating a pre-trigger state change on the sensor. (Default: `!!`)
9498

9599
From this we will end up with the binary sensors `calendar.test_unimportant` and `calendar.test_important` which will toggle themselves on/off based on events on the same calendar that match the search value set for each. You'll also have a sensor `calendar.test_everything` that will not filter events out and always show the next event available.
96100

97101
But what if you only wanted it to toggle based on all events? Just leave out the *search* parameter.
98102

99-
**Note**: If you use a `#` sign for `search` then wrap the whole search term in quotes. Otherwise everything following the hash sign would be considered a YAML comment.
100-
103+
<p class='note warning'>
104+
If you use a `#` sign for `search` then wrap the whole search term in quotes. Otherwise everything following the hash sign would be considered a YAML comment.
105+
</p>
101106

102107
### {% linkable_title Sensor attributes %}
103108

104109
- **offset_reached**: If set in the event title and parsed out will be `on`/`off` once the offset in the title in minutes is reached. So the title `Very important meeting #Important !!-10` would trigger this attribute to be `on` 10 minutes before the event starts.
105-
106110
- **all_day**: `True`/`False` if this is an all day event. Will be `False` if there is no event found.
107-
108111
- **message**: The event title with the `search` and `offset` values extracted. So in the above example for **offset_reached** the **message** would be set to `Very important meeting`
109-
110112
- **description**: The event description.
111-
112113
- **location**: The event Location.
113-
114114
- **start_time**: Start time of event.
115-
116115
- **end_time**: End time of event.

0 commit comments

Comments
 (0)