From f48c16f3672e4f2b5db416da61ed50eebde71fe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20K=C3=BChnel?= Date: Fri, 1 Nov 2024 11:34:26 +0100 Subject: [PATCH 1/2] fix(PowerFlowComponent): autoshrink on too small screen --- TeslaSolarCharger/Client/Components/PowerFlowComponent.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TeslaSolarCharger/Client/Components/PowerFlowComponent.razor b/TeslaSolarCharger/Client/Components/PowerFlowComponent.razor index 0353b7e55..a9d77f22e 100644 --- a/TeslaSolarCharger/Client/Components/PowerFlowComponent.razor +++ b/TeslaSolarCharger/Client/Components/PowerFlowComponent.razor @@ -10,7 +10,7 @@ @if (_pvValues != default) { -
+
From 9e6de4d3a3bdd600b6d8c86f5dea2de9fa6a9ea7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20K=C3=BChnel?= Date: Fri, 1 Nov 2024 11:45:38 +0100 Subject: [PATCH 2/2] feat(CarBasicConfiguration): add additional fleet telemetry explanation --- TeslaSolarCharger/Shared/Dtos/CarBasicConfiguration.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TeslaSolarCharger/Shared/Dtos/CarBasicConfiguration.cs b/TeslaSolarCharger/Shared/Dtos/CarBasicConfiguration.cs index f42468e2a..248a23626 100644 --- a/TeslaSolarCharger/Shared/Dtos/CarBasicConfiguration.cs +++ b/TeslaSolarCharger/Shared/Dtos/CarBasicConfiguration.cs @@ -50,9 +50,9 @@ public CarBasicConfiguration(int id, string? name) public int ApiRefreshIntervalSeconds { get; set; } [HelperText("Needed to send commands via BLE to the car. An example value would be `http://raspible:7210/`")] public string? BleApiBaseUrl { get; set; } - [HelperText("If enabled, some data will be transferred via Fleet Telemetry. This improves the delay in the TSC detection of plugin and out of the car, as well as changes in the charging speed. Note: All data transferred via Fleet Telemetry passes my server.")] + [HelperText("If enabled, some data will be transferred via Fleet Telemetry. This improves the delay in the TSC detection of plugin and out of the car, as well as changes in the charging speed. Note: All data transferred via Fleet Telemetry passes my server. For now, the fleet telemetry fields ModuleTempMin, ModuleTempMax,ChargeAmps, ChargeCurrentRequest, ChargeCurrentRequestMax, DetailedChargeState are requested.")] public bool UseFleetTelemetry { get; set; } - [HelperText("If disabled TSC takes up to 8 minutes to detect if the car is at home. If you do not mind that your car location data passes my server do not disable this option.")] + [HelperText("Enabling this results in additionally streaming the field Location over my server. If disabled and TeslaMate is not selected as DataSource TSC takes up to 8 minutes to detect if the car is at home. If you do not mind that your car location data passes my server, do not disable this option.")] public bool UseFleetTelemetryForLocationData { get; set; } = true; }