-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
240 lines (221 loc) · 7.53 KB
/
mkdocs.yml
File metadata and controls
240 lines (221 loc) · 7.53 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
site_name: lifx-async
site_description: A modern, type-safe, async Python library for controlling LIFX lights
site_author: Avi Miller <me@dje.li>
site_url: https://djelibeybi.github.io/lifx-async
repo_name: Djelibeybi/lifx-async
repo_url: https://github.com/Djelibeybi/lifx-async
edit_uri: edit/main/docs/
theme:
name: material
palette:
# Light mode
- scheme: default
primary: indigo
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- scheme: slate
primary: indigo
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.path
- navigation.indexes
- navigation.top
- toc.follow
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- content.tabs.link
icon:
repo: fontawesome/brands/github
logo: material/lightbulb
favicon: assets/favicon.png
plugins:
- search:
lang: en
- mkdocstrings:
handlers:
python:
paths: [src] # Add source path for imports
# Load object inventories to enable cross-references to other projects.
inventories:
- https://docs.python.org/3/objects.inv
options:
docstring_options:
ignore_init_summary: true
# Docstring parsing
docstring_style: google
docstring_section_style: spacy
# Headings and structure
show_root_heading: true
show_root_full_path: false
show_root_members_full_path: false
show_object_full_path: false
show_category_heading: true
heading_level: 2
# Signatures
show_signature: true
show_signature_annotations: true
separate_signature: true
signature_crossrefs: true
# Members
members_order: source
group_by_category: true
show_if_no_docstring: false
show_docstring_attributes: true
show_docstring_functions: true
show_docstring_classes: true
show_docstring_modules: true
# Source code
show_source: true
# Inheritance
show_bases: true
show_inheritance_diagram: false
# Special members
merge_init_into_class: true
show_labels: true
# Additional improvements
annotations_path: brief
line_length: 80
show_symbol_type_heading: true
show_symbol_type_toc: true
summary: true
- git-revision-date-localized:
enable_creation_date: true
- llmstxt:
markdown_description: |
lifx-async is a modern, type-safe, async Python library for controlling LIFX smart devices
over the local network. Built with Python's built-in asyncio for async/await patterns and
features auto-generated protocol structures from a YAML specification.
Key features:
- Zero runtime dependencies
- Full async/await support with asyncio
- Type-safe with strict Pyright validation
- Auto-generated protocol from official LIFX specification
- Supports all LIFX device types: Light, HevLight, InfraredLight, MultiZoneLight, and TileDevice
- High-level API with device discovery and batch operations
- Concurrent request handling with connection pooling
sections:
Getting Started:
- getting-started/installation.md: Installation instructions and requirements
- getting-started/quickstart.md: Quick start guide with basic examples
- getting-started/themes.md: Using predefined color themes
- getting-started/effects.md: Light effects and animations
User Guide:
- user-guide/themes.md: Working with color themes
- user-guide/ceiling-lights.md: Controlling LIFX Ceiling uplight and downlight components
- user-guide/animation.md: High-frequency animation for real-time effects
- user-guide/advanced-usage.md: Advanced usage patterns and best practices
- user-guide/effects-custom.md: Creating custom light effects
- user-guide/troubleshooting.md: Common issues and solutions
- user-guide/effects-troubleshooting.md: Effects-specific troubleshooting
- user-guide/protocol-deep-dive.md: Understanding the LIFX protocol
Architecture:
- architecture/overview.md: System architecture and design
- architecture/effects-architecture.md: Effects system architecture
API Reference:
- api/index.md: API reference overview
- api/high-level.md: High-level discovery and batch operations API
- api/themes.md: Theme system API
- api/effects.md: Effects API
- api/animation.md: Animation module for high-frequency frame delivery
- api/colors.md: Color utilities and HSBK conversion
- api/devices.md: Device classes and capabilities
- api/network.md: Network layer components
- api/protocol.md: Protocol layer and packet structures
- api/exceptions.md: Exception hierarchy
Migration:
- migration/effect-api-changes.md: Effect API breaking changes and migration guide
Additional Resources:
- faq.md: Frequently asked questions
- changelog.md: Version history and release notes
full_output: llms-full.txt
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- md_in_html
- tables
- footnotes
- def_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- toc:
permalink: true
toc_depth: 3
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- Themes: getting-started/themes.md
- Light Effects: getting-started/effects.md
- User Guide:
- Themes: user-guide/themes.md
- Ceiling Lights: user-guide/ceiling-lights.md
- Animation: user-guide/animation.md
- Advanced Usage: user-guide/advanced-usage.md
- Custom Effects: user-guide/effects-custom.md
- Troubleshooting: user-guide/troubleshooting.md
- Effects Troubleshooting: user-guide/effects-troubleshooting.md
- Protocol Deep Dive: user-guide/protocol-deep-dive.md
- Architecture:
- Overview: architecture/overview.md
- Effects System: architecture/effects-architecture.md
- API Reference:
- Overview: api/index.md
- High-Level API: api/high-level.md
- Themes: api/themes.md
- Effects: api/effects.md
- Animation: api/animation.md
- Color Utilities: api/colors.md
- Device Classes: api/devices.md
- Network Layer: api/network.md
- Protocol Layer: api/protocol.md
- Exceptions: api/exceptions.md
- Migration:
- Effect API Changes: migration/effect-api-changes.md
- FAQ: faq.md
- Changelog: changelog.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Djelibeybi/lifx-async
- icon: fontawesome/brands/python
link: https://pypi.org/project/lifx-async/
version:
provider: mike
extra_css:
- stylesheets/extra.css
copyright: Copyright © 2025 Avi Miller