Interface BatteryService
-
- All Implemented Interfaces:
public interface BatteryServiceService to query the battery specification and status data
- Since:
2.1
-
-
Method Summary
Modifier and Type Method Description abstract List<BatterySpec>readSpecification()Reads the battery specification from the E3DC home power station abstract List<BatteryStatus>readMonitoringData()Reads the current status data of the battery -
-
Method Detail
-
readSpecification
abstract List<BatterySpec> readSpecification()
Reads the battery specification from the E3DC home power station
- Returns:
Specification of the battery. As a rule, the list contains only one element. Theoretically, however, a home power station can have several batteries
- Since:
2.1
-
readMonitoringData
abstract List<BatteryStatus> readMonitoringData()
Reads the current status data of the battery
- Returns:
Current monitoring data. As a rule, the list contains only one element. Theoretically, however, a home power station can have several batteries
- Since:
2.1
-
-
-
-