Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #1582

Merged
merged 21 commits into from
Nov 1, 2024
Merged

Develop #1582

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
fb6bd11
build(deps): bump LanguageExt.Core from 5.0.0-beta-28 to 5.0.0-beta-29
dependabot[bot] Oct 23, 2024
98ca283
Revert "feat(CarSettings): hide FleetTelemetry Checkbox"
pkuehnel Oct 26, 2024
9b2ea04
Merge pull request #1581 from pkuehnel/feat/enableFleetTelemetryCheckbox
pkuehnel Oct 26, 2024
3d6e8e5
feat(FleetTelemetryWebSocketService): can get additional fleet teleme…
pkuehnel Oct 27, 2024
e272318
Merge pull request #1583 from pkuehnel/feat/additionalFleetTelemetryM…
pkuehnel Oct 27, 2024
45d987d
Merge pull request #1575 from pkuehnel/dependabot/nuget/develop/Langu…
pkuehnel Oct 27, 2024
431712c
build(deps): bump LanguageExt.Core from 5.0.0-beta-29 to 5.0.0-beta-34
dependabot[bot] Oct 29, 2024
8b4202b
Merge pull request #1587 from pkuehnel/dependabot/nuget/develop/Langu…
pkuehnel Oct 30, 2024
22922f3
fix(ChargingService): do not use double power buffer on inverter only…
pkuehnel Oct 30, 2024
2212723
Merge pull request #1590 from pkuehnel/fix/doublePowerBufferOnInverte…
pkuehnel Oct 30, 2024
4257614
fix(FleetTelemetryWebSocketService): do not log locations
pkuehnel Oct 30, 2024
2303099
Merge pull request #1591 from pkuehnel/feat/fleetTelemetryNoLocationLog
pkuehnel Oct 30, 2024
9ea60c7
feat(ErrorHandlingService): do not show occurrence count if not needed
pkuehnel Oct 31, 2024
a31643d
Merge pull request #1594 from pkuehnel/feat/DoNotShowOccurrenceCountI…
pkuehnel Oct 31, 2024
521a8f6
feat(IndexRazor): display power buffer with edit option
pkuehnel Oct 31, 2024
4407579
Merge pull request #1595 from pkuehnel/feat/homepagePowerBuffer
pkuehnel Oct 31, 2024
dc459d8
feat(FleetTelemetryWebSocketService): reconnect fleet telemetry on ca…
pkuehnel Oct 31, 2024
70c2ebe
Merge pull request #1596 from pkuehnel/feat/fleetTelemetryReconnect
pkuehnel Oct 31, 2024
f48c16f
fix(PowerFlowComponent): autoshrink on too small screen
pkuehnel Nov 1, 2024
9e6de4d
feat(CarBasicConfiguration): add additional fleet telemetry explanation
pkuehnel Nov 1, 2024
c49ecb9
Merge pull request #1597 from pkuehnel/fix/powerFlowAutoShrink
pkuehnel Nov 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading