1# BatteryInfo 2 3 4## **概述** 5 6电池相关信息。 7 8**Since:** 9 103.1 11 12**相关模块:** 13 14[Battery](battery.md) 15 16 17## **汇总** 18 19 20### Public 属性 21 22 | 名称 | 描述 | 23| -------- | -------- | 24| [capacity](#capacity) | 表示电池的电量百分比。 | 25| [voltage](#voltage) | 表示电池的电压。 | 26| [temperature](#temperature) | 表示电池的温度。 | 27| [healthState](#healthstate) | 表示电池的健康状态。 | 28| [pluggedType](#pluggedtype) | 表示电池的充电设备类型。 | 29| [pluggedMaxCurrent](#pluggedmaxcurrent) | 表示电池的最大充电电流。 | 30| [pluggedMaxVoltage](#pluggedmaxvoltage) | 表示电池的最大充电电压。 | 31| [chargeState](#chargestate) | 表示电池的充电状态。 | 32| [chargeCounter](#chargecounter) | 表示电池的充电次数。 | 33| [totalEnergy](#totalenergy) | 表示电池的总容量。 | 34| [curAverage](#curaverage) | 表示电池的平均电流。 | 35| [curNow](#curnow) | 表示电池的实时电流。 | 36| [remainEnergy](#remainenergy) | 表示电池的剩余容量。 | 37| [present](#present) | 表示是否支持电池或者电池是否在位。 | 38| [technology](#technology) | 表示电池的技术型号。 | 39 40 41## **类成员变量说明** 42 43 44### capacity 45 46 47``` 48int BatteryInfo::capacity 49``` 50 51**描述:** 52 53表示电池的电量百分比。 54 55 56### chargeCounter 57 58 59``` 60int BatteryInfo::chargeCounter 61``` 62 63**描述:** 64 65表示电池的充电次数。 66 67 68### chargeState 69 70 71``` 72int BatteryInfo::chargeState 73``` 74 75**描述:** 76 77表示电池的充电状态。 78 79 80### curAverage 81 82 83``` 84int BatteryInfo::curAverage 85``` 86 87**描述:** 88 89表示电池的平均电流。 90 91 92### curNow 93 94 95``` 96int BatteryInfo::curNow 97``` 98 99**描述:** 100 101表示电池的实时电流。 102 103 104### healthState 105 106 107``` 108int BatteryInfo::healthState 109``` 110 111**描述:** 112 113表示电池的健康状态。 114 115 116### pluggedMaxCurrent 117 118 119``` 120int BatteryInfo::pluggedMaxCurrent 121``` 122 123**描述:** 124 125表示电池的最大充电电流。 126 127 128### pluggedMaxVoltage 129 130 131``` 132int BatteryInfo::pluggedMaxVoltage 133``` 134 135**描述:** 136 137表示电池的最大充电电压。 138 139 140### pluggedType 141 142 143``` 144int BatteryInfo::pluggedType 145``` 146 147**描述:** 148 149表示电池的充电设备类型。 150 151 152### present 153 154 155``` 156byte BatteryInfo::present 157``` 158 159**描述:** 160 161表示是否支持电池或者电池是否在位。 162 163 164### remainEnergy 165 166 167``` 168int BatteryInfo::remainEnergy 169``` 170 171**描述:** 172 173表示电池的剩余容量。 174 175 176### technology 177 178 179``` 180String BatteryInfo::technology 181``` 182 183**描述:** 184 185表示电池的技术型号。 186 187 188### temperature 189 190 191``` 192int BatteryInfo::temperature 193``` 194 195**描述:** 196 197表示电池的温度。 198 199 200### totalEnergy 201 202 203``` 204int BatteryInfo::totalEnergy 205``` 206 207**描述:** 208 209表示电池的总容量。 210 211 212### voltage 213 214 215``` 216int BatteryInfo::voltage 217``` 218 219**描述:** 220 221表示电池的电压。 222