Asked
— Edited

I'm having a headache trying to comparing time. I have a variable $CustomerTime . It holds the last time motion was detected in the customer area. My plan is to have my robot look like he has fallen asleep. So I have the current time $time being stuffed into $CustomerTime each time motion is detected. So I want the robot to go to sleep when there has not been any motion in the last 10 minuets. I have the sleep and wake scripts working fine. But this comparing time is a pain.
Are you going to share your code on how you are doing that, or trying to do that?
you will have to adjust this some but it is an example of how you could go about doing this. More logic would need to be put in place to account for hours greater than 9, but it could easily be moved up to be held within the if statement.
This is perhaps an easier way to perform what you are seeking. Instead of making $CustomerTime = $time which gives you hour, minutes and seconds, you really only need to look at the minutes after motion is detected.
That won't work if it goes past 60. Your logic only works if the current minute is less than 52. You have to account for the hour also.
Sorry I did not post my code. There wasn't enough code to call it code yet. Bt here it is:
As you can see I did not get vary far. I was stumbling over the hours vers min. In my variable $AssociateTime holds the hole time and not just the min, because it would be possible for the minuets to be less then the limit and yet have the hour gone over the limit. So I gues first I must compare hours then minuets. I'm thinking I will re doo my $AssociateTime and change that to $AssociateTimeHour and on $AssociateTimeMin . I will then compare the hours first and last the min. hhmmm.....
I think he only wants to check to see if 10 minutes have passed with no Motion for his robot to pretend to sleep.
If you needed to go passed 60, you would need to incorporate the $hour variable, and that is very good catch David, if the time Motion was detected happened to be 50 or higher the logic of the script would fail, but it can be fixed with another variable by checking the hour.
Edited: I added a less than hour check incase the time was 2300 hours
this allows the system to calculate the hour and minute calculation for you.