Commit 5b6499ff authored by Methsarani's avatar Methsarani

add vehicle queue code

parent e5973a10
import schedule, time,datetime
import numpy as np
def sum():
sum = 4+5
print("Exite time is ", sum, ";", "Vehicle Schadule Exit Time :", datetime.datetime.now())
#print("Vehicle Schadule Exit Time :", datetime.datetime.now())
#schedule.every().day.at("11:59").do(sum)
schedule.every(10).seconds.do(sum)
while True:
schedule.run_pending()
time.sleep(1)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment