Touchscreen Kivy app for Raspberry Pi
Here's the scenario: I've written a gui using the python framework Kivy , and I want to run it on a raspberry pi with this touchscreen . I've done the installation fine, and TSLIB_FBDEVICE=/dev/fb1 TSLIB_TSDEVICE=/dev/input/touchscreen FRAMEBUFFER=/dev/fb1 nohup startx & gets the xwindow desktop gui running fine. I've been unable to get my kivy gui working, though. I was able to get a test tkinter application working ok, by setting the DISPLAY environment variable. I tried putting the following at the top of my kivy app, but to no avail: os.environ['SDL_VIDEODRIVER'] = 'fbcon' os.environ['SDL