├── LICENSE ├── Makefile ├── addons.make ├── bin ├── poweroff_all ├── readMe.txt ├── reboot_all ├── start_triptych └── triptych ├── obj └── linuxarmv7l │ └── Release │ └── src │ ├── main.d │ ├── main.o │ ├── triptychApp.d │ └── triptychApp.o ├── playback_settings.xml ├── readme.md └── src ├── main.cpp ├── triptychApp.cpp └── triptychApp.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/Makefile -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/addons.make -------------------------------------------------------------------------------- /bin/poweroff_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/bin/poweroff_all -------------------------------------------------------------------------------- /bin/readMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/bin/readMe.txt -------------------------------------------------------------------------------- /bin/reboot_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/bin/reboot_all -------------------------------------------------------------------------------- /bin/start_triptych: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/bin/start_triptych -------------------------------------------------------------------------------- /bin/triptych: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/bin/triptych -------------------------------------------------------------------------------- /obj/linuxarmv7l/Release/src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/obj/linuxarmv7l/Release/src/main.d -------------------------------------------------------------------------------- /obj/linuxarmv7l/Release/src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/obj/linuxarmv7l/Release/src/main.o -------------------------------------------------------------------------------- /obj/linuxarmv7l/Release/src/triptychApp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/obj/linuxarmv7l/Release/src/triptychApp.d -------------------------------------------------------------------------------- /obj/linuxarmv7l/Release/src/triptychApp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/obj/linuxarmv7l/Release/src/triptychApp.o -------------------------------------------------------------------------------- /playback_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/playback_settings.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/readme.md -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/triptychApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/src/triptychApp.cpp -------------------------------------------------------------------------------- /src/triptychApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomashollier/triptych/HEAD/src/triptychApp.h --------------------------------------------------------------------------------