ETS2/ATS Telemetry Web Server + Mobile Dashboard

User avatar
Komat
SCS Software
Posts: 975
Joined: 26 Nov 2012 09:22

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#851 Post by Komat » 27 Apr 2017 15:35

That change from psi to bar in telemetry is error in the telemetry output in 1.27/1.6. The telemetry units were not supposed to be changed. The general idea of the telemetry API is that the interpretation of existing channels should never change. If you see something similar in the future, please report it as error.
User avatar
Elderado704
Posts: 37
Joined: 03 Feb 2016 03:31

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#852 Post by Elderado704 » 05 May 2017 06:11

m4rc10w wrote:@WarthogCC,
Added function to split digital info (see video below) in 4 screen selected by press "beacon" command (default "O" key). Also can reset mileage (see TXT attached to RAR file for more info). Have fun 8-)

I am really enjoying this skin, thank you for making it.

Just 2 little things.

1- Could you point me in the right direction on what line i could change for the default ''O'' key? I have beacons on my truck and its getting a bit weird to light them on and off.

2- I'm not seeing a TXT file in the RAR file i download from your link.

Thanks again.
NEVER SHOW FEAR, SQUIDS CAN SENSE FEAR.
User avatar
m4rc10w
Posts: 97
Joined: 15 Feb 2015 17:52

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#853 Post by m4rc10w » 05 May 2017 21:21

@Elderado704 1 - see my explanation to SuperMaic few posts ago, there I explain why I used the beacons of the key to switch the screens.

2 - you are using which dashboard? if Ford Cargo, there has TXT file inside, to reset follow instructions below:

1 -Turn on the truck (without engine starting);
2 – engage the parking brake AND the hazard lights (default "F" key);
3-Finally, activate the brake pedal.

Else, if the FH2009, I put some dashboard controls directly on the screen, they appear when you pause the game (including the button to reset the mileage, click it possibly can freeze the dashboard, in this case you must wait a few seconds, or even restart the browser to return to normal).
My ETS2/ATS Custom/Edited Dashboards for Funbit ETS2/ATS Telemetry Server
https://www.worldoftrucks.com/en/online ... p?id=25089

[ external image ]
Sorry my bad English, it´s no my native language, then most my posts have help from Google Translate.
User avatar
Elderado704
Posts: 37
Joined: 03 Feb 2016 03:31

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#854 Post by Elderado704 » 06 May 2017 00:32

m4rc10w wrote:@Elderado704 1 - see my explanation to SuperMaic few posts ago, there I explain why I used the beacons of the key to switch the screens.
Ok, just read it, sorry i missed it.

Thank you for your answer.
NEVER SHOW FEAR, SQUIDS CAN SENSE FEAR.
MrJam
Posts: 7
Joined: 01 Apr 2017 07:43

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#855 Post by MrJam » 07 May 2017 12:17

Can you make a full dashboard for Volvo FH 2013? With all (almost all) function like a tachograph, trip computer etc...
User avatar
airbus_sai
Posts: 608
Joined: 14 Jan 2013 17:15

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#856 Post by airbus_sai » 07 May 2017 13:37

MrJam, given the same amount of man-hours as the original developers from Volvo, and paid the same... I'm joking, of course. :)

JavaScript will barely work if dashboard had all of the functions of the real thing.
"Now, I am become Death, the destroyer of squirrels."
- J. Robert Oppenheimer, when asked about Trinity tests, as heard in Lost Years song.
MrJam
Posts: 7
Joined: 01 Apr 2017 07:43

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#857 Post by MrJam » 07 May 2017 15:19

airbus_sai, I mean make all functions like in Volvo FH16 2009 v2 but in Volvo FH new series dashboard. For example rest and drive time, trip time, daily mileage, trip avg consumption and avg consumption and other possible data in the on-board computer for the type of new Volvo.
nebsi
Posts: 171
Joined: 24 Jul 2015 10:40
Contact:

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#858 Post by nebsi » 08 May 2017 07:57

m4rc10w wrote:One more rework on Klauzzy´s Scania R dashboard :)

[ external image ]
[ external image ]

download link https://drive.google.com/file/d/0B8K5aW ... sp=sharing
Tested on Google Chrome only.
I LOVE IT THX U
[ external image ] [ external image ]
Ryzen 5 3600X-ASUS 3060TI- 32gb Ram 3600 - AOC Curved-Logitech DFGT
User avatar
Elderado704
Posts: 37
Joined: 03 Feb 2016 03:31

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#859 Post by Elderado704 » 08 May 2017 15:52

I was wondering if you could help me out m4rc10w?

I am trying to add the remaining distance to delivery on a dash you made (modified to my taste, i will not be sharing). I deconstructed some other skins you made to see if i could do it but the numbers are not showing up. Here is what i got so far:

[ external image ]

dashboard.css

.navigation-distLeft{font-family: Times New Roman; font-size: 28px; position: absolute; left: 955px; top: 730px; color: white; font-weight: bold}



dashboard.html

<div class="navigation-distLeft"></div>



dashboard.js

data.navigation.distLeft = "Dist. Left:";

Am i missing something?

Thank you.
NEVER SHOW FEAR, SQUIDS CAN SENSE FEAR.
User avatar
m4rc10w
Posts: 97
Joined: 15 Feb 2015 17:52

Re: ETS2/ATS Telemetry Web Server + Mobile Dashboard

#860 Post by m4rc10w » 08 May 2017 21:37

@Elderado704 This data is passed by telemetry app core as 'navigation.estimatedDistance' and is given in meters.
You can try it (in JS file):

Code: Select all

data.navigation.distLeft = Math.floor(data.navigation.estimatedDistance/1000) + ' Km'; // distance in Km
I kept the variable with the name you gave to need not change the HTML and CSS files as well. Good luck ;)

A complete list of telemetry data available is listed here https://github.com/Funbit/ets2-telemetr ... lemetry.md
My ETS2/ATS Custom/Edited Dashboards for Funbit ETS2/ATS Telemetry Server
https://www.worldoftrucks.com/en/online ... p?id=25089

[ external image ]
Sorry my bad English, it´s no my native language, then most my posts have help from Google Translate.
Post Reply

Return to “General discussion about the game”

Who is online

Users browsing this forum: NemoDiscovers and 14 guests