-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.py
executable file
·61 lines (42 loc) · 1.2 KB
/
hello.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python3
'''Hello to the world from ev3dev.org'''
import os
import sys
import time
# state constants
ON = True
OFF = False
def debug_print(*args, **kwargs):
'''Print debug messages to stderr.
This shows up in the output panel in VS Code.
'''
print(*args, **kwargs, file=sys.stderr)
def reset_console():
'''Resets the console to the default state'''
print('\x1Bc', end='')
def set_cursor(state):
'''Turn the cursor on or off'''
if state:
print('\x1B[?25h', end='')
else:
print('\x1B[?25l', end='')
def set_font(name):
'''Sets the console font
A full list of fonts can be found with `ls /usr/share/consolefonts`
'''
os.system('setfont ' + name)
def main():
'''The main function of our program'''
# set the console just how we want it
reset_console()
set_cursor(OFF)
set_font('Lat15-Terminus24x12')
# print something to the screen of the device
print('Hello World!')
# print something to the output panel in VS Code
debug_print('Hello VS Code!')
# wait a bit so you have time to look at the display before the program
# exits
time.sleep(5)
if __name__ == '__main__':
main()