-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
61 lines (60 loc) · 1.05 KB
/
main.ts
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
input.onButtonEvent(Button.A, ButtonEvent.Click, function () {
LCD1IN8.DisString(
30,
10,
"ABCabcXYZxyz123456789.,-&()/#+*:;_~}!",
COLOR.WHITE
)
LCD1IN8.DisNumber(
10,
70,
1835245,
COLOR.WHITE
)
LCD1IN8.setDisplayInverseMode(true)
LCD1IN8.setColorScheme(ColorScheme.BGR)
})
input.onButtonEvent(Button.B, ButtonEvent.Click, function () {
LCD1IN8.DrawPoint(
20,
20,
57607,
DOT_PIXEL.DOT_PIXEL_4
)
LCD1IN8.DrawCircle(
80,
60,
20,
36467,
DRAW_FILL.DRAW_EMPTY,
DOT_PIXEL.DOT_PIXEL_2
)
LCD1IN8.setDisplayInverseMode(false)
})
input.onButtonEvent(Button.AB, ButtonEvent.Click, function () {
LCD1IN8.DrawRectangle(
10,
90,
150,
118,
5285,
DRAW_FILL.DRAW_EMPTY,
DOT_PIXEL.DOT_PIXEL_1
)
LCD1IN8.setColorScheme(ColorScheme.RGB)
})
LCD1IN8.LCD_Init()
LCD1IN8.LCD_Clear()
LCD1IN8.DrawLine(
10,
10,
139,
10,
63519,
DOT_PIXEL.DOT_PIXEL_1,
LINE_STYLE.LINE_DOTTED
)
basic.showNumber(1)
basic.pause(500)
basic.forever(function () {
})