├── README.md ├── ReleaseNotes.txt ├── billboard_picture.png ├── changelog.txt ├── examples.sh ├── input_test.py ├── licence.md ├── manual.pdf ├── output_test.py ├── pipresents.py ├── pp_audioplayer.py ├── pp_browserplayer.py ├── pp_controlsmanager.py ├── pp_definitions.py ├── pp_edititem.py ├── pp_editor.desktop ├── pp_editor.py ├── pp_examples.desktop ├── pp_gpio.py ├── pp_home ├── controls.cfg ├── gpio.cfg ├── keys.cfg ├── pp_plugins │ ├── krt_time.py │ ├── krt_time_message.py │ ├── krt_time_web.py │ ├── krt_weather.py │ └── krt_weather_time.py ├── pp_profiles │ ├── pp_profile │ │ ├── media.json │ │ └── pp_showlist.json │ ├── ppt_blank │ │ └── pp_showlist.json │ ├── ppt_exhibit │ │ ├── media.json │ │ └── pp_showlist.json │ ├── ppt_hyperlinkshow │ │ ├── page.json │ │ └── pp_showlist.json │ ├── ppt_interactive │ │ ├── media.json │ │ ├── menu.json │ │ └── pp_showlist.json │ ├── ppt_liveshow │ │ ├── liveshow.json │ │ └── pp_showlist.json │ ├── ppt_mediashow │ │ ├── media.json │ │ └── pp_showlist.json │ ├── ppt_menu │ │ ├── media.json │ │ └── pp_showlist.json │ ├── ppt_presentation │ │ ├── media.json │ │ └── pp_showlist.json │ └── ppt_radiobuttonshow │ │ ├── page.json │ │ └── pp_showlist.json ├── pp_resources │ ├── Thumbs.db │ ├── audio.png │ ├── bullet_ball_glass_blue.png │ ├── bullet_ball_glass_green.png │ ├── bullet_ball_glass_grey.png │ ├── bullet_ball_glass_red.png │ ├── bullet_ball_glass_yellow.png │ ├── bullet_square_blue.png │ ├── bullet_square_green.png │ ├── bullet_square_grey.png │ ├── bullet_square_red.png │ ├── bullet_square_yellow.png │ ├── bullet_triangle_blue.png │ ├── bullet_triangle_green.png │ ├── bullet_triangle_grey.png │ ├── bullet_triangle_red.png │ ├── bullet_triangle_yellow.png │ ├── message.png │ ├── show.png │ ├── video.png │ └── web.png ├── resources.cfg └── screen.cfg ├── pp_hyperlinkshow.py ├── pp_imageplayer.py ├── pp_kbddriver.py ├── pp_liveshow.py ├── pp_log.log ├── pp_medialist.py ├── pp_mediashow.py ├── pp_menushow.py ├── pp_messageplayer.py ├── pp_mplayerdriver.py ├── pp_omxdriver.py ├── pp_options.py ├── pp_pathmanager.py ├── pp_pluginmanager.py ├── pp_radiobuttonshow.py ├── pp_resourcereader.py ├── pp_screendriver.py ├── pp_showlist.py ├── pp_showmanager.py ├── pp_timeofday.py ├── pp_utils.py ├── pp_uzbldriver.py ├── pp_validate.py └── pp_videoplayer.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/ReleaseNotes.txt -------------------------------------------------------------------------------- /billboard_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/billboard_picture.png -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/changelog.txt -------------------------------------------------------------------------------- /examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/examples.sh -------------------------------------------------------------------------------- /input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/input_test.py -------------------------------------------------------------------------------- /licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/licence.md -------------------------------------------------------------------------------- /manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/manual.pdf -------------------------------------------------------------------------------- /output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/output_test.py -------------------------------------------------------------------------------- /pipresents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pipresents.py -------------------------------------------------------------------------------- /pp_audioplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_audioplayer.py -------------------------------------------------------------------------------- /pp_browserplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_browserplayer.py -------------------------------------------------------------------------------- /pp_controlsmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_controlsmanager.py -------------------------------------------------------------------------------- /pp_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_definitions.py -------------------------------------------------------------------------------- /pp_edititem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_edititem.py -------------------------------------------------------------------------------- /pp_editor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_editor.desktop -------------------------------------------------------------------------------- /pp_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_editor.py -------------------------------------------------------------------------------- /pp_examples.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_examples.desktop -------------------------------------------------------------------------------- /pp_gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_gpio.py -------------------------------------------------------------------------------- /pp_home/controls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/controls.cfg -------------------------------------------------------------------------------- /pp_home/gpio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/gpio.cfg -------------------------------------------------------------------------------- /pp_home/keys.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/keys.cfg -------------------------------------------------------------------------------- /pp_home/pp_plugins/krt_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_plugins/krt_time.py -------------------------------------------------------------------------------- /pp_home/pp_plugins/krt_time_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_plugins/krt_time_message.py -------------------------------------------------------------------------------- /pp_home/pp_plugins/krt_time_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_plugins/krt_time_web.py -------------------------------------------------------------------------------- /pp_home/pp_plugins/krt_weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_plugins/krt_weather.py -------------------------------------------------------------------------------- /pp_home/pp_plugins/krt_weather_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_plugins/krt_weather_time.py -------------------------------------------------------------------------------- /pp_home/pp_profiles/pp_profile/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/pp_profile/media.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/pp_profile/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/pp_profile/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_blank/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_blank/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_exhibit/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_exhibit/media.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_exhibit/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_exhibit/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_hyperlinkshow/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_hyperlinkshow/page.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_hyperlinkshow/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_hyperlinkshow/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_interactive/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_interactive/media.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_interactive/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_interactive/menu.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_interactive/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_interactive/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_liveshow/liveshow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_liveshow/liveshow.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_liveshow/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_liveshow/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_mediashow/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_mediashow/media.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_mediashow/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_mediashow/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_menu/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_menu/media.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_menu/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_menu/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_presentation/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_presentation/media.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_presentation/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_presentation/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_radiobuttonshow/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_radiobuttonshow/page.json -------------------------------------------------------------------------------- /pp_home/pp_profiles/ppt_radiobuttonshow/pp_showlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_profiles/ppt_radiobuttonshow/pp_showlist.json -------------------------------------------------------------------------------- /pp_home/pp_resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/Thumbs.db -------------------------------------------------------------------------------- /pp_home/pp_resources/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/audio.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_ball_glass_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_ball_glass_blue.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_ball_glass_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_ball_glass_green.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_ball_glass_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_ball_glass_grey.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_ball_glass_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_ball_glass_red.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_ball_glass_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_ball_glass_yellow.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_square_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_square_blue.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_square_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_square_green.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_square_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_square_grey.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_square_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_square_red.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_square_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_square_yellow.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_triangle_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_triangle_blue.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_triangle_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_triangle_green.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_triangle_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_triangle_grey.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_triangle_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_triangle_red.png -------------------------------------------------------------------------------- /pp_home/pp_resources/bullet_triangle_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/bullet_triangle_yellow.png -------------------------------------------------------------------------------- /pp_home/pp_resources/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/message.png -------------------------------------------------------------------------------- /pp_home/pp_resources/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/show.png -------------------------------------------------------------------------------- /pp_home/pp_resources/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/video.png -------------------------------------------------------------------------------- /pp_home/pp_resources/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/pp_resources/web.png -------------------------------------------------------------------------------- /pp_home/resources.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/resources.cfg -------------------------------------------------------------------------------- /pp_home/screen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_home/screen.cfg -------------------------------------------------------------------------------- /pp_hyperlinkshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_hyperlinkshow.py -------------------------------------------------------------------------------- /pp_imageplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_imageplayer.py -------------------------------------------------------------------------------- /pp_kbddriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_kbddriver.py -------------------------------------------------------------------------------- /pp_liveshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_liveshow.py -------------------------------------------------------------------------------- /pp_log.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pp_medialist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_medialist.py -------------------------------------------------------------------------------- /pp_mediashow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_mediashow.py -------------------------------------------------------------------------------- /pp_menushow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_menushow.py -------------------------------------------------------------------------------- /pp_messageplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_messageplayer.py -------------------------------------------------------------------------------- /pp_mplayerdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_mplayerdriver.py -------------------------------------------------------------------------------- /pp_omxdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_omxdriver.py -------------------------------------------------------------------------------- /pp_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_options.py -------------------------------------------------------------------------------- /pp_pathmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_pathmanager.py -------------------------------------------------------------------------------- /pp_pluginmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_pluginmanager.py -------------------------------------------------------------------------------- /pp_radiobuttonshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_radiobuttonshow.py -------------------------------------------------------------------------------- /pp_resourcereader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_resourcereader.py -------------------------------------------------------------------------------- /pp_screendriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_screendriver.py -------------------------------------------------------------------------------- /pp_showlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_showlist.py -------------------------------------------------------------------------------- /pp_showmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_showmanager.py -------------------------------------------------------------------------------- /pp_timeofday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_timeofday.py -------------------------------------------------------------------------------- /pp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_utils.py -------------------------------------------------------------------------------- /pp_uzbldriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_uzbldriver.py -------------------------------------------------------------------------------- /pp_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_validate.py -------------------------------------------------------------------------------- /pp_videoplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenT2/pipresents-next/HEAD/pp_videoplayer.py --------------------------------------------------------------------------------