Various general cleanups

Mostly from the L6470-oriented PR
This commit is contained in:
Scott Lahteine
2019-01-19 16:56:12 -06:00
parent 02cc63d6d4
commit ce563d7c2e
10 changed files with 21 additions and 21 deletions

View File

@ -105,6 +105,7 @@ current_OS = platform.system()
target_env = ''
board_name = ''
from datetime import datetime, date, time
#########
# Python 2 error messages:
@ -892,6 +893,8 @@ def run_PIO(dummy):
write_to_screen_queue('\nBoard name: ' + board_name + '\n') # put build info at the bottom of the screen
write_to_screen_queue('Build type: ' + build_type + '\n')
write_to_screen_queue('Environment used: ' + target_env + '\n')
write_to_screen_queue(str(datetime.now()) + '\n')
# end - run_PIO