From: Dean Camera Date: Tue, 16 Jul 2013 18:41:33 +0000 (+0200) Subject: Fix missing year offset on the TempDataLogger Python host application. X-Git-Tag: LUFA-130901-BETA~19 X-Git-Url: http://git.linex4red.de/pub/USBasp.git/commitdiff_plain/fc61e88a8d7fa209da63342be50faa507c393571?ds=sidebyside;hp=--cc Fix missing year offset on the TempDataLogger Python host application. --- fc61e88a8d7fa209da63342be50faa507c393571 diff --git a/Projects/TempDataLogger/TempLogHostApp_Python/temp_log_config.py b/Projects/TempDataLogger/TempLogHostApp_Python/temp_log_config.py index f42d02f8c..84a7562dd 100644 --- a/Projects/TempDataLogger/TempLogHostApp_Python/temp_log_config.py +++ b/Projects/TempDataLogger/TempLogHostApp_Python/temp_log_config.py @@ -53,7 +53,7 @@ def configure_temp_log_device(device, time_date, log_interval_500ms): # Followed by the time/date data report_data.extend([time_date.hour, time_date.minute, time_date.second, time_date.day, - time_date.month, time_date.year]) + time_date.month, time_date.year - 2000]) # Lastly the log interval in 500ms units of time report_data.extend([log_interval_500ms])