├── DRV2605 └── DRV2605_lib.py ├── OSC_plus.py ├── README.md ├── ReleaseNotes.txt ├── autostart.sh ├── changelog.txt ├── favicon.ico ├── input_device.py ├── input_test.py ├── licence.md ├── manual.pdf ├── output_test.py ├── pipresents.py ├── pp_animate.py ├── pp_artliveshow.py ├── pp_artmediashow.py ├── pp_artshow.py ├── pp_audiomanager.py ├── pp_beepplayer.py ├── pp_config ├── pp_audio.cfg ├── pp_display.cfg ├── pp_editor.cfg ├── pp_email.cfg └── pp_web.cfg ├── pp_control.sh ├── pp_controlsmanager.py ├── pp_countermanager.py ├── pp_definitions.py ├── pp_displaymanager.py ├── pp_editor.desktop ├── pp_gapshow.py ├── pp_gtkutils.py ├── pp_hyperlinkshow.py ├── pp_i2cdevices.py ├── pp_imageplayer.py ├── pp_io_config └── keys.cfg ├── pp_io_plugins ├── pp_DRV2605driver.py ├── pp_aplaydriver.py ├── pp_exampledriver.py ├── pp_gpiodriver.py ├── pp_gpiozerodriver.py ├── pp_i2cdriver.py ├── pp_inputdevicedriver.py ├── pp_kbddriver.py ├── pp_kbddriver_plus.py ├── pp_pigpiodriver.py ├── pp_pn532driver.py └── pp_serialdriver.py ├── pp_iopluginmanager.py ├── pp_livelist.py ├── pp_livelistfetcher.py ├── pp_liveshow.py ├── pp_logs ├── pp_log.txt └── pp_stats.txt ├── pp_manager.py ├── pp_medialist.py ├── pp_mediashow.py ├── pp_menuplayer.py ├── pp_menushow.py ├── pp_messageplayer.py ├── pp_mpvdriver.py ├── pp_mpvplayer.py ├── pp_network.py ├── pp_options.py ├── pp_oscconfig.py ├── pp_oscdriver.py ├── pp_oscmonitor.py ├── pp_oscremote.py ├── pp_oscwebconfig.py ├── pp_pathmanager.py ├── pp_player.py ├── pp_radiobuttonshow.py ├── pp_resources ├── audio.png ├── billboard_picture.png ├── bullet.png ├── button.jpg ├── chrome.png ├── message.png ├── mpv.png ├── pp_templates │ ├── DRV2605.cfg │ ├── I2C.cfg │ ├── aplay.cfg │ ├── exampledriver.cfg │ ├── gpio.cfg │ ├── gpiozero.cfg │ ├── keys.cfg │ ├── keys_plus.cfg │ ├── osmcremote.cfg │ ├── pigpio.cfg │ ├── pn532.cfg │ ├── ppt_artliveshow_1p6 │ │ ├── artliveshow.json │ │ └── pp_showlist.json │ ├── ppt_artmediashow_1p6 │ │ ├── artmediashow.json │ │ └── pp_showlist.json │ ├── ppt_blank_1p6 │ │ └── pp_showlist.json │ ├── ppt_exhibit_1p6 │ │ ├── mediashow.json │ │ └── pp_showlist.json │ ├── ppt_hyperlinkshow_1p6 │ │ ├── hyperlinkshow.json │ │ └── pp_showlist.json │ ├── ppt_interactive_1p6 │ │ ├── mediashow.json │ │ └── pp_showlist.json │ ├── ppt_liveshow_1p6 │ │ ├── liveshow.json │ │ └── pp_showlist.json │ ├── ppt_mediashow_1p6 │ │ ├── mediashow.json │ │ └── pp_showlist.json │ ├── ppt_menu_1p6 │ │ ├── menushow.json │ │ └── pp_showlist.json │ ├── ppt_presentation_1p6 │ │ ├── mediashow.json │ │ └── pp_showlist.json │ ├── ppt_radiobuttonshow_1p6 │ │ ├── pp_showlist.json │ │ └── radiobuttonshow.json │ ├── screen.cfg │ └── serialdriver.cfg ├── show.png ├── video.png ├── vlc.png └── web.png ├── pp_screendriver.py ├── pp_show.py ├── pp_showlist.py ├── pp_showmanager.py ├── pp_statsrecorder.py ├── pp_timeofday.py ├── pp_trackpluginmanager.py ├── pp_utils.py ├── pp_vibeplayer.py ├── pp_web_edititem.py ├── pp_web_editor.py ├── pp_web_validate.py ├── pp_webkitplayer.py ├── pynfc ├── COPYING ├── README ├── __init__.py └── src │ ├── __init__.py │ ├── mifareauth.py │ ├── nfc.py │ └── nfcuid.py ├── remi ├── LICENSE ├── README.md ├── __init__.py ├── gui.py ├── res │ ├── file.png │ ├── folder.png │ ├── font.woff2 │ ├── logo.png │ ├── logo.svg │ ├── minus.png │ ├── plus.png │ ├── screenshot.png │ └── style.css └── server.py ├── remi_plus.py ├── restart.sh ├── trin94.py ├── trin94 ├── .gitignore ├── LICENSE ├── Readme.md ├── main.py ├── requirements.txt └── test.webm └── widgets_overview_app.py /DRV2605/DRV2605_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/DRV2605/DRV2605_lib.py -------------------------------------------------------------------------------- /OSC_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/OSC_plus.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/ReleaseNotes.txt -------------------------------------------------------------------------------- /autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/autostart.sh -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/changelog.txt -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/favicon.ico -------------------------------------------------------------------------------- /input_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/input_device.py -------------------------------------------------------------------------------- /input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/input_test.py -------------------------------------------------------------------------------- /licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/licence.md -------------------------------------------------------------------------------- /manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/manual.pdf -------------------------------------------------------------------------------- /output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/output_test.py -------------------------------------------------------------------------------- /pipresents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pipresents.py -------------------------------------------------------------------------------- /pp_animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_animate.py -------------------------------------------------------------------------------- /pp_artliveshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_artliveshow.py -------------------------------------------------------------------------------- /pp_artmediashow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_artmediashow.py -------------------------------------------------------------------------------- /pp_artshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_artshow.py -------------------------------------------------------------------------------- /pp_audiomanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_audiomanager.py -------------------------------------------------------------------------------- /pp_beepplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_beepplayer.py -------------------------------------------------------------------------------- /pp_config/pp_audio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_config/pp_audio.cfg -------------------------------------------------------------------------------- /pp_config/pp_display.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_config/pp_display.cfg -------------------------------------------------------------------------------- /pp_config/pp_editor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_config/pp_editor.cfg -------------------------------------------------------------------------------- /pp_config/pp_email.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_config/pp_email.cfg -------------------------------------------------------------------------------- /pp_config/pp_web.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_config/pp_web.cfg -------------------------------------------------------------------------------- /pp_control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_control.sh -------------------------------------------------------------------------------- /pp_controlsmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_controlsmanager.py -------------------------------------------------------------------------------- /pp_countermanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_countermanager.py -------------------------------------------------------------------------------- /pp_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_definitions.py -------------------------------------------------------------------------------- /pp_displaymanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_displaymanager.py -------------------------------------------------------------------------------- /pp_editor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_editor.desktop -------------------------------------------------------------------------------- /pp_gapshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_gapshow.py -------------------------------------------------------------------------------- /pp_gtkutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_gtkutils.py -------------------------------------------------------------------------------- /pp_hyperlinkshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_hyperlinkshow.py -------------------------------------------------------------------------------- /pp_i2cdevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_i2cdevices.py -------------------------------------------------------------------------------- /pp_imageplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_imageplayer.py -------------------------------------------------------------------------------- /pp_io_config/keys.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_config/keys.cfg -------------------------------------------------------------------------------- /pp_io_plugins/pp_DRV2605driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_DRV2605driver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_aplaydriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_aplaydriver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_exampledriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_exampledriver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_gpiodriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_gpiodriver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_gpiozerodriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_gpiozerodriver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_i2cdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_i2cdriver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_inputdevicedriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_inputdevicedriver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_kbddriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_kbddriver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_kbddriver_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_kbddriver_plus.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_pigpiodriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_pigpiodriver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_pn532driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_pn532driver.py -------------------------------------------------------------------------------- /pp_io_plugins/pp_serialdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_io_plugins/pp_serialdriver.py -------------------------------------------------------------------------------- /pp_iopluginmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_iopluginmanager.py -------------------------------------------------------------------------------- /pp_livelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_livelist.py -------------------------------------------------------------------------------- /pp_livelistfetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_livelistfetcher.py -------------------------------------------------------------------------------- /pp_liveshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_liveshow.py -------------------------------------------------------------------------------- /pp_logs/pp_log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pp_logs/pp_stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_logs/pp_stats.txt -------------------------------------------------------------------------------- /pp_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_manager.py -------------------------------------------------------------------------------- /pp_medialist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_medialist.py -------------------------------------------------------------------------------- /pp_mediashow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_mediashow.py -------------------------------------------------------------------------------- /pp_menuplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_menuplayer.py -------------------------------------------------------------------------------- /pp_menushow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_menushow.py -------------------------------------------------------------------------------- /pp_messageplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_messageplayer.py -------------------------------------------------------------------------------- /pp_mpvdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_mpvdriver.py -------------------------------------------------------------------------------- /pp_mpvplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_mpvplayer.py -------------------------------------------------------------------------------- /pp_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_network.py -------------------------------------------------------------------------------- /pp_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_options.py -------------------------------------------------------------------------------- /pp_oscconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_oscconfig.py -------------------------------------------------------------------------------- /pp_oscdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_oscdriver.py -------------------------------------------------------------------------------- /pp_oscmonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_oscmonitor.py -------------------------------------------------------------------------------- /pp_oscremote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_oscremote.py -------------------------------------------------------------------------------- /pp_oscwebconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_oscwebconfig.py -------------------------------------------------------------------------------- /pp_pathmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_pathmanager.py -------------------------------------------------------------------------------- /pp_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_player.py -------------------------------------------------------------------------------- /pp_radiobuttonshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_radiobuttonshow.py -------------------------------------------------------------------------------- /pp_resources/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/audio.png -------------------------------------------------------------------------------- /pp_resources/billboard_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/billboard_picture.png -------------------------------------------------------------------------------- /pp_resources/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/bullet.png -------------------------------------------------------------------------------- /pp_resources/button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/button.jpg -------------------------------------------------------------------------------- /pp_resources/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/chrome.png -------------------------------------------------------------------------------- /pp_resources/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/message.png -------------------------------------------------------------------------------- /pp_resources/mpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/mpv.png -------------------------------------------------------------------------------- /pp_resources/pp_templates/DRV2605.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/DRV2605.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/I2C.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/I2C.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/aplay.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/aplay.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/exampledriver.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/exampledriver.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/gpio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/gpio.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/gpiozero.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/gpiozero.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/keys.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/keys.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/keys_plus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/keys_plus.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/osmcremote.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/osmcremote.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/pigpio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/pigpio.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/pn532.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/pn532.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_artliveshow_1p6/artliveshow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_artliveshow_1p6/artliveshow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_artliveshow_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_artliveshow_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_artmediashow_1p6/artmediashow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_artmediashow_1p6/artmediashow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_artmediashow_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_artmediashow_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_blank_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_blank_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_exhibit_1p6/mediashow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_exhibit_1p6/mediashow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_exhibit_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_exhibit_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_hyperlinkshow_1p6/hyperlinkshow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_hyperlinkshow_1p6/hyperlinkshow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_hyperlinkshow_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_hyperlinkshow_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_interactive_1p6/mediashow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_interactive_1p6/mediashow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_interactive_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_interactive_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_liveshow_1p6/liveshow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_liveshow_1p6/liveshow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_liveshow_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_liveshow_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_mediashow_1p6/mediashow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_mediashow_1p6/mediashow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_mediashow_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_mediashow_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_menu_1p6/menushow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_menu_1p6/menushow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_menu_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_menu_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_presentation_1p6/mediashow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_presentation_1p6/mediashow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_presentation_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_presentation_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_radiobuttonshow_1p6/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_radiobuttonshow_1p6/pp_showlist.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/ppt_radiobuttonshow_1p6/radiobuttonshow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/ppt_radiobuttonshow_1p6/radiobuttonshow.json -------------------------------------------------------------------------------- /pp_resources/pp_templates/screen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/screen.cfg -------------------------------------------------------------------------------- /pp_resources/pp_templates/serialdriver.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/pp_templates/serialdriver.cfg -------------------------------------------------------------------------------- /pp_resources/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/show.png -------------------------------------------------------------------------------- /pp_resources/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/video.png -------------------------------------------------------------------------------- /pp_resources/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/vlc.png -------------------------------------------------------------------------------- /pp_resources/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_resources/web.png -------------------------------------------------------------------------------- /pp_screendriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_screendriver.py -------------------------------------------------------------------------------- /pp_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_show.py -------------------------------------------------------------------------------- /pp_showlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_showlist.py -------------------------------------------------------------------------------- /pp_showmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_showmanager.py -------------------------------------------------------------------------------- /pp_statsrecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_statsrecorder.py -------------------------------------------------------------------------------- /pp_timeofday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_timeofday.py -------------------------------------------------------------------------------- /pp_trackpluginmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_trackpluginmanager.py -------------------------------------------------------------------------------- /pp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_utils.py -------------------------------------------------------------------------------- /pp_vibeplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_vibeplayer.py -------------------------------------------------------------------------------- /pp_web_edititem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_web_edititem.py -------------------------------------------------------------------------------- /pp_web_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_web_editor.py -------------------------------------------------------------------------------- /pp_web_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_web_validate.py -------------------------------------------------------------------------------- /pp_webkitplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pp_webkitplayer.py -------------------------------------------------------------------------------- /pynfc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pynfc/COPYING -------------------------------------------------------------------------------- /pynfc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pynfc/README -------------------------------------------------------------------------------- /pynfc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pynfc/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pynfc/src/mifareauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pynfc/src/mifareauth.py -------------------------------------------------------------------------------- /pynfc/src/nfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pynfc/src/nfc.py -------------------------------------------------------------------------------- /pynfc/src/nfcuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/pynfc/src/nfcuid.py -------------------------------------------------------------------------------- /remi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/LICENSE -------------------------------------------------------------------------------- /remi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/README.md -------------------------------------------------------------------------------- /remi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/__init__.py -------------------------------------------------------------------------------- /remi/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/gui.py -------------------------------------------------------------------------------- /remi/res/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/res/file.png -------------------------------------------------------------------------------- /remi/res/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/res/folder.png -------------------------------------------------------------------------------- /remi/res/font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/res/font.woff2 -------------------------------------------------------------------------------- /remi/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/res/logo.png -------------------------------------------------------------------------------- /remi/res/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/res/logo.svg -------------------------------------------------------------------------------- /remi/res/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/res/minus.png -------------------------------------------------------------------------------- /remi/res/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/res/plus.png -------------------------------------------------------------------------------- /remi/res/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/res/screenshot.png -------------------------------------------------------------------------------- /remi/res/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/res/style.css -------------------------------------------------------------------------------- /remi/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi/server.py -------------------------------------------------------------------------------- /remi_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/remi_plus.py -------------------------------------------------------------------------------- /restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/restart.sh -------------------------------------------------------------------------------- /trin94.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/trin94.py -------------------------------------------------------------------------------- /trin94/.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | .idea 3 | -------------------------------------------------------------------------------- /trin94/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/trin94/LICENSE -------------------------------------------------------------------------------- /trin94/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/trin94/Readme.md -------------------------------------------------------------------------------- /trin94/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/trin94/main.py -------------------------------------------------------------------------------- /trin94/requirements.txt: -------------------------------------------------------------------------------- 1 | PyOpenGl>=3.1.6 2 | mpv>=1.0.3 3 | PyGObject>=3.42.1 4 | -------------------------------------------------------------------------------- /trin94/test.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/trin94/test.webm -------------------------------------------------------------------------------- /widgets_overview_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-gtk/HEAD/widgets_overview_app.py --------------------------------------------------------------------------------