diff --git a/micropython/examples/inky_frame/inkylauncher/main.py b/micropython/examples/inky_frame/inkylauncher/main.py index f9e08fd1..27dabce5 100644 --- a/micropython/examples/inky_frame/inkylauncher/main.py +++ b/micropython/examples/inky_frame/inkylauncher/main.py @@ -23,41 +23,44 @@ def launcher(): graphics.set_pen(0) graphics.set_pen(5) - graphics.rectangle(0, 20, WIDTH, 50) + graphics.rectangle(0, 0, WIDTH, 50) graphics.set_pen(0) - graphics.text("Launcher", 245, 30, WIDTH, 4) + graphics.text("Launcher", 225, 10, WIDTH, 4) graphics.set_pen(4) - graphics.rectangle(30, 80, WIDTH - 100, 50) + graphics.rectangle(30, 60, WIDTH - 100, 50) graphics.set_pen(1) - graphics.text("A. NASA Picture Of the Day", 35, 95, 600, 3) + graphics.text("A. NASA Picture Of the Day", 35, 75, 600, 3) graphics.set_pen(6) - graphics.rectangle(30, 140, WIDTH - 150, 50) + graphics.rectangle(30, 120, WIDTH - 150, 50) graphics.set_pen(1) - graphics.text("B. Word Clock", 35, 155, 600, 3) + graphics.text("B. Word Clock", 35, 135, 600, 3) graphics.set_pen(2) - graphics.rectangle(30, 200, WIDTH - 200, 50) + graphics.rectangle(30, 180, WIDTH - 200, 50) graphics.set_pen(1) - graphics.text("C. Daily Activity", 35, 215, 600, 3) + graphics.text("C. Daily Activity", 35, 195, 600, 3) graphics.set_pen(3) - graphics.rectangle(30, 260, WIDTH - 250, 50) + graphics.rectangle(30, 240, WIDTH - 250, 50) graphics.set_pen(1) - graphics.text("D. Headlines", 35, 275, 600, 3) + graphics.text("D. Headlines", 35, 255, 600, 3) graphics.set_pen(0) - graphics.rectangle(30, 320, WIDTH - 300, 50) + graphics.rectangle(30, 300, WIDTH - 300, 50) graphics.set_pen(1) - graphics.text("E. Random Joke", 35, 335, 600, 3) + graphics.text("E. Random Joke", 35, 315, 600, 3) graphics.set_pen(7) - graphics.rectangle(WIDTH - 100, 80, 70, 50) - graphics.rectangle(WIDTH - 150, 140, 120, 50) - graphics.rectangle(WIDTH - 200, 200, 170, 50) - graphics.rectangle(WIDTH - 250, 260, 220, 50) - graphics.rectangle(WIDTH - 300, 320, 270, 50) + graphics.rectangle(WIDTH - 100, 60, 70, 50) + graphics.rectangle(WIDTH - 150, 120, 120, 50) + graphics.rectangle(WIDTH - 200, 180, 170, 50) + graphics.rectangle(WIDTH - 250, 240, 220, 50) + graphics.rectangle(WIDTH - 300, 300, 270, 50) + + graphics.set_pen(0) + graphics.text("Hold A + E, then press Reset, to return to the Launcher", 65, 370, 600, 2) graphics.update()