Apps Download removed [Deleted]

Status
Not open for further replies.
Having some difficulty getting sim hub to work with my arduino UNO

I keep getting script error Template filler error when trying to upload sketch..
Using the new BETa version or using compile and upload.

Any advice ???
 
Hi All,
I trying to get this to work
SimHub, DIY Sim racing Dash 5.3.2 Beta.
Having some issue with connection to arduino.
I have installed Sim Hub
I have been to hardware settings.

It has download a version of Arduino IDE
The connection to the Arduino Port is correct.
However whenever i press upload or open IDE is give exception errors
or Missing FillerTemplate.

Can anyone advise ??

Thanks
 
Hi All,
I trying to get this to work
SimHub, DIY Sim racing Dash 5.3.2 Beta.
Having some issue with connection to arduino.
I have installed Sim Hub
I have been to hardware settings.

It has download a version of Arduino IDE
The connection to the Arduino Port is correct.
However whenever i press upload or open IDE is give exception errors
or Missing FillerTemplate.

Can anyone advise ??

Thanks
Have you followed the troubleshooting guide ?
https://github.com/zegreatclan/AssettoCorsaTools/wiki/SimHub-Troubleshootings
 
Wotever updated SimHub, DIY Sim racing Dash with a new update entry:

"We can build a dash; we have the technology"

What's new into 5.4 ?

Additions
  • Finally the official release of the boost gauge support !
  • Added two new games : Dota 2 and CSGO (I know it's not racing games :D, but why not ? :D)
  • Option to hide unwanted games
  • Opened the possibility to add games readers into the SDK (Samples will come soon)
  • Web version of...

Read the rest of this update entry...
 
Hi Wotever
I saw a device called iFlag for iRacing which it displays the current flag/event in iRacing. Any chance it could be added but would need to work on more sims.
I understand that race flags are displayed in Games/Sims on the screen but to have a display that beams out at you may be OK, plus its another gadget for us to build.

Bill
 
i have a question regarding the web function, i know the programme is working. on the pc if i open the address it works. my pc is connected through a lan cable, but devices that connected with wifi won't open the page. ( all connected to the same router) is there something i am missing here ?

pinging the addres via the wifi pc works , it can find the pc. but wont connect to the webbrowser.
simhub is in live mode.
 
Last edited:
i have a question regarding the web function, i know the programme is working. on the pc if i open the address it works. my pc is connected through a lan cable, but devices that connected with wifi won't open the page. ( all connected to the same router) is there something i am missing here ?

pinging the addres via the wifi pc works , it can find the pc. but wont connect to the webbrowser.
simhub is in live mode.
It's probably due to some firewalls ? Ping mostly always works it it doesn't means that the port 8888 is open in Windows firewall.
 
Since the update of ETS2 it doesn't recognize the plugin anymore.

Hum, i just tried it, i have no problems, did you install some other plugins ? :
upload_2017-8-25_20-5-42.png
 
I do not know, or I can not make the consumption per liters, it's per gallon, although it specifies liters.
the display is control center "the display is center control" soorry I do not speak English
 
Hi Wotever,
The web version of Dashstudio is awesome, congrats !
Unfortunately, since the last 2 updates (5.3.2 and 4.0) I have an issue on my 2 android devices. That runs flawless for a while but then the screen freezes. I've tried with several browsers but the issue is still the same. Back to 5.3.1 everything works perfectly... I would love to try the new improvements you've put in your last update. Any idea ?
Thanks in advance
 
Hi Wotever,
The web version of Dashstudio is awesome, congrats !
Unfortunately, since the last 2 updates (5.3.2 and 4.0) I have an issue on my 2 android devices. That runs flawless for a while but then the screen freezes. I've tried with several browsers but the issue is still the same. Back to 5.3.1 everything works perfectly... I would love to try the new improvements you've put in your last update. Any idea ?
Thanks in advance
Uh oh, never seen it, when you say "for a while" what time frame are we talking about ?
may have an idea of what is causing this
 
après quelques minutes (2,3, 4 ?). Difficile d'être précis. Suis pas dessus maintenant, te dirai la prochaine fois plus précisément. Mais c'est après quelques minutes, pas quelques secondes...

sorry guys for the non french speaking people, but I'm sure you have understood ;-)
 
Hello Grandmaster Wotever...
Iam very confused.I would like to expand your simhub sketch.But since days only try and error...My idea is actually quite simple.I want to turn the light on in game with an additional button trough simhub.As far as no problem.But i would like to set a arduino pin to outpout for a control light or as signal pin for a grove relay.And here comes my problem...At the first i have declared
const int LightPin = 12;
int lightOn = 0;.
As next step comes
void setup()
{
pinMode(LightPin, OUTPUT);
digitalWrite(LightPin, HIGH);
But i do not know what is better.WriteFast or normal?
And now i dont know the next step.How can i turn the output pin high if i push the button and turn the light in assetto corsa on.The state of the output pin should stay into this high positon until to the next button push.When i push the button next tim and turn the light in game off,the state of the outputpin should change to low.
Maybe you can help me with the button check and state change?
 
Hello Grandmaster Wotever...
Iam very confused.I would like to expand your simhub sketch.But since days only try and error...My idea is actually quite simple.I want to turn the light on in game with an additional button trough simhub.As far as no problem.But i would like to set a arduino pin to outpout for a control light or as signal pin for a grove relay.And here comes my problem...At the first i have declared
const int LightPin = 12;
int lightOn = 0;.
As next step comes
void setup()
{
pinMode(LightPin, OUTPUT);
digitalWrite(LightPin, HIGH);
But i do not know what is better.WriteFast or normal?
And now i dont know the next step.How can i turn the output pin high if i push the button and turn the light in assetto corsa on.The state of the output pin should stay into this high positon until to the next button push.When i push the button next tim and turn the light in game off,the state of the outputpin should change to low.
Maybe you can help me with the button check and state change?

Hum you are really offroad ;)

for what you are intending digitalWrite should be far enough.

The next step is to toggle the output depending of the game state, and it is where it will fail short, AC does not output the current Light state, so you can't have any feedback :(

However I've got some progress for custom hardware for the next release , and when the data is available, things like you want to do will be possible ;) https://github.com/zegreatclan/AssettoCorsaTools/wiki/Custom-Arduino-hardware-support
 
Hum you are really offroad ;)

for what you are intending digitalWrite should be far enough.

The next step is to toggle the output depending of the game state, and it is where it will fail short, AC does not output the current Light state, so you can't have any feedback :(

However I've got some progress for custom hardware for the next release , and when the data is available, things like you want to do will be possible ;) https://github.com/zegreatclan/AssettoCorsaTools/wiki/Custom-Arduino-hardware-support
This is a pity, but it is possible to change the status of the output pins by pushing the button without the game data.That is another idea for a solution.But it dosent work properly.
I haven writen into your simhub sketch:

int LightPin = 12;
int buttonState = 0;

void setup()
{

pinMode(LightPin, OUTPUT);
pinMode(BUTTON_PIN_1, INPUT);


void loop() {
buttonState = digitalRead(BUTTON_PIN_1);
if (buttonState == HIGH) {
digitalWrite(LightPin, !digitalRead(LightPin));


Now when i push the button the state will continuously switching like a rapidfire.It only stops when I release the button again and it is a matter of luck whether the status is now high or low.A little delay like 250 or 500 will help for a momentary switch a little bit.But it isnt a solution for a latching swicht.When switch latching,i have rapidfire...If you had a solution for it would be enough for me. I would be really happy.
 
Status
Not open for further replies.

Latest News

Do you prefer licensed hardware?

  • Yes for me it is vital

  • Yes, but only if it's a manufacturer I like

  • Yes, but only if the price is right

  • No, a generic wheel is fine

  • No, I would be ok with a replica


Results are only viewable after voting.
Back
Top