Skip to content

Commit

Permalink
update version date
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonWong08 committed Jun 6, 2023
1 parent 487ecbf commit a750622
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyUI/translate.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
versionNum = '1.0.3'
dateStr = '2023-05-29'
dateStr = '2023-06-06'

textEN = {
'lan':'English',
Expand Down
4 changes: 2 additions & 2 deletions serialMaster/ardSerial.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,10 @@ def printSerialMessage(port, token, timeout=0):
logger.debug(f"responseTrim is: {responseTrim}")
if responseTrim.lower() == token.lower():
return [response, allPrints]
elif token == 'p' and responseTrim[0].lower() == 'k':
elif token == 'p' and responseTrim == 'k':
return [response, allPrints]
else:
print(response, flush=True)
# print(response, flush=True)
allPrints += response
now = time.time()
if (now - startTime) > threshold:
Expand Down

0 comments on commit a750622

Please sign in to comment.