1description: >
2    Implement to provide control of a voltage regulator.  Objects implementing
3    Control.VoltageRegulatorControl allow for fine grained control of a given
4    voltage regulator channel, and allows external entities to control Voltage
5    Regulator devices.
6
7properties:
8    - name: Voltage
9      type: double
10      description: >
11          The current voltage setting for the voltage regulator.
12    - name: MaxValue
13      type: double
14      flags:
15          - readonly
16      description: >
17          The Maximum supported voltage.
18    - name: MinValue
19      type: double
20      flags:
21          - readonly
22      description: >
23          The Minimum supported voltage.
24    - name: Resolution
25      type: double
26      flags:
27          - readonly
28      description: >
29          The minimum step size supported by this voltage interface.