Class BatteryInfo
Represents battery information.
Assembly: Meadow.Contracts.dll
View Source
public class BatteryInfo
Properties
Temperature
Gets or sets the temperature of the battery.
View Source
public Temperature? Temperature { get; set; }
Voltage
Gets or sets the voltage of the battery.
View Source
public Voltage? Voltage { get; set; }
Current
Gets or sets the current flowing in or out of the battery.
View Source
public Current? Current { get; set; }
MeanCurrent
Gets or sets the mean current flowing in or out of the battery.
View Source
public Current? MeanCurrent { get; set; }
StateOfCharge
Gets or sets the state of charge (SOC) of the battery.
View Source
public int StateOfCharge { get; set; }
TimeToEmpty
Gets or sets the estimated time remaining for the battery to be empty.
View Source
public TimeSpan? TimeToEmpty { get; set; }
TimeToFull
Gets or sets the estimated time remaining for the battery to be fully charged.
View Source
public TimeSpan? TimeToFull { get; set; }