Skip to content

Commit

Permalink
Merge pull request #1582 from pkuehnel/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
pkuehnel authored Nov 1, 2024
2 parents 87db477 + c49ecb9 commit 701464d
Show file tree
Hide file tree
Showing 23 changed files with 1,235 additions and 177 deletions.
5 changes: 3 additions & 2 deletions TeslaSolarCharger.Model/Entities/TeslaSolarCharger/Car.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ public class Car

public int? SoC { get; set; }
public int? SocLimit { get; set; }

public int? ChargerPhases { get; set; }
public int? ChargerVoltage { get; set; }
public int? ChargerVoltage { get; set; } //NotAvailabel in Fleet Telemetry
public int? ChargerActualCurrent { get; set; }
public int? ChargerPilotCurrent { get; set; }
public int? ChargerRequestedCurrent { get; set; }
Expand All @@ -39,6 +38,7 @@ public class Car
public double? Latitude { get; set; }
public double? Longitude { get; set; }
public CarStateEnum? State { get; set; }

public bool VehicleCommandProtocolRequired { get; set; }
public DateTime? VehicleRateLimitedUntil { get; set; }
public DateTime? VehicleDataRateLimitedUntil { get; set; }
Expand All @@ -50,6 +50,7 @@ public class Car
public int ApiRefreshIntervalSeconds { get; set; }
public string? BleApiBaseUrl { get; set; }
public bool UseFleetTelemetry { get; set; }
public bool UseFleetTelemetryForLocationData { get; set; }

public string? WakeUpCalls { get; set; }
public string? VehicleDataCalls { get; set; }
Expand Down
Loading

0 comments on commit 701464d

Please sign in to comment.