前回までの状況はこちら。
今回は複数の文字を表示させます。
これもサンプルコードをPython用に書き換えました。
def GLCDPuts(Xp, Yp, text):
x = Xp
for s in text:
GLCDPutc(x, Yp, s)
x += 6
やってることはそんなに難しくはありませんでした。
文字と文字の間隔は1ドット空けています。
def __main():
PinsInit(20, 7, 8, 9, 18, 19, 10, 11, 12, 13, 14, 15, 16, 17)
GLCDInit()
GLCDDisplayClear()
GLCDPuts(40, 10, "ABCDE")
try:
while True:
time.sleep(1.0)
except KeyboardInterrupt:
GPIO.cleanup()