Thanks, that's a good idea, I'll try that.
Sorry, there isn't much code to see, because I kept trying different expressions and erasing them in favor of others when I couldn't get them to work. What I experienced was every for loop or switch expression I used in the setup() would just run through that code without pausing and then end up in the loop(). I hadn't considered putting an expression in the loop() part which could run only once.
If I try again and fail I will post the code that I failed with.
thebfs:
wow me to i thought for a sec somethig was wrong with my browser.
We got to see some code to give u much help.
why does your loops/ and configuration have to run in setup.
could create a initialize/config function u call useing an if statment and is never called until reset in loop. try moveing it around.
or u dont need afunctionif (setRangeAlreadyRun == False){
//check you max /min values and get it all set heresetrange.... = true;
}//then run your other code
reserve setup for initialize var nameing etc.
i think it works better but not alwasy obviously.
but if what u did doesnt work try something like that