ATS - Simple Customizable Dashboard for SimHub

ATS - Simple Customizable Dashboard for SimHub 1.6.7

Login or Register an account to download this content
This is a simple dashboard for SimHub with some customization options. I needed something not crazy fancy, and a lot of the options on here were fairly lackluster. I'm still learning the ins and outs of SimHub, and what it is capable of, but I think this is a good start.

Features:
- 4 different background options
- Truck manufacturer logo options to display under the tachometers (Currently have all stock truck manufacturers)
- Shows proper gear value for Eaton Fuller 18-speed. (Code available for 10-Speed 13-Speed)
- Turn signal indicator
- "LCD" screen on the top right of the dash that shows the current job destination city, company, and cargo
- Speed limit for current road also appears on the "LCD" screen when applicable (If you are on a road with no speed limit, or in a job zone, it won't display)
- Accessory status display (off/on) for Interior/Parking lights, Beacon light, Hazards, and Windshield wiper
- In-tachometer icon display for Engine Brake, Headlights, High beams, Parking Brake, and Cruise Control (New!)
- Dynamic RPM Redline (Beginning of "optimal range" is 5000 RPM below redline, makes it very easy to float gears in this game)
- Displays current RPM and MPH in the small window of each respective tachometer
- Fuel gauge that shows the current fuel level. The icon will turn red when less than or equal to 20% fuel


The resolution of the dashboard is 1280x720. I use an old iPhone 7 mounted behind my wheel so this works for me. Play around with it and you should be able to tweak it if you need another resolution. If you'd like something custom for an image or background, let me know and I'll see what I can do.

Few examples:

New Cruise Control icon (left side -- subject to change in future updates):
Carbon Fiber - Off.png


Wood - On.png




HowToChangeBackground.png

- Go to Dashboard Background folder > Select the image > Select the image from the drop-down list (They are prefaced with 'Dash -')
Change Dashboard Background.png


HowToChangeLogos.png

- Go to Dashboard Company Logos folder > Select the left image > Swap the image from the drop down (They are all titled manufacturer-130x50)
- Repeat for right image
Change Company Logos.png


HowToChange13Speed.png

- Go to "Current Gear Display (Text) element"
- Click the "Fx" function button for the Text value
- Replace the code with the JavaScript below
- Save dashboard and remember to reload it!

Gear code replacement.png


Code for 13-Speed:
JavaScript:
// Eaton Fuller 13 Speed

var gear = $prop('Gear');
var gearMap = {
    'N': 'N',
    '13': '8H',
    '12': '8L',
    '11': '7H',
    '10': '7L',
    '9': '6H',
    '8': '6L',
    '7': '5H',
    '6': '5L',
    '5': '4',
    '4': '3',
    '3': '2',
    '2': '1',
    '1': 'LO',
    'R': 'RL',
    '-2': 'RH'
};

// Return the corresponding value from the map, or a default value if not found
return gearMap[String(gear)] || 'N/A';

Code for 10-Speed (Untested!!):
JavaScript:
// Eaton Fuller 10-Speed Script

var gear = $prop('Gear');
var gearMap = {
    'N': 'N',
    '10': '4H',
    '9': '4L',
    '8': '3H',
    '7': '3L',
    '6': '2H',
    '5': '2L',
    '4': '1H',
    '3': '1L',
    '2': 'LH',
    '1': 'LL',
    'R': 'R1'
};
return gearMap[gear] || 'N/A';

Thanks for checking this out!
- dumbrellas
Enjoying my work? How about a coffee to say thanks :)

Latest updates

  1. Reordered image gallery and misc. cleanup

    Nothing major here. Re-ordered the image library so dashboard backgrounds are at the top...
  2. 2 new background options!

    - Added 2 new background options: - Carbon Fiber background + Black gauges - Wood...
  3. Refactored gauges, dynamic optimal range/redline RPM, adjusted various elements

    - Refactored and optimized tachometer gauges. Should be more performant now and less stutter as...

Latest reviews

Premium
Absolutely loving this dashboard only thing I wish it had was a cruise control display.
dumbrellas
dumbrellas
Thanks Tyler, I'll see if I can incorporate it. I've been using CC more lately myself so I'm also finding the need.

Latest News

Author
dumbrellas
Downloads
1,104
File size
2.9 MB
Views
19,207
First release
Last update
User rating
4.00 star(s) 1 ratings

More mods from dumbrellas

Shifting method

  • I use whatever the car has in real life*

  • I always use paddleshift

  • I always use sequential

  • I always use H-shifter

  • Something else, please explain


Results are only viewable after voting.
Back
Top