Shen_yanming

Results 2 comments of Shen_yanming

time_params = mycam.devicemgmt.create_type('SetSystemDateAndTime') time_params.DateTimeType = 'Manual' time_params.DaylightSavings = True TZ = {'TZ':'CST-8:00:00'} time_params.TimeZone = TZ Data = {'Year':2022,'Month':8,'Day':18} Time = {'Hour':8,'Minute':8,'Second':8} UTC = {'Date':Data,'Time':Time} time_params.UTCDateTime = UTC t1 = mycam.devicemgmt.SetSystemDateAndTime(time_params)...