I need to convert the timestruct I get from Beckhoffs function block "FB_LocalSystemTime" to milliseconds since epoch to receive the local computer time in milliseconds.
Unfortunately I can't find a function to convert this timestruct. Any help is appreciated.
//Local Systemtime variables
fbTime : FB_LocalSystemTime := ( bEnable := TRUE, dwCycle := 1 );
I think you can use
DT_TO_DINT
after converting theTIMESTRUCT
toDT
. This should give you seconds since Jan 1, 1970.EDIT: This code should give you milliseconds since 1/1/1970.