-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathesp32-s2-lcd_basics.py
More file actions
46 lines (33 loc) · 985 Bytes
/
Copy pathesp32-s2-lcd_basics.py
File metadata and controls
46 lines (33 loc) · 985 Bytes
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
from micropython import const
from lib.st7735s_096_lcd import LCD
from umachine import freq
from uos import uname
from utime import sleep
WHITE = const(0xFFFF)
BLACK = const(0x0000)
BLUE = const(0x1F00)
LIME = const(0x07E0)
GREEN = const(0xE007)
MAGENTA = const(0xF81F)
def get_values() -> tuple:
values = uname()
return f'System: {values[0]}', f'Python: {values[2]}', f'Freq: {freq()}'
if __name__ == '__main__':
lcd = LCD()
sleep(1)
system_information = get_values()
lcd.fill(BLACK)
lcd.text('ESP32-S2 LCD 0.96', 2, 0, WHITE)
lcd.hline(0, 12, lcd.width, WHITE)
i = 10
for item in system_information:
i += 10
lcd.text(f'* {str(item)}', 2, i, BLUE)
lcd.fill_rect(2, 60, 20, 10, LIME)
lcd.ellipse(40, 65, 10, 5, MAGENTA, True)
lcd.fill_rect(60, 60, 40, 10, GREEN)
lcd.ellipse(120, 65, 10, 5, MAGENTA, True)
lcd.fill_rect(138, 60, 20, 10, LIME)
lcd.show()
sleep(30)
lcd.backlight_off()