1# Copyright (c) 2024 Embeint Inc
2# SPDX-License-Identifier: Apache-2.0
3
4description: |
5  Composite fuel-gauge constructed from analog input values
6
7compatible: "zephyr,fuel-gauge-composite"
8
9include: [fuel-gauge.yaml, battery.yaml]
10
11properties:
12  battery-voltage:
13    type: phandle
14    required: true
15    description: |
16      Device to read battery voltage from.
17
18      Device must implement the sensor API and provide the
19      `SENSOR_CHAN_VOLTAGE` channel.
20
21  battery-current:
22    type: phandle
23    description: |
24      Device to read battery current from.
25
26      Device must implement the sensor API and provide the
27      `SENSOR_CHAN_CURRENT` channel.
28
29  device-chemistry:
30    required: true
31
32  ocv-capacity-table-0:
33    required: true
34