Re: Autorun delay
Posted: Sat Oct 15, 2016 1:22 pm
I just posted a new build with this feature enabled.
In your program use the following line of code to set the start up delay. The example below will set the delay to 10 seconds.
If you set it to 0 it will wait the full 30 30 normal start up delay.
The smallest number you may set it to is 1.
To detect if autorun is enabled use the following command.
if read("autorun") = "ON" then print "Autorun mode is turned on"
This setting could also be manged with the write() function too set a different value.
In your program use the following line of code to set the start up delay. The example below will set the delay to 10 seconds.
Code: Select all
write("starttimer",10)
If you set it to 0 it will wait the full 30 30 normal start up delay.
The smallest number you may set it to is 1.
To detect if autorun is enabled use the following command.
if read("autorun") = "ON" then print "Autorun mode is turned on"
This setting could also be manged with the write() function too set a different value.