I’m not a Rasberry Pi user, but taking a quick look at the docs…
There are a set of env variables described on the bottom of the page: https://kivy.org/doc/stable/guide/environment.html#environment
It looks like this might help.
KIVY_BCM_DISPMANX_ID
Change the default Raspberry Pi display to use. The list of available value is accessible in vc_dispmanx_types.h. Default value is 0:
· 0: DISPMANX_ID_MAIN_LCD
· 1: DISPMANX_ID_AUX_LCD
· 2: DISPMANX_ID_HDMI
· 3: DISPMANX_ID_SDTV
· 4: DISPMANX_ID_FORCE_LCD
· 5: DISPMANX_ID_FORCE_TV
· 6: DISPMANX_ID_FORCE_OTHER
KIVY_BCM_DISPMANX_LAYER
Change the default Raspberry Pi dispmanx layer. Default value is 0.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/ece4de1b-5c08-426b-88d2-fbdad4a1a7f6%40googlegroups.com.
Go into the [input]
section, remove the lines that are in there and put in:
mouse = mouse
mtdev_%(name)s = probesysfs,provider=mtdev
hid_%(name)s = probesysfs,provider=hidinput
BINGO, it works!