- Plotting added - Statistic calculation added - Save measurement data as XLSX feature added - Test controller functionality extracted from the GUI class
4 lines
108 B
Python
4 lines
108 B
Python
import time
|
|
|
|
def time_to_str(t: float) -> str:
|
|
return time.strftime("%d-%m-%Y %H:%M:%S", time.gmtime(t)) |