T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

Forum rules
SCS as a company do not wish to have paid mods on this forum. While we understand that not all paid mods use the Intellectual Property of other companies/people, it is very hard to moderate what is and isn't acceptable when money is involved. There are also concerns that it could look unfavorable to potential work partners going forward if SCS allow mods that may potentially use unlicensed branding.
Posting in the Mods forum (ATS and ETS2) is restricted to sharing free-to-the-public mods and providing support for mods. For more details, please check the Forum Rules.
madslipknot
Posts: 4
Joined: 03 Feb 2018 04:18

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#71 Post by madslipknot » 26 Apr 2020 15:45

Hi, this still my favorite dashboard for the telemetry server thank for updating it ,
I come across a weird display bug it only happen in the Renault truck the Manuel gear selector is showing gear by number like : 1,2,3,4 .... 11,12 insted of showing it in 1L,1H, 2L.... 6L,6H is that a bug from ingame or from the skin, I dont use any mod for truck

Thank in advance !
jianqun
Posts: 58
Joined: 23 Jan 2018 06:21
Location: East Asia
Contact:

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#72 Post by jianqun » 06 May 2020 08:00

Hi @madslipknot,

This is not a bug.
Because there is no H-Shifter Layout for the Optidriver gearbox of Renault T in the game, so I didn't set the H-Shifter gears for it.
Elenilson
Posts: 1
Joined: 21 May 2020 19:54

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#73 Post by Elenilson » 21 May 2020 20:06

Hi jianqun, how do I change the currency from Euro to Brazilian Real, I have this option in the game, but I don't see this option in ETS2 Telemetry.
freiden
Posts: 110
Joined: 24 Aug 2014 14:36

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#74 Post by freiden » 02 Jul 2020 20:44

Good looking skin, one question. Is it possible to get the information about how far I can drive before the petrol is empty?
mnd
Posts: 1
Joined: 05 Oct 2020 06:47

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#75 Post by mnd » 05 Oct 2020 07:20

This would interest me also, and I think should be possible to calculate, because I think there is a variable for average fuel consumption.

Also, it would be great if we could see the distance to the nearest waypoint in the map/navigation, but I guess this is not possible.

Another thing - is it normal for the browser (I'm using chrome) to use 20%-25% cpu, if the dashboard webpage is opened on the same computer that the game is running on? Maybe someone could recommend a browser which can handle the dashboard by using minimal resources of the computer?
I'm happy with using the dashboard on a separate device, but when playing after a workday from home, two monitors are being used, so I'd also like to be able to use the dashboard on the second monitor. But as the browser uses so much cpu, it doesn't seem practical.
Last edited by Flemming V on 05 Oct 2020 07:30, edited 1 time in total.
Reason: Quote removed. Please don't quote post right above.
Mulc
Posts: 6
Joined: 08 Nov 2020 14:09

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#76 Post by Mulc » 08 Nov 2020 14:14

Hy, i have reacently downloaded the server 4.0.0 and the 4.0.5 dash.

Everithing is OK i just have 1 question if anyone can answer. The T Dash is interactive, so by clicking on it u can change mph to kph etc. , i can change the dash on my ipad, i can change it in any window i open the das in, the only place i cannpt change it, and it would be nice if i coul, is streamlabs OBS, i have a dash there for the livestreams and would be awesome if i could change it to mph when streaming American Truck Simulator...

Thanx for Help

Rok
jdkelley93
Posts: 146
Joined: 11 Jun 2016 23:03
Location: Savannah, Georgia USA

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#77 Post by jdkelley93 » 19 Nov 2020 19:49

@Mulc I updated the code for mine to programmatically switch to MPH when the page is loaded. Not sure if that is what you are looking for but the code to do so is below.

In the dashboard.js file for T Dashboard, at the bottom of the ready call - `$(document).ready(function() {` - right after ` $('head').append('<link rel="manifest" href="skins/' + skinConfig.name + '/manifest.json">');` - add the following

Code: Select all

        // Auto switch to MPH
        $('._switchSpeed').trigger("click");
If you also want to auto close the tips and switch the shifter to H-shifter you can add the following

Code: Select all

        // Auto close tips
        $('._closeTips').trigger("click");
        // Auto switch to H-Shifter
        $('._switchShifter').trigger("click");
Software dev by day, virtual trucker by night
User avatar
easilyconfused
Posts: 3
Joined: 14 Mar 2020 13:14
Location: Bristol, UK
Contact:

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#78 Post by easilyconfused » 24 Nov 2020 00:04

Just going to pop a small post in here to thank you for all the work producing the dashboard. It really does help my driving having it displaying on a little netbook underneath my main monitor so I can see the dash more clearly.
Mulc
Posts: 6
Joined: 08 Nov 2020 14:09

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#79 Post by Mulc » 27 Nov 2020 08:05

jdkelley93 wrote: 19 Nov 2020 19:49 @Mulc I updated the code for mine to programmatically switch to MPH when the page is loaded. Not sure if that is what you are looking for but the code to do so is below.

In the dashboard.js file for T Dashboard, at the bottom of the ready call - `$(document).ready(function() {` - right after ` $('head').append('<link rel="manifest" href="skins/' + skinConfig.name + '/manifest.json">');` - add the following

Code: Select all

        // Auto switch to MPH
        $('._switchSpeed').trigger("click");
If you also want to auto close the tips and switch the shifter to H-shifter you can add the following

Code: Select all

        // Auto close tips
        $('._closeTips').trigger("click");
        // Auto switch to H-Shifter
        $('._switchShifter').trigger("click");
I'm looking for a way to interact with the telemetry in my Streamlabs OBS...
User avatar
ThunderSky
Posts: 764
Joined: 20 Feb 2017 14:19

Re: T Dashboard 4.0.5 for ETS2 Telemetry Server 4.0.0 [12 Apr 2020]

#80 Post by ThunderSky » 19 Dec 2020 18:02

Really awesome skin, I love Renault Trucks, just a question: why is your the only centered skin? ahah Every other skin I've seen (even the default one) are all merget to the left

https://www.jianqun.me/file_download/2/ ... ard-4x.zip doesn't work @jianqun
Post Reply

Return to “Others”

Who is online

Users browsing this forum: No registered users and 9 guests