top of page

Pico Display PackでHelloと表示するプログラムを作成しました。

更新日:2021年7月18日

Pico Display Packであらゆるプログラムで自作の際に最初に作成する定番のHelloと表示するプログラムを作成しました。


なお、プログラムはサンプルプログラムのbuttons.pyをもとに作成しています。


Pico Display Packの設定とサンプルプログラムについては下記の記事をご確認ください。


作成したプログラムは下記の通りです。


# Hello

import picodisplay as display

import utime


# Initialise display with a bytearray display buffer

buf = bytearray(display.get_width() * display.get_height() * 2)

display.init(buf)

display.set_backlight(0.5)


# sets up a handy function we can call to clear the screen

def clear():

display.set_pen(0, 0, 0)

display.clear()

display.update()

while True:

display.set_pen(255, 0, 0)

display.text("Hello", 10, 10, 240, 7)

display.update()


表示は下記のように表示されます。



閲覧数:96回

Comments


bottom of page