F1 2019 Pro Dashboard for Nextion 4.3"

Misc F1 2019 Pro Dashboard for Nextion 4.3" 0.99

Login or Register an account to download this content
Samoss13 submitted a new resource:

F1 2019 Pro Dashboard for Nextion 4.3" - nextion simhub dash dashboard 4.3 hmi f1

Hello there !

View attachment 340284

I have recently placed a new order to Piro Racing System for a new custom wheel with 4.3" on-board display on Nextion.

But I realized that there are only a few dashboards, and they are not very successful in terms of data. So I decided to develop / design my own dash.
After 30 hours+ a version 0.9 is born, I couldn't try it because I don't have a display. But don't worry : I...

Read more about this resource...
 
Samoss13 updated F1 2019 Pro Dashboard for Nextion 4.3" with a new update entry:

Major update before the end of january

- Idle page: Fixed gradient / lines
- Main Race page: Added tyres wear
- Main Race / VSC page: Added highlight colors when ERS/MIX is changed
- Qualy page: Added session time left
- Qualy page: Remplaced fuel delta mix (not available in Q) for fuel remaining laps
- VSC page: Fixed ERS size in NextionEditor
- Fixed some overlooping texts
- Fixed pages with values to "-" instead real values
- Fixed general mappings (best lap, last lap...)
- Fixed Tyres temp to all pages
- Fixed Wear/Damages to...

Read the rest of this update entry...
 
Hey Samoss, your Dash looks great! I‘m working on my own dash, but I can‘t find properties for the following game datas redarding F1:

Fuel Mix
ERS (Mode)
The ERS %, don‘t gets any data from F1
Diff

It would be very kind, if you can give me an advise
 
Hey Samoss, your Dash looks great! I‘m working on my own dash, but I can‘t find properties for the following game datas redarding F1:

Fuel Mix
ERS (Mode)
The ERS %, don‘t gets any data from F1
Diff

It would be very kind, if you can give me an advise

Hello friend !

I'm away from computer buto you can download my dash and open it from SimHub, in the "Nextion" you can find Sam_Dash in the list, click on Edit Mapping. There you can find all the stuff you need don't forget to install plugin ib my description.

You can stole everything
Peace and happy new year to you
 
Hey Samoss, your Dash looks great! I‘m working on my own dash, but I can‘t find properties for the following game datas redarding F1:

Fuel Mix
ERS (Mode)
The ERS %, don‘t gets any data from F1
Diff

It would be very kind, if you can give me an advise

For FUEL MIX, don't forget to activate the checkbox "Use javascript"

if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_fuelMix') ==0) {
return "lean"
} else if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_fuelMix') ==1) {
return "std"
} else if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_fuelMix') ==2) {
return "max"
} else if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_fuelMix') ==3) {
return "qualif"
} else if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_fuelMix') ==4) {
return "qualif"

}



For ERS LEVEL BAR, don't forget to activate the checkbox "Use javascript"

if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_ersDeployMode') ==0) {
return "none"
} else if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_ersDeployMode') ==1) {
return "low"
} else if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_ersDeployMode') ==2) {
return "med."
} else if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_ersDeployMode') ==3) {
return "high"
} else if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_ersDeployMode') ==4) {
return "overta."
} else if ($prop('DataCorePlugin.GameRawData.PlayerCarStatusData.m_ersDeployMode') ==5) {
return "hotlap"

}



For ERS LEVEL IN %, don't forget to activate the checkbox "Use javascript"

str = $prop('DataCorePlugin.GameData.NewData.ERSStored');
percent = str / 4000000 * 100;
percent = percent.toFixed();
return percent + '%';



For DIFFERENTIAL :

''+[DataCorePlugin.GameRawData.PlayerCarSetup.m_onThrottle]+' %'
 
Hello folks ! The Nextion portage of Javliar work is available on our Discord there: https://discord.gg/kCTyj6Ea5m
testtt.jpg
 

Latest News

How long have you been simracing

  • < 1 year

    Votes: 237 14.8%
  • < 2 years

    Votes: 166 10.3%
  • < 3 years

    Votes: 159 9.9%
  • < 4 years

    Votes: 120 7.5%
  • < 5 years

    Votes: 225 14.0%
  • < 10 years

    Votes: 189 11.8%
  • < 15 years

    Votes: 125 7.8%
  • < 20 years

    Votes: 92 5.7%
  • < 25 years

    Votes: 72 4.5%
  • Ok, I am a dinosaur

    Votes: 219 13.7%
Back
Top