27.08.2019, 07:52
You could do it from visu with such script
Code:
date = grp.getvalue('date_object')
time = grp.getvalue('time_object')
cmd = string.format("date -s '%d-%d-%d %d:%d:%d'", date.year, date.month, date.day, time.hour, time.minute, time.second)
os.execute(cmd)
------------------------------
Ctrl+F5
Ctrl+F5