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/esp_ldo.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,14 @@ component allows those regulators to be configured and enabled.
14
14
esp_ldo:
15
15
- channel: 3
16
16
voltage: 2.5V
17
+
- channel: 4 // example for sd activation on Guition JC-ESP32-P4-M3 dev board
18
+
voltage: 3.3V // GPIO45 on these boards can then do PWM on that power supply line on runtime (ledc)
17
19
```
18
20
19
21
## Configuration variables
20
22
21
23
- **channel** (**Required**, int): The channel number of the LDO regulator to configure. Only channels 3 and 4 are supported (1 and 2 are used internally by the chip.)
22
-
- **voltage** (**Required**, voltage): The desired output voltage - must be in the range 0.5V to 2.7V.
24
+
- **voltage** (**Required**, voltage): The desired output voltage - must be in the range 0.5V to 3.3V. Default is 2.7V. 3.3V in case LDO is used for SD-card slot power.
23
25
- **adjustable** (*Optional*, bool): If true, the output voltage can be adjusted at run-time. Defaults to false.
24
26
25
27
## `esp_ldo.voltage.adjust` Action
@@ -37,7 +39,7 @@ on_...:
37
39
### Configuration variables
38
40
39
41
- **id** (**Required**, [ID](#config-id)) The ID of the LDO to adjust.
40
-
- **voltage** (**Required**, voltage): The desired output voltage - must be in the range 0.5V to 2.7V.
42
+
- **voltage** (**Required**, voltage): The desired output voltage - must be in the range 0.5V to 3.3V. Defaults to 2.7V
0 commit comments