覆盆子piTFT显示gui与python tkinter

时间:2014-07-02 08:41:09

标签: python tkinter raspberry-pi

我正在使用来自adafruit的覆盆子pi tft显示器。树莓派显示器与python tkinter一起使用需要什么设置?

1 个答案:

答案 0 :(得分:0)

Python tkinter需要XWindow系统。您可以使用以下方式在PiTFT上启动它:

FRAMEBUFFER=/dev/fb1 startx -- -dpi 60

这里有一个很好的教程:http://raspi.tv/2014/texys-2-8-inch-touchscreen-with-raspicamcorder-step-1

接下来,您可以使用以下命令启动python tkinter脚本:

DISPLAY=:0 python <your script>

它将显示在PiTFT屏幕上。