Skip to main content

Class BatteryInfo

Represents battery information.

Assembly: Meadow.Contracts.dll
View Source
Declaration
public class BatteryInfo

Properties

Temperature

Gets or sets the temperature of the battery.

View Source
Declaration
public Temperature? Temperature { get; set; }

Voltage

Gets or sets the voltage of the battery.

View Source
Declaration
public Voltage? Voltage { get; set; }

Current

Gets or sets the current flowing in or out of the battery.

View Source
Declaration
public Current? Current { get; set; }

MeanCurrent

Gets or sets the mean current flowing in or out of the battery.

View Source
Declaration
public Current? MeanCurrent { get; set; }

StateOfCharge

Gets or sets the state of charge (SOC) of the battery.

View Source
Declaration
public int StateOfCharge { get; set; }

TimeToEmpty

Gets or sets the estimated time remaining for the battery to be empty.

View Source
Declaration
public TimeSpan? TimeToEmpty { get; set; }

TimeToFull

Gets or sets the estimated time remaining for the battery to be fully charged.

View Source
Declaration
public TimeSpan? TimeToFull { get; set; }