-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
101 lines (92 loc) · 2.6 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
site_name: eq3btsmart
site_url: https://eq3btsmart.github.io/
site_description: "Python library to communicate with eQ-3 Bluetooth Smart Thermostat devices"
site_author: "Lennard Beers"
copyright: "Copyright © 2024 Lennard Beers"
repo_url: https://github.com/eulemitkeule/eq3btsmart/
repo_name: EuleMitKeule/eq3btsmart
theme:
icon:
repo: fontawesome/brands/github
name: "material"
palette:
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: indigo
accent: orange
toggle:
icon: "material/weather-sunny"
name: Switch to light mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: indigo
accent: orange
toggle:
icon: "material/weather-night"
name: Switch to dark mode
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.tracking
- navigation.sections
- navigation.path
- navigation.indexes
- toc.follow
- navigation.top
extra:
generator: false
social:
- icon: fontawesome/brands/github
name: View on GitHub
link: https://github.com/eulemitkeule/eq3btsmart/
- icon: fontawesome/brands/discord
name: Message me on Discord
link: https://discord.com/users/434825782268002304
plugins:
- search:
- privacy:
- gen-files:
scripts:
- scripts/generate_reference.py
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
show_if_no_docstring: true
inherited_members: true
members_order: source
separate_signature: true
unwrap_annotated: true
filters:
- '!^_'
merge_init_into_class: false
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
markdown_extensions:
- toc:
permalink: "#"
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
nav:
- Introduction: index.md
- Getting started:
- Installation: getting_started/installation.md
- Pairing: getting_started/pairing.md
- Basic Usage: getting_started/basic_usage.md
- Registering Callbacks: getting_started/registering_callbacks.md
- Exceptions: getting_started/exceptions.md
- Reference:
- thermostat: reference/thermostat.md
- models: reference/models.md
- exceptions: reference/exceptions.md
- const: reference/const.md
- About:
- Credits: about/credits.md
- License: about/license.md
- Sponsor: about/sponsor.md