forked from LIKO-12/LIKO-12
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebugrun.lua
30 lines (28 loc) · 866 Bytes
/
debugrun.lua
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
function _auto_init()
api.showkeyboard(true)
api.points(1,1, 192,1, 192,128, 1,128, 8)
api.points(0,1, 193,1, 193,128, 0,128, 3)
api.points(1,0, 192,0, 192,129, 1,129, 3)
api.rect_line(2,2, 190,126, 12)
--api.line(2,2,191,2,191,127,2,127,2,2,12)
api.line(2,2, 191,127, 9)
api.line(191, 2,2,127, 9)
--api.rect(10,10,10,10,9)
api.Image(api.ImageData(10,10):map(function() return 13 end)):draw(10,10)
api.rect(10,42,10,10,9)
api.rect(10,30,10,10,9)
api.rect_line(10,30,10,10,8)
api.points(10,10, 10,19, 19,19, 19,10, 8)
api.color(8)
api.print_grid("0 TEST",1,1)
end
function _auto_update() end
function _auto_tpress() end
function _auto_tmove() end
function _auto_trelease() end
function _auto_mpress() end
function _auto_mmove() end
function _auto_mrelease() end
function _auto_tinput() end
function _auto_kpress() end
function _auto_krelease() end