Skip to content

Commit

Permalink
set time fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandervolikov committed Jul 3, 2018
1 parent 8f9f50c commit 1622aec
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.ru.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# sportiduinoPQ
# sportiduinoPQ

### версия [последнего релиза](https://github.com/alexandervolikov/SportiduinoPQ/releases) 0.1.0
### версия [последнего релиза](https://github.com/alexandervolikov/SportiduinoPQ/releases) 0.1.0

В последнем релизе можно скачать программу с exe файлом для Windows систем, установка не требуется. Либо запускать программу из под python (требуется установка PyQt).
В последнем релизе можно скачать программу с exe файлом для Windows систем, установка не требуется. Либо запускать программу из под python (требуется установка PyQt).

[English](https://github.com/alexandervolikov/SportiduinoPQ/blob/master/README.md)

В данном репозитории ведется разработка базового GUI программного обеспечения основанного на [python модуле](https://github.com/alexandervolikov/sportiduinoPython) и PyQt для работы с системой электронной отметки для спортивного ориентирования Sportiduino: https://github.com/alexandervolikov/sportIDuino
В данном репозитории ведется разработка базового GUI программного обеспечения основанного на [python модуле](https://github.com/alexandervolikov/sportiduinoPython) и PyQt для работы с системой электронной отметки для спортивного ориентирования Sportiduino: https://github.com/alexandervolikov/sportIDuino

Инструкция находится в руководстве пользователя https://github.com/alexandervolikov/sportiduino
Инструкция находится в руководстве пользователя https://github.com/alexandervolikov/sportiduino

![](https://raw.githubusercontent.com/alexandervolikov/SportiduinoPQ/master/image/main1.JPG)
9 changes: 4 additions & 5 deletions SportiduinoPQ.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import sys
sys.path.append('..')
from sportiduino import Sportiduino, SportiduinoException
from sportiduino import Sportiduino
import time
from datetime import datetime
from datetime import datetime, timedelta
import serial
import os.path

Expand Down Expand Up @@ -175,7 +175,7 @@ def SetTime_clicked(self):
return

try:
self.sportiduino.init_time_card()
self.sportiduino.init_time_card(datetime.utcnow() + timedelta(seconds=3))
self.addText ('\nset time')
except:
self.addText('\nError')
Expand Down Expand Up @@ -256,7 +256,6 @@ def ReadLog_clicked(self):
try:
data = self.sportiduino.read_backup()
self.sportiduino.beep_ok()
print(data)
try:
self.addText('\nread dump from CP: {}'.format(str(data['cp'])))
except:
Expand Down Expand Up @@ -396,7 +395,7 @@ def addText(self,text):


if __name__ == '__main__':

buffer = 1
time=datetime.today()
timeLog=[]
Expand Down

0 comments on commit 1622aec

Please sign in to comment.