Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/tutorial_samples/12_graphics.py
blob: c80c90f760faa1bd693b03f658fbfa89f95fa40c (plain)
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
DEFINE X_MAX=99
DEFINE Y_MAX=63
DEFINE X_MID=(X_MAX+1)/2
DEFINE Y_MID=(Y_MAX+1)/2

def main():
    i=1234
    
    TextOut(15,LCD_LINE1,"Display")
    NumOut(60,LCD_LINE1, i)
    PointOut(1,Y_MAX-1)
    PointOut(X_MAX-1,Y_MAX-1)
    PointOut(1,1)
    PointOut(X_MAX-1,1)
    Wait(200)
    RectOut(5,5,90,50)
    Wait(200)
    LineOut(5,5,95,55)
    Wait(200)
    LineOut(5,55,95,5)
    Wait(200)
    CircleOut(X_MID,Y_MID-2,20)
    Wait(800)
    ClearScreen()
    GraphicOut(30,10,"faceclosed.ric")
    Wait(500)
    ClearScreen()
    GraphicOut(30,10,"faceopen.ric")
    Wait(1000)