Skip to content

Commit

Permalink
Merge pull request #1583 from pkuehnel/feat/additionalFleetTelemetryM…
Browse files Browse the repository at this point in the history
…essages

feat(FleetTelemetryWebSocketService): can get additional fleet telemetry configs
  • Loading branch information
pkuehnel authored Oct 27, 2024
2 parents 9b2ea04 + 3d6e8e5 commit e272318
Show file tree
Hide file tree
Showing 10 changed files with 1,004 additions and 12 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 e272318

Please sign in to comment.