You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/components/bluetooth_proxy.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,9 +45,12 @@ please search for it in the [Home Assistant Integrations](https://www.home-assis
45
45
46
46
```yaml
47
47
bluetooth_proxy:
48
+
# Active connections are now enabled by default
49
+
# To disable active connections (previous default behavior), use:
50
+
# active: false
48
51
```
49
52
50
-
- **active** (*Optional*, boolean): Enables proxying active connections. Defaults to `false`.
53
+
-**active** (*Optional*, boolean): Enables proxying active connections. Defaults to `true`.
51
54
-**cache_services** (*Optional*, boolean): Enables caching GATT services in NVS flash storage which significantly speeds up active connections. Defaults to `true` when using the ESP-IDF framework.
52
55
-**connection_slots** (*Optional*, int): The maximum number of BLE connection slots to use.
53
56
Each configured slot consumes ~1KB of RAM. This can only be adjusted when using
Valid values range from ``1`` (lowest quality, highest compression) to ``100`` (best quality, least compression). Defaults: ``80``.
37
+
38
+
- **buffer_size** (*Optional*, int): Initial size of the output buffer in bytes, used to store the JPEG-encoded image data.
39
+
- Minimum: 1024 bytes
40
+
- Maximum: 2097152 bytes (2 MB), sufficient for ESP32-S3 and ESP32-P4
41
+
- Default: ``4096``.
42
+
43
+
- **buffer_expand_size** (*Optional*, int): Number of bytes to expand the output buffer if it is too small to hold the JPEG-encoded image. A value of ``0`` disables expansion.
44
+
- Maximum: 2097152 bytes (2 MB), sufficient for ESP32-S3 and ESP32-P4
Copy file name to clipboardExpand all lines: content/components/display/inkplate.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ mcp23017:
24
24
address: 0x20
25
25
26
26
display:
27
-
- platform: inkplate6
27
+
- platform: inkplate
28
28
id: inkplate_display
29
29
greyscale: false
30
30
partial_updating: false
@@ -78,6 +78,7 @@ It just ignores the function call in that case.
78
78
79
79
- **greyscale** (*Optional*, boolean): Makes the screen display 3 bit colors. Defaults to `false`
80
80
- **partial_updating** (*Optional*, boolean): Makes the screen update partially, which is faster, but leaves burnin. Defaults to `false`
81
+
- **custom_waveform** (*Optional*, int): Sets a custom predefined waveform for the display. Accepts values from 1 to 4. Useful if the greyscale of the image seems washed. **Inkplate10 ONLY**. Defaults to `0`
81
82
- **full_update_every** (*Optional*, int): When partial updating is enabled, forces a full screen update after chosen number of updates. Defaults to `10`
82
83
- **transform** (*Optional*): Transform the display presentation.
83
84
@@ -240,7 +241,7 @@ font:
240
241
size: 48
241
242
242
243
display:
243
-
- platform: inkplate6
244
+
- platform: inkplate
244
245
id: inkplate_display
245
246
greyscale: false
246
247
partial_updating: false
@@ -351,7 +352,7 @@ pca6416a:
351
352
address: 0x20
352
353
353
354
display:
354
-
- platform: inkplate6
355
+
- platform: inkplate
355
356
id: inkplate_display
356
357
greyscale: true
357
358
partial_updating: false
@@ -395,7 +396,7 @@ pca6416a:
395
396
address: 0x20
396
397
397
398
display:
398
-
- platform: inkplate5
399
+
- platform: inkplate
399
400
id: inkplate_display
400
401
greyscale: true
401
402
partial_updating: false
@@ -485,7 +486,7 @@ sensor:
485
486
- multiply: 2 # Compensate for voltage divider (1:2 ratio)
0 commit comments