Christian P.

Results 58 comments of Christian P.

Do you have 2 wallboxes for 1 car or 2 wallboxes for 2 cars? The 2nd case is already implemented. Select the 2nd car by drop down and then go...

As far as I know there is not possible to distinguish between these packs on API Side.

could you please check the exception folder for more informations: /etc/teslalogger/Exception

> Is it possible to have ScanMyTesla running in background when the sync to Teslalogger is active? Now when I run the app and switch to the Waze navigation, after...

So what you are looking for is a 3D Chart with X = SOC Y = Cell Temperature Z = Charging Speed (kW) Like This: ![image](https://user-images.githubusercontent.com/6816385/166643798-68c896c8-e545-40b4-af66-1063b65d12de.png)

> @Adminius so SMT will only sync the metrics which are displayed on the current screen? Then why for example Cell temp is now updated only once per few minutes,...

I did a query on my database: ``` SELECT count(*) as count, cell_temp, max(charger_power) as kw FROM tesla_taskertoken JOIN tesla_chargingstate on tesla_taskertoken.token = tesla_chargingstate.token join tesla_charging on tesla_chargingstate.id = tesla_charging.cs_id...

> Interesting. This is from your car or everybody with SMT sync enabled? This is from all Model 3 SR+ - I've got a Model S75D

This is all I can make with my limited Excel skills :-) ![image](https://user-images.githubusercontent.com/6816385/166685368-f3330335-dbac-47b2-bc16-220ed0307bd4.png)

sql query: ``` SELECT count(*) as count, cell_temp, max(charger_power) as kw, max(case when battery_level BETWEEN 0 and 10 then charger_power else 0 end) as SOC0_10, max(case when battery_level BETWEEN 10...