> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobway.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Battery

> Data related to the low-voltage battery

## lv\_battery\_voltage

LV Battery Voltage

* Description: low-voltage (LV) battery voltage
* Format: numeric
* Unit: V
* Decimal places: 2
  * The data processed by mobway will always have at most 2 decimal places. However, the precision of the original data depends on the automaker. The data will have fewer than 2 decimal places when it ends in 0 due to the automatic formatting of the float format
* Range: 0 to 16 V
  * The LV battery voltage range was defined based on the limit values reached by a 12 V battery, considering a safety margin
  * Data outside this range is considered erroneous
  * The value is replaced with a null value
  * A flag is generated indicating the error and the original value, in the following format:

```json theme={null}
{
  "lv_battery_voltage": {
    "value": 35.44,
    "flag": "out of range"
  }
}
```

* Missing data
  * A flag is generated indicating that the original data was missing, in the following format:

```json theme={null}
{
  "lv_battery_voltage": {
    "flag": "missing data"
  }
}
```

* Example:

```json theme={null}
{
  "lv_battery_voltage": 12.45
}
```

## lv\_battery\_soc

LV Battery State of Charge

* Description: low-voltage (LV) battery state of charge
* Format: numeric
* Unit: %
* Decimal places: 2
  * The data processed by mobway will always have at most 2 decimal places. However, the precision of the original data depends on the automaker. The data will have fewer than 2 decimal places when it ends in 0 due to the automatic formatting of the float format
* Range: 0 to 100%
  * The LV battery state of charge range was defined based on the limit values by definition
  * Data outside this range is considered erroneous
  * The value is replaced with a null value
  * A flag is generated indicating the error and the original value, in the following format:

```json theme={null}
{
  "lv_battery_soc": {
    "value": -5.24,
    "flag": "out of range"
  }
}
```

* Missing data
  * A flag is generated indicating that the original data was missing, in the following format:

```json theme={null}
{
  "lv_battery_soc": {
    "flag": "missing data"
  }
}
```

* Example:

```json theme={null}
{
  "lv_battery_soc": 43.57
}
```

## lv\_battery\_current

LV Battery Current

* Description: low-voltage (LV) battery state of charge
* Format: numeric
* Unit: %
* Decimal places: 2
  * The data processed by mobway will always have at most 2 decimal places. However, the precision of the original data depends on the automaker. The data will have fewer than 2 decimal places when it ends in 0 due to the automatic formatting of the float format
* Range: 0 to 10 A
  * The LV battery current range was defined based on the limit values reached by a 12 V battery, considering a safety margin
  * Data outside this range is considered erroneous
  * The value is replaced with a null value
  * A flag is generated indicating the error and the original value, in the following format:

```json theme={null}
{
  "lv_battery_current": {
    "value": 15.47,
    "flag": "out of range"
  }
}
```

* Missing data
  * A flag is generated indicating that the original data was missing, in the following format:

```json theme={null}
{
  "lv_battery_current": {
    "flag": "missing data"
  }
}
```

* Example:

```json theme={null}
{
  "lv_battery_current": 1.02
}
```
