Timed exit alternatives
in
Programming Questions
•
9 months ago
Hey all
I've had issues using the exit(); command to shut down a processing application
if (millis()>=568000) {
exit();
super.exit();
}
any suggestions for ways to make it more reliable?
i use it in conjunction with windows task scheduler, therefore if the instance doesn't close , different instances of the same application stack up, and cause hardware issues
Cheers!
I've had issues using the exit(); command to shut down a processing application
if (millis()>=568000) {
exit();
super.exit();
}
any suggestions for ways to make it more reliable?
i use it in conjunction with windows task scheduler, therefore if the instance doesn't close , different instances of the same application stack up, and cause hardware issues
Cheers!
1