├── .gitignore ├── Auto booting into your own program with Raspbian.txt ├── GenerativeExample ├── GenerativeExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── MultiScreenExample3D Debug.xcscheme │ │ │ └── MultiScreenExample3D Release.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── Fonts │ │ └── DIN.otf ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── HelloWorld ├── HelloWorld.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── emptyExample Debug.xcscheme │ │ │ └── emptyExample Release.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── DIN.otf ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── MultiScreenExample2D ├── Makefile ├── MultiScreenExample2D.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── MultiScreenExample2D Debug.xcscheme │ │ │ └── MultiScreenExample2D Release.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── Fonts │ │ └── DIN.otf │ │ └── Settings │ │ ├── ClientSettings.xml │ │ └── ServerSettings.xml ├── openFrameworks-Info.plist └── src │ ├── ClientOSCManager.cpp │ ├── ClientOSCManager.h │ ├── CommonTimeBase.cpp │ ├── CommonTimeBase.h │ ├── CommonTimeOsc.cpp │ ├── CommonTimeOsc.h │ ├── MathHelpers.h │ ├── Particle.h │ ├── ServerOscManager.cpp │ ├── ServerOscManager.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── MultiScreenExample3D ├── Makefile ├── MultiScreenExample3D.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── MultiScreenExample3D Debug.xcscheme │ │ │ └── MultiScreenExample3D Release.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── Fonts │ │ └── DIN.otf │ │ └── Settings │ │ ├── ClientSettings.xml │ │ └── ServerSettings.xml ├── config.make ├── openFrameworks-Info.plist └── src │ ├── ClientOSCManager.cpp │ ├── ClientOSCManager.h │ ├── CommonTimeBase.cpp │ ├── CommonTimeBase.h │ ├── CommonTimeOsc.cpp │ ├── CommonTimeOsc.h │ ├── ServerOscManager.cpp │ ├── ServerOscManager.h │ ├── SyncedAnimationObject.h │ ├── TiledCameraView.h │ ├── WanderingStreamer.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── MultiScreenSimpleSync ├── Makefile ├── MultiScreenExampleSimple.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── MultiScreenExampleSimple Debug.xcscheme │ │ │ └── MultiScreenExampleSimple Release.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── Fonts │ │ └── DIN.otf ├── openFrameworks-Info.plist └── src │ ├── Client │ ├── ClientOSCManager.cpp │ └── ClientOSCManager.h │ ├── CommonTime │ ├── CommonTimeBase.cpp │ ├── CommonTimeBase.h │ ├── CommonTimeOsc.cpp │ └── CommonTimeOsc.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── NetworkedCV ├── Makefile ├── NetworkedCV.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── MultiScreenExample3D Debug.xcscheme │ │ │ └── MultiScreenExample3D Release.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── Fonts │ │ └── DIN.otf │ │ ├── Movies │ │ └── fingers.mov │ │ └── Settings │ │ ├── ClientSettings.xml │ │ └── ServerSettings.xml ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── OpenNI2AppExample ├── .gitignore ├── Makefile ├── OpenNI2AppExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── Project.xcconfig ├── README.txt ├── addons.make ├── addons │ └── ofxOpenNI2Grabber │ │ ├── libs │ │ ├── libfreenect │ │ │ ├── include │ │ │ │ └── libfreenect │ │ │ │ │ ├── libfreenect-registration.h │ │ │ │ │ ├── libfreenect.h │ │ │ │ │ └── libfreenect_sync.h │ │ │ └── libs │ │ │ │ ├── libfreenect.a │ │ │ │ └── libfreenect_sync.a │ │ └── openni2 │ │ │ ├── include │ │ │ ├── Android-Arm │ │ │ │ └── OniPlatformAndroid-Arm.h │ │ │ ├── Driver │ │ │ │ ├── OniDriverAPI.h │ │ │ │ └── OniDriverTypes.h │ │ │ ├── Linux-Arm │ │ │ │ └── OniPlatformLinux-Arm.h │ │ │ ├── Linux-x86 │ │ │ │ └── OniPlatformLinux-x86.h │ │ │ ├── MacOSX │ │ │ │ └── OniPlatformMacOSX.h │ │ │ ├── OniCAPI.h │ │ │ ├── OniCEnums.h │ │ │ ├── OniCProperties.h │ │ │ ├── OniCTypes.h │ │ │ ├── OniEnums.h │ │ │ ├── OniPlatform.h │ │ │ ├── OniProperties.h │ │ │ ├── OniVersion.h │ │ │ ├── OpenNI.h │ │ │ ├── PS1080.h │ │ │ └── Win32 │ │ │ │ └── OniPlatformWin32.h │ │ │ ├── libs │ │ │ ├── osx │ │ │ │ ├── OpenNI2 │ │ │ │ │ └── Drivers │ │ │ │ │ │ ├── libDummyDevice.dylib │ │ │ │ │ │ ├── libFreenectDriver.dylib │ │ │ │ │ │ ├── libOniFile.dylib │ │ │ │ │ │ └── libPS1080.dylib │ │ │ │ ├── libMWClosestPoint.a │ │ │ │ ├── libOpenNI2.a │ │ │ │ └── libXnLib.a │ │ │ └── rpi │ │ │ │ ├── OpenNI2 │ │ │ │ └── Drivers │ │ │ │ │ ├── libDummyDevice.so │ │ │ │ │ ├── libFreenectDriver.so │ │ │ │ │ ├── libOniFile.so │ │ │ │ │ └── libPS1080.so │ │ │ │ ├── libOpenNI2.a │ │ │ │ ├── libOpenNI2.so │ │ │ │ └── libXnLib.a │ │ │ └── udev_rules_for_xtion_pro │ │ │ ├── 55-primesense-usb.rules │ │ │ └── README.txt │ │ └── src │ │ ├── DepthSource.cpp │ │ ├── DepthSource.h │ │ ├── DeviceController.cpp │ │ ├── DeviceController.h │ │ ├── RGBSource.cpp │ │ ├── RGBSource.h │ │ ├── ofxOpenNI2Grabber.cpp │ │ ├── ofxOpenNI2Grabber.h │ │ ├── ofxOpenNI2GrabberSettings.h │ │ ├── ofxOpenNI2Recorder.cpp │ │ └── ofxOpenNI2Recorder.h ├── bin │ └── data │ │ ├── current │ │ └── .gitkeep │ │ └── downloadSampleFile.sh ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── PS3EyeGrabber ├── .gitignore ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── README.md ├── Screenshots ├── GenerativeExample.png ├── HelloWorld.png ├── MultiScreenExample2D.png ├── MultiScreenExample3D.png ├── ShaderLiveCoding.png ├── Small │ ├── GenerativeExample.jpg │ ├── HelloWorld.jpg │ ├── MultiScreenExample2D.jpg │ ├── MultiScreenExample3D.jpg │ └── ShaderLiveCoding.jpg ├── wiringPiPotentiometerExampleSPI.fzz └── wiringPiPotentiometerExampleSPI_bb.jpg ├── ShaderExample_AlphaMasking ├── .gitignore ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── A.jpg │ │ ├── AlphaMasking_GLES.frag │ │ ├── AlphaMasking_GLES.vert │ │ ├── B.jpg │ │ └── brush.png ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ShaderExample_Billboard ├── .gitignore ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── Billboard.frag │ │ ├── Billboard.vert │ │ ├── BillboardGLES.frag │ │ ├── BillboardGLES.vert │ │ └── dot.png ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ShaderExample_Empty ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── Empty_GLES.frag │ │ └── Empty_GLES.vert ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ShaderExample_LED ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── LED_GLES.frag │ │ └── LED_GLES.vert ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ShaderExample_MotionBlur ├── .gitignore ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── MotionBlur_GLES.frag │ │ ├── MotionBlur_GLES.vert │ │ └── brick.jpg ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ShaderExample_Multitexture ├── .gitignore ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── Multitexture_GLES.frag │ │ ├── Multitexture_GLES.vert │ │ ├── brick.jpg │ │ └── tex1.jpg ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ShaderExample_PostProcessing ├── .gitignore ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── PostProcessing_GLES.frag │ │ ├── PostProcessing_GLES.vert │ │ └── brick.jpg ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ShaderLiveCodingExample ├── Makefile ├── Project.xcconfig ├── ShaderLiveCoding.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── StandaloneTimingServer Debug.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ ├── StandaloneTimingServer Release.xcscheme │ │ └── xcschememanagement.plist ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── Fonts │ │ └── DIN.otf │ │ ├── Shaders │ │ ├── Empty.frag │ │ ├── Empty.vert │ │ ├── LiveShader.frag │ │ ├── LiveShader.vert │ │ ├── LiveShaderDesktop.frag │ │ └── LiveShaderDesktop.vert │ │ └── Textures │ │ └── landangui.jpg ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofxAutoReloadedShader.cpp │ ├── ofxAutoReloadedShader.h │ ├── testApp.cpp │ └── testApp.h ├── StandaloneTimingServer ├── Makefile ├── Project.xcconfig ├── StandaloneTimingServer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── StandaloneTimingServer Debug.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ ├── StandaloneTimingServer Release.xcscheme │ │ └── xcschememanagement.plist ├── addons.make ├── bin │ └── data │ │ └── Settings │ │ └── ServerSettings.xml ├── config.make ├── openFrameworks-Info.plist └── src │ ├── MasterServerOsc.cpp │ ├── MasterServerOsc.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── VideoShaderLiveCoding ├── .gitignore ├── Makefile ├── addons.make ├── addons │ └── ofxOMXPlayer │ │ ├── libs │ │ ├── ffmpeg │ │ │ ├── include │ │ │ │ ├── libavcodec │ │ │ │ │ ├── avcodec.h │ │ │ │ │ ├── avfft.h │ │ │ │ │ ├── dxva2.h │ │ │ │ │ ├── old_codec_ids.h │ │ │ │ │ ├── vaapi.h │ │ │ │ │ ├── vda.h │ │ │ │ │ ├── vdpau.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── xvmc.h │ │ │ │ ├── libavdevice │ │ │ │ │ ├── avdevice.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavfilter │ │ │ │ │ ├── asrc_abuffer.h │ │ │ │ │ ├── avcodec.h │ │ │ │ │ ├── avfilter.h │ │ │ │ │ ├── avfiltergraph.h │ │ │ │ │ ├── buffersink.h │ │ │ │ │ ├── buffersrc.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavformat │ │ │ │ │ ├── avformat.h │ │ │ │ │ ├── avio.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavutil │ │ │ │ │ ├── adler32.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── audio_fifo.h │ │ │ │ │ ├── audioconvert.h │ │ │ │ │ ├── avassert.h │ │ │ │ │ ├── avconfig.h │ │ │ │ │ ├── avstring.h │ │ │ │ │ ├── avutil.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bprint.h │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── fifo.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── imgutils.h │ │ │ │ │ ├── intfloat.h │ │ │ │ │ ├── intfloat_readwrite.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── lfg.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── lzo.h │ │ │ │ │ ├── mathematics.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── parseutils.h │ │ │ │ │ ├── pixdesc.h │ │ │ │ │ ├── pixfmt.h │ │ │ │ │ ├── random_seed.h │ │ │ │ │ ├── rational.h │ │ │ │ │ ├── samplefmt.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timecode.h │ │ │ │ │ ├── timestamp.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── xtea.h │ │ │ │ ├── libpostproc │ │ │ │ │ └── postprocess.h │ │ │ │ ├── libswresample │ │ │ │ │ └── swresample.h │ │ │ │ └── libswscale │ │ │ │ │ ├── swscale.h │ │ │ │ │ └── version.h │ │ │ └── libs │ │ │ │ ├── libavcodec.a │ │ │ │ ├── libavdevice.a │ │ │ │ ├── libavfilter.a │ │ │ │ ├── libavformat.a │ │ │ │ ├── libavutil.a │ │ │ │ ├── libpostproc.a │ │ │ │ ├── libswresample.a │ │ │ │ └── libswscale.a │ │ └── omxplayer │ │ │ ├── COPYING │ │ │ └── src │ │ │ ├── BitstreamConverter.cpp │ │ │ ├── BitstreamConverter.h │ │ │ ├── DllAvCodec.h │ │ │ ├── DllAvFilter.h │ │ │ ├── DllAvFormat.h │ │ │ ├── DllAvUtil.h │ │ │ ├── DllBCM.h │ │ │ ├── DllOMX.h │ │ │ ├── DllSwResample.h │ │ │ ├── DynamicDll.cpp │ │ │ ├── DynamicDll.h │ │ │ ├── File.cpp │ │ │ ├── File.h │ │ │ ├── IAudioCallback.h │ │ │ ├── IAudioRenderer.h │ │ │ ├── OMXAudio.cpp │ │ │ ├── OMXAudio.h │ │ │ ├── OMXAudioCodecOMX.cpp │ │ │ ├── OMXAudioCodecOMX.h │ │ │ ├── OMXClock.cpp │ │ │ ├── OMXClock.h │ │ │ ├── OMXCore.cpp │ │ │ ├── OMXCore.h │ │ │ ├── OMXEGLImage.cpp │ │ │ ├── OMXEGLImage.h │ │ │ ├── OMXEGLImagePlayer.cpp │ │ │ ├── OMXEGLImagePlayer.h │ │ │ ├── OMXPlayerAudio.cpp │ │ │ ├── OMXPlayerAudio.h │ │ │ ├── OMXPlayerVideo.cpp │ │ │ ├── OMXPlayerVideo.h │ │ │ ├── OMXReader.cpp │ │ │ ├── OMXReader.h │ │ │ ├── OMXStreamInfo.cpp │ │ │ ├── OMXStreamInfo.h │ │ │ ├── OMXThread.cpp │ │ │ ├── OMXThread.h │ │ │ ├── OMXVideo.cpp │ │ │ ├── OMXVideo.h │ │ │ ├── linux │ │ │ ├── ConvUtils.h │ │ │ ├── PlatformDefs.h │ │ │ ├── PlatformInclude.h │ │ │ ├── RBP.cpp │ │ │ ├── RBP.h │ │ │ ├── XMemUtils.cpp │ │ │ ├── XMemUtils.h │ │ │ ├── XSyncUtils.h │ │ │ ├── stat_utf8.h │ │ │ └── stdio_utf8.h │ │ │ └── utils │ │ │ ├── MathUtils.h │ │ │ ├── PCMRemap.cpp │ │ │ ├── PCMRemap.h │ │ │ └── StdString.h │ │ └── src │ │ ├── ofxOMXPlayer.cpp │ │ ├── ofxOMXPlayer.h │ │ ├── ofxOMXVideoPlayer.cpp │ │ └── ofxOMXVideoPlayer.h ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── Shaders │ │ ├── Empty.frag │ │ ├── Empty.vert │ │ ├── LiveShader.frag │ │ ├── LiveShader.vert │ │ ├── LiveShaderDesktop.frag │ │ └── LiveShaderDesktop.vert │ │ └── Textures │ │ └── landangui.jpg ├── config.make └── src │ ├── main.cpp │ ├── ofxAutoReloadedShader.cpp │ ├── ofxAutoReloadedShader.h │ ├── testApp.cpp │ └── testApp.h ├── openFrameworks and Raspberry Pi Workshop.pdf ├── scripts ├── buildAll.sh └── cleanAll.sh └── wiringPiPotentiometerExample ├── .gitignore ├── Makefile ├── PotentiometerControllerWiring.jpg ├── addons.make ├── addons └── ofxWiringPi │ └── libs │ └── wiringPi │ ├── include │ ├── gertboard.h │ ├── lcd.h │ ├── piNes.h │ ├── softPwm.h │ ├── softServo.h │ ├── softTone.h │ ├── wiringPi.h │ ├── wiringPiI2C.h │ ├── wiringPiSPI.h │ ├── wiringSerial.h │ └── wiringShift.h │ └── libs │ └── libwiringPi.a ├── bin └── data │ └── sounds │ ├── 1085.mp3 │ ├── Violet.mp3 │ ├── beat.wav │ └── synth.wav ├── config.make ├── src ├── PotentiometerController.cpp ├── PotentiometerController.h ├── main.cpp ├── testApp.cpp └── testApp.h ├── wiringPiPotentiometerExampleSPI.fzz └── wiringPiPotentiometerExampleSPI_bb.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/.gitignore -------------------------------------------------------------------------------- /Auto booting into your own program with Raspbian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Auto booting into your own program with Raspbian.txt -------------------------------------------------------------------------------- /GenerativeExample/GenerativeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/GenerativeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GenerativeExample/GenerativeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/GenerativeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GenerativeExample/GenerativeExample.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/GenerativeExample.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GenerativeExample/GenerativeExample.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/GenerativeExample.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /GenerativeExample/GenerativeExample.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/GenerativeExample.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Debug.xcscheme -------------------------------------------------------------------------------- /GenerativeExample/GenerativeExample.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/GenerativeExample.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Release.xcscheme -------------------------------------------------------------------------------- /GenerativeExample/GenerativeExample.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/GenerativeExample.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GenerativeExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/Makefile -------------------------------------------------------------------------------- /GenerativeExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/Project.xcconfig -------------------------------------------------------------------------------- /GenerativeExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | ofxXmlSettings 3 | -------------------------------------------------------------------------------- /GenerativeExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GenerativeExample/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /GenerativeExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/config.make -------------------------------------------------------------------------------- /GenerativeExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /GenerativeExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/src/main.cpp -------------------------------------------------------------------------------- /GenerativeExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/src/testApp.cpp -------------------------------------------------------------------------------- /GenerativeExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/GenerativeExample/src/testApp.h -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/HelloWorld.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloWorld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/Makefile -------------------------------------------------------------------------------- /HelloWorld/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/Project.xcconfig -------------------------------------------------------------------------------- /HelloWorld/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HelloWorld/bin/data/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/bin/data/DIN.otf -------------------------------------------------------------------------------- /HelloWorld/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/config.make -------------------------------------------------------------------------------- /HelloWorld/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/openFrameworks-Info.plist -------------------------------------------------------------------------------- /HelloWorld/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/src/main.cpp -------------------------------------------------------------------------------- /HelloWorld/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/src/testApp.cpp -------------------------------------------------------------------------------- /HelloWorld/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/HelloWorld/src/testApp.h -------------------------------------------------------------------------------- /MultiScreenExample2D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/Makefile -------------------------------------------------------------------------------- /MultiScreenExample2D/MultiScreenExample2D.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/MultiScreenExample2D.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MultiScreenExample2D/MultiScreenExample2D.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/MultiScreenExample2D.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MultiScreenExample2D/MultiScreenExample2D.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/MultiScreenExample2D.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MultiScreenExample2D/MultiScreenExample2D.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/MultiScreenExample2D.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /MultiScreenExample2D/MultiScreenExample2D.xcodeproj/xcshareddata/xcschemes/MultiScreenExample2D Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/MultiScreenExample2D.xcodeproj/xcshareddata/xcschemes/MultiScreenExample2D Debug.xcscheme -------------------------------------------------------------------------------- /MultiScreenExample2D/MultiScreenExample2D.xcodeproj/xcshareddata/xcschemes/MultiScreenExample2D Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/MultiScreenExample2D.xcodeproj/xcshareddata/xcschemes/MultiScreenExample2D Release.xcscheme -------------------------------------------------------------------------------- /MultiScreenExample2D/MultiScreenExample2D.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/MultiScreenExample2D.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MultiScreenExample2D/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/Project.xcconfig -------------------------------------------------------------------------------- /MultiScreenExample2D/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | ofxXmlSettings -------------------------------------------------------------------------------- /MultiScreenExample2D/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MultiScreenExample2D/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /MultiScreenExample2D/bin/data/Settings/ClientSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/bin/data/Settings/ClientSettings.xml -------------------------------------------------------------------------------- /MultiScreenExample2D/bin/data/Settings/ServerSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/bin/data/Settings/ServerSettings.xml -------------------------------------------------------------------------------- /MultiScreenExample2D/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/openFrameworks-Info.plist -------------------------------------------------------------------------------- /MultiScreenExample2D/src/ClientOSCManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/ClientOSCManager.cpp -------------------------------------------------------------------------------- /MultiScreenExample2D/src/ClientOSCManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/ClientOSCManager.h -------------------------------------------------------------------------------- /MultiScreenExample2D/src/CommonTimeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/CommonTimeBase.cpp -------------------------------------------------------------------------------- /MultiScreenExample2D/src/CommonTimeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/CommonTimeBase.h -------------------------------------------------------------------------------- /MultiScreenExample2D/src/CommonTimeOsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/CommonTimeOsc.cpp -------------------------------------------------------------------------------- /MultiScreenExample2D/src/CommonTimeOsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/CommonTimeOsc.h -------------------------------------------------------------------------------- /MultiScreenExample2D/src/MathHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/MathHelpers.h -------------------------------------------------------------------------------- /MultiScreenExample2D/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/Particle.h -------------------------------------------------------------------------------- /MultiScreenExample2D/src/ServerOscManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/ServerOscManager.cpp -------------------------------------------------------------------------------- /MultiScreenExample2D/src/ServerOscManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/ServerOscManager.h -------------------------------------------------------------------------------- /MultiScreenExample2D/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/main.cpp -------------------------------------------------------------------------------- /MultiScreenExample2D/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/testApp.cpp -------------------------------------------------------------------------------- /MultiScreenExample2D/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample2D/src/testApp.h -------------------------------------------------------------------------------- /MultiScreenExample3D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/Makefile -------------------------------------------------------------------------------- /MultiScreenExample3D/MultiScreenExample3D.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/MultiScreenExample3D.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MultiScreenExample3D/MultiScreenExample3D.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/MultiScreenExample3D.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MultiScreenExample3D/MultiScreenExample3D.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/MultiScreenExample3D.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MultiScreenExample3D/MultiScreenExample3D.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/MultiScreenExample3D.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /MultiScreenExample3D/MultiScreenExample3D.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/MultiScreenExample3D.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Debug.xcscheme -------------------------------------------------------------------------------- /MultiScreenExample3D/MultiScreenExample3D.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/MultiScreenExample3D.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Release.xcscheme -------------------------------------------------------------------------------- /MultiScreenExample3D/MultiScreenExample3D.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/MultiScreenExample3D.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MultiScreenExample3D/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/Project.xcconfig -------------------------------------------------------------------------------- /MultiScreenExample3D/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | ofxXmlSettings 3 | -------------------------------------------------------------------------------- /MultiScreenExample3D/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MultiScreenExample3D/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /MultiScreenExample3D/bin/data/Settings/ClientSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/bin/data/Settings/ClientSettings.xml -------------------------------------------------------------------------------- /MultiScreenExample3D/bin/data/Settings/ServerSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/bin/data/Settings/ServerSettings.xml -------------------------------------------------------------------------------- /MultiScreenExample3D/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/config.make -------------------------------------------------------------------------------- /MultiScreenExample3D/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/openFrameworks-Info.plist -------------------------------------------------------------------------------- /MultiScreenExample3D/src/ClientOSCManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/ClientOSCManager.cpp -------------------------------------------------------------------------------- /MultiScreenExample3D/src/ClientOSCManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/ClientOSCManager.h -------------------------------------------------------------------------------- /MultiScreenExample3D/src/CommonTimeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/CommonTimeBase.cpp -------------------------------------------------------------------------------- /MultiScreenExample3D/src/CommonTimeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/CommonTimeBase.h -------------------------------------------------------------------------------- /MultiScreenExample3D/src/CommonTimeOsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/CommonTimeOsc.cpp -------------------------------------------------------------------------------- /MultiScreenExample3D/src/CommonTimeOsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/CommonTimeOsc.h -------------------------------------------------------------------------------- /MultiScreenExample3D/src/ServerOscManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/ServerOscManager.cpp -------------------------------------------------------------------------------- /MultiScreenExample3D/src/ServerOscManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/ServerOscManager.h -------------------------------------------------------------------------------- /MultiScreenExample3D/src/SyncedAnimationObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/SyncedAnimationObject.h -------------------------------------------------------------------------------- /MultiScreenExample3D/src/TiledCameraView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/TiledCameraView.h -------------------------------------------------------------------------------- /MultiScreenExample3D/src/WanderingStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/WanderingStreamer.h -------------------------------------------------------------------------------- /MultiScreenExample3D/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/main.cpp -------------------------------------------------------------------------------- /MultiScreenExample3D/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/testApp.cpp -------------------------------------------------------------------------------- /MultiScreenExample3D/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenExample3D/src/testApp.h -------------------------------------------------------------------------------- /MultiScreenSimpleSync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/Makefile -------------------------------------------------------------------------------- /MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/xcshareddata/xcschemes/MultiScreenExampleSimple Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/xcshareddata/xcschemes/MultiScreenExampleSimple Debug.xcscheme -------------------------------------------------------------------------------- /MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/xcshareddata/xcschemes/MultiScreenExampleSimple Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/xcshareddata/xcschemes/MultiScreenExampleSimple Release.xcscheme -------------------------------------------------------------------------------- /MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/MultiScreenExampleSimple.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MultiScreenSimpleSync/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/Project.xcconfig -------------------------------------------------------------------------------- /MultiScreenSimpleSync/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | -------------------------------------------------------------------------------- /MultiScreenSimpleSync/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MultiScreenSimpleSync/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /MultiScreenSimpleSync/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/openFrameworks-Info.plist -------------------------------------------------------------------------------- /MultiScreenSimpleSync/src/Client/ClientOSCManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/src/Client/ClientOSCManager.cpp -------------------------------------------------------------------------------- /MultiScreenSimpleSync/src/Client/ClientOSCManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/src/Client/ClientOSCManager.h -------------------------------------------------------------------------------- /MultiScreenSimpleSync/src/CommonTime/CommonTimeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/src/CommonTime/CommonTimeBase.cpp -------------------------------------------------------------------------------- /MultiScreenSimpleSync/src/CommonTime/CommonTimeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/src/CommonTime/CommonTimeBase.h -------------------------------------------------------------------------------- /MultiScreenSimpleSync/src/CommonTime/CommonTimeOsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/src/CommonTime/CommonTimeOsc.cpp -------------------------------------------------------------------------------- /MultiScreenSimpleSync/src/CommonTime/CommonTimeOsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/src/CommonTime/CommonTimeOsc.h -------------------------------------------------------------------------------- /MultiScreenSimpleSync/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/src/main.cpp -------------------------------------------------------------------------------- /MultiScreenSimpleSync/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/src/testApp.cpp -------------------------------------------------------------------------------- /MultiScreenSimpleSync/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/MultiScreenSimpleSync/src/testApp.h -------------------------------------------------------------------------------- /NetworkedCV/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/Makefile -------------------------------------------------------------------------------- /NetworkedCV/NetworkedCV.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/NetworkedCV.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NetworkedCV/NetworkedCV.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/NetworkedCV.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NetworkedCV/NetworkedCV.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/NetworkedCV.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /NetworkedCV/NetworkedCV.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/NetworkedCV.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /NetworkedCV/NetworkedCV.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/NetworkedCV.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Debug.xcscheme -------------------------------------------------------------------------------- /NetworkedCV/NetworkedCV.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/NetworkedCV.xcodeproj/xcshareddata/xcschemes/MultiScreenExample3D Release.xcscheme -------------------------------------------------------------------------------- /NetworkedCV/NetworkedCV.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/NetworkedCV.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /NetworkedCV/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/Project.xcconfig -------------------------------------------------------------------------------- /NetworkedCV/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/addons.make -------------------------------------------------------------------------------- /NetworkedCV/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetworkedCV/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /NetworkedCV/bin/data/Movies/fingers.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/bin/data/Movies/fingers.mov -------------------------------------------------------------------------------- /NetworkedCV/bin/data/Settings/ClientSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/bin/data/Settings/ClientSettings.xml -------------------------------------------------------------------------------- /NetworkedCV/bin/data/Settings/ServerSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/bin/data/Settings/ServerSettings.xml -------------------------------------------------------------------------------- /NetworkedCV/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/config.make -------------------------------------------------------------------------------- /NetworkedCV/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/openFrameworks-Info.plist -------------------------------------------------------------------------------- /NetworkedCV/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/src/main.cpp -------------------------------------------------------------------------------- /NetworkedCV/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/src/testApp.cpp -------------------------------------------------------------------------------- /NetworkedCV/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/NetworkedCV/src/testApp.h -------------------------------------------------------------------------------- /OpenNI2AppExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/.gitignore -------------------------------------------------------------------------------- /OpenNI2AppExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/Makefile -------------------------------------------------------------------------------- /OpenNI2AppExample/OpenNI2AppExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/OpenNI2AppExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenNI2AppExample/OpenNI2AppExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/OpenNI2AppExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OpenNI2AppExample/OpenNI2AppExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/OpenNI2AppExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /OpenNI2AppExample/OpenNI2AppExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/OpenNI2AppExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /OpenNI2AppExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/Project.xcconfig -------------------------------------------------------------------------------- /OpenNI2AppExample/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/README.txt -------------------------------------------------------------------------------- /OpenNI2AppExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons.make -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/include/libfreenect/libfreenect-registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/include/libfreenect/libfreenect-registration.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/include/libfreenect/libfreenect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/include/libfreenect/libfreenect.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/include/libfreenect/libfreenect_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/include/libfreenect/libfreenect_sync.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/libs/libfreenect.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/libs/libfreenect.a -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/libs/libfreenect_sync.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/libfreenect/libs/libfreenect_sync.a -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Android-Arm/OniPlatformAndroid-Arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Android-Arm/OniPlatformAndroid-Arm.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Driver/OniDriverAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Driver/OniDriverAPI.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Driver/OniDriverTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Driver/OniDriverTypes.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Linux-Arm/OniPlatformLinux-Arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Linux-Arm/OniPlatformLinux-Arm.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Linux-x86/OniPlatformLinux-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Linux-x86/OniPlatformLinux-x86.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/MacOSX/OniPlatformMacOSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/MacOSX/OniPlatformMacOSX.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniCAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniCAPI.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniCEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniCEnums.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniCProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniCProperties.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniCTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniCTypes.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniEnums.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniPlatform.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniProperties.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OniVersion.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OpenNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/OpenNI.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/PS1080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/PS1080.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Win32/OniPlatformWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/include/Win32/OniPlatformWin32.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/OpenNI2/Drivers/libDummyDevice.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/OpenNI2/Drivers/libDummyDevice.dylib -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/OpenNI2/Drivers/libFreenectDriver.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/OpenNI2/Drivers/libFreenectDriver.dylib -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/OpenNI2/Drivers/libOniFile.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/OpenNI2/Drivers/libOniFile.dylib -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/OpenNI2/Drivers/libPS1080.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/OpenNI2/Drivers/libPS1080.dylib -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/libMWClosestPoint.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/libMWClosestPoint.a -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/libOpenNI2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/libOpenNI2.a -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/libXnLib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/osx/libXnLib.a -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/OpenNI2/Drivers/libDummyDevice.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/OpenNI2/Drivers/libDummyDevice.so -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/OpenNI2/Drivers/libFreenectDriver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/OpenNI2/Drivers/libFreenectDriver.so -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/OpenNI2/Drivers/libOniFile.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/OpenNI2/Drivers/libOniFile.so -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/OpenNI2/Drivers/libPS1080.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/OpenNI2/Drivers/libPS1080.so -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/libOpenNI2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/libOpenNI2.a -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/libOpenNI2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/libOpenNI2.so -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/libXnLib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/libs/rpi/libXnLib.a -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/udev_rules_for_xtion_pro/55-primesense-usb.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/udev_rules_for_xtion_pro/55-primesense-usb.rules -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/udev_rules_for_xtion_pro/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/libs/openni2/udev_rules_for_xtion_pro/README.txt -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/DepthSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/DepthSource.cpp -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/DepthSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/DepthSource.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/DeviceController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/DeviceController.cpp -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/DeviceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/DeviceController.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/RGBSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/RGBSource.cpp -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/RGBSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/RGBSource.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2Grabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2Grabber.cpp -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2Grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2Grabber.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2GrabberSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2GrabberSettings.h -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2Recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2Recorder.cpp -------------------------------------------------------------------------------- /OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2Recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/addons/ofxOpenNI2Grabber/src/ofxOpenNI2Recorder.h -------------------------------------------------------------------------------- /OpenNI2AppExample/bin/data/current/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenNI2AppExample/bin/data/downloadSampleFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/bin/data/downloadSampleFile.sh -------------------------------------------------------------------------------- /OpenNI2AppExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/config.make -------------------------------------------------------------------------------- /OpenNI2AppExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /OpenNI2AppExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/src/main.cpp -------------------------------------------------------------------------------- /OpenNI2AppExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/src/testApp.cpp -------------------------------------------------------------------------------- /OpenNI2AppExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/OpenNI2AppExample/src/testApp.h -------------------------------------------------------------------------------- /PS3EyeGrabber/.gitignore: -------------------------------------------------------------------------------- 1 | obj -------------------------------------------------------------------------------- /PS3EyeGrabber/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/PS3EyeGrabber/Makefile -------------------------------------------------------------------------------- /PS3EyeGrabber/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PS3EyeGrabber/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PS3EyeGrabber/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/PS3EyeGrabber/config.make -------------------------------------------------------------------------------- /PS3EyeGrabber/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/PS3EyeGrabber/src/main.cpp -------------------------------------------------------------------------------- /PS3EyeGrabber/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/PS3EyeGrabber/src/testApp.cpp -------------------------------------------------------------------------------- /PS3EyeGrabber/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/PS3EyeGrabber/src/testApp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/GenerativeExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/GenerativeExample.png -------------------------------------------------------------------------------- /Screenshots/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/HelloWorld.png -------------------------------------------------------------------------------- /Screenshots/MultiScreenExample2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/MultiScreenExample2D.png -------------------------------------------------------------------------------- /Screenshots/MultiScreenExample3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/MultiScreenExample3D.png -------------------------------------------------------------------------------- /Screenshots/ShaderLiveCoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/ShaderLiveCoding.png -------------------------------------------------------------------------------- /Screenshots/Small/GenerativeExample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/Small/GenerativeExample.jpg -------------------------------------------------------------------------------- /Screenshots/Small/HelloWorld.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/Small/HelloWorld.jpg -------------------------------------------------------------------------------- /Screenshots/Small/MultiScreenExample2D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/Small/MultiScreenExample2D.jpg -------------------------------------------------------------------------------- /Screenshots/Small/MultiScreenExample3D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/Small/MultiScreenExample3D.jpg -------------------------------------------------------------------------------- /Screenshots/Small/ShaderLiveCoding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/Small/ShaderLiveCoding.jpg -------------------------------------------------------------------------------- /Screenshots/wiringPiPotentiometerExampleSPI.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/wiringPiPotentiometerExampleSPI.fzz -------------------------------------------------------------------------------- /Screenshots/wiringPiPotentiometerExampleSPI_bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/Screenshots/wiringPiPotentiometerExampleSPI_bb.jpg -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/.gitignore: -------------------------------------------------------------------------------- 1 | obj -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/Makefile -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/bin/data/A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/bin/data/A.jpg -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/bin/data/AlphaMasking_GLES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/bin/data/AlphaMasking_GLES.frag -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/bin/data/AlphaMasking_GLES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/bin/data/AlphaMasking_GLES.vert -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/bin/data/B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/bin/data/B.jpg -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/bin/data/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/bin/data/brush.png -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/config.make -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/src/main.cpp -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/src/testApp.cpp -------------------------------------------------------------------------------- /ShaderExample_AlphaMasking/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_AlphaMasking/src/testApp.h -------------------------------------------------------------------------------- /ShaderExample_Billboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/.gitignore -------------------------------------------------------------------------------- /ShaderExample_Billboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/Makefile -------------------------------------------------------------------------------- /ShaderExample_Billboard/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/addons.make -------------------------------------------------------------------------------- /ShaderExample_Billboard/bin/data/Billboard.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/bin/data/Billboard.frag -------------------------------------------------------------------------------- /ShaderExample_Billboard/bin/data/Billboard.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/bin/data/Billboard.vert -------------------------------------------------------------------------------- /ShaderExample_Billboard/bin/data/BillboardGLES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/bin/data/BillboardGLES.frag -------------------------------------------------------------------------------- /ShaderExample_Billboard/bin/data/BillboardGLES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/bin/data/BillboardGLES.vert -------------------------------------------------------------------------------- /ShaderExample_Billboard/bin/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/bin/data/dot.png -------------------------------------------------------------------------------- /ShaderExample_Billboard/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/config.make -------------------------------------------------------------------------------- /ShaderExample_Billboard/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/src/main.cpp -------------------------------------------------------------------------------- /ShaderExample_Billboard/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/src/testApp.cpp -------------------------------------------------------------------------------- /ShaderExample_Billboard/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Billboard/src/testApp.h -------------------------------------------------------------------------------- /ShaderExample_Empty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Empty/Makefile -------------------------------------------------------------------------------- /ShaderExample_Empty/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShaderExample_Empty/bin/data/Empty_GLES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Empty/bin/data/Empty_GLES.frag -------------------------------------------------------------------------------- /ShaderExample_Empty/bin/data/Empty_GLES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Empty/bin/data/Empty_GLES.vert -------------------------------------------------------------------------------- /ShaderExample_Empty/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Empty/config.make -------------------------------------------------------------------------------- /ShaderExample_Empty/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Empty/src/main.cpp -------------------------------------------------------------------------------- /ShaderExample_Empty/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Empty/src/testApp.cpp -------------------------------------------------------------------------------- /ShaderExample_Empty/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Empty/src/testApp.h -------------------------------------------------------------------------------- /ShaderExample_LED/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_LED/Makefile -------------------------------------------------------------------------------- /ShaderExample_LED/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShaderExample_LED/bin/data/LED_GLES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_LED/bin/data/LED_GLES.frag -------------------------------------------------------------------------------- /ShaderExample_LED/bin/data/LED_GLES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_LED/bin/data/LED_GLES.vert -------------------------------------------------------------------------------- /ShaderExample_LED/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_LED/config.make -------------------------------------------------------------------------------- /ShaderExample_LED/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_LED/src/main.cpp -------------------------------------------------------------------------------- /ShaderExample_LED/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_LED/src/testApp.cpp -------------------------------------------------------------------------------- /ShaderExample_LED/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_LED/src/testApp.h -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/.gitignore: -------------------------------------------------------------------------------- 1 | obj -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_MotionBlur/Makefile -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/bin/data/MotionBlur_GLES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_MotionBlur/bin/data/MotionBlur_GLES.frag -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/bin/data/MotionBlur_GLES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_MotionBlur/bin/data/MotionBlur_GLES.vert -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/bin/data/brick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_MotionBlur/bin/data/brick.jpg -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_MotionBlur/config.make -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_MotionBlur/src/main.cpp -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_MotionBlur/src/testApp.cpp -------------------------------------------------------------------------------- /ShaderExample_MotionBlur/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_MotionBlur/src/testApp.h -------------------------------------------------------------------------------- /ShaderExample_Multitexture/.gitignore: -------------------------------------------------------------------------------- 1 | obj -------------------------------------------------------------------------------- /ShaderExample_Multitexture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Multitexture/Makefile -------------------------------------------------------------------------------- /ShaderExample_Multitexture/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShaderExample_Multitexture/bin/data/Multitexture_GLES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Multitexture/bin/data/Multitexture_GLES.frag -------------------------------------------------------------------------------- /ShaderExample_Multitexture/bin/data/Multitexture_GLES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Multitexture/bin/data/Multitexture_GLES.vert -------------------------------------------------------------------------------- /ShaderExample_Multitexture/bin/data/brick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Multitexture/bin/data/brick.jpg -------------------------------------------------------------------------------- /ShaderExample_Multitexture/bin/data/tex1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Multitexture/bin/data/tex1.jpg -------------------------------------------------------------------------------- /ShaderExample_Multitexture/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Multitexture/config.make -------------------------------------------------------------------------------- /ShaderExample_Multitexture/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Multitexture/src/main.cpp -------------------------------------------------------------------------------- /ShaderExample_Multitexture/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Multitexture/src/testApp.cpp -------------------------------------------------------------------------------- /ShaderExample_Multitexture/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_Multitexture/src/testApp.h -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/.gitignore: -------------------------------------------------------------------------------- 1 | obj -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_PostProcessing/Makefile -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/bin/data/PostProcessing_GLES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_PostProcessing/bin/data/PostProcessing_GLES.frag -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/bin/data/PostProcessing_GLES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_PostProcessing/bin/data/PostProcessing_GLES.vert -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/bin/data/brick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_PostProcessing/bin/data/brick.jpg -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_PostProcessing/config.make -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_PostProcessing/src/main.cpp -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_PostProcessing/src/testApp.cpp -------------------------------------------------------------------------------- /ShaderExample_PostProcessing/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderExample_PostProcessing/src/testApp.h -------------------------------------------------------------------------------- /ShaderLiveCodingExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/Makefile -------------------------------------------------------------------------------- /ShaderLiveCodingExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/Project.xcconfig -------------------------------------------------------------------------------- /ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/xcshareddata/xcschemes/StandaloneTimingServer Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/xcshareddata/xcschemes/StandaloneTimingServer Debug.xcscheme -------------------------------------------------------------------------------- /ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/StandaloneTimingServer Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/StandaloneTimingServer Release.xcscheme -------------------------------------------------------------------------------- /ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/ShaderLiveCoding.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ShaderLiveCodingExample/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShaderLiveCodingExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShaderLiveCodingExample/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /ShaderLiveCodingExample/bin/data/Shaders/Empty.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/bin/data/Shaders/Empty.frag -------------------------------------------------------------------------------- /ShaderLiveCodingExample/bin/data/Shaders/Empty.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/bin/data/Shaders/Empty.vert -------------------------------------------------------------------------------- /ShaderLiveCodingExample/bin/data/Shaders/LiveShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/bin/data/Shaders/LiveShader.frag -------------------------------------------------------------------------------- /ShaderLiveCodingExample/bin/data/Shaders/LiveShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/bin/data/Shaders/LiveShader.vert -------------------------------------------------------------------------------- /ShaderLiveCodingExample/bin/data/Shaders/LiveShaderDesktop.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/bin/data/Shaders/LiveShaderDesktop.frag -------------------------------------------------------------------------------- /ShaderLiveCodingExample/bin/data/Shaders/LiveShaderDesktop.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/bin/data/Shaders/LiveShaderDesktop.vert -------------------------------------------------------------------------------- /ShaderLiveCodingExample/bin/data/Textures/landangui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/bin/data/Textures/landangui.jpg -------------------------------------------------------------------------------- /ShaderLiveCodingExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/config.make -------------------------------------------------------------------------------- /ShaderLiveCodingExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ShaderLiveCodingExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/src/main.cpp -------------------------------------------------------------------------------- /ShaderLiveCodingExample/src/ofxAutoReloadedShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/src/ofxAutoReloadedShader.cpp -------------------------------------------------------------------------------- /ShaderLiveCodingExample/src/ofxAutoReloadedShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/src/ofxAutoReloadedShader.h -------------------------------------------------------------------------------- /ShaderLiveCodingExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/src/testApp.cpp -------------------------------------------------------------------------------- /ShaderLiveCodingExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/ShaderLiveCodingExample/src/testApp.h -------------------------------------------------------------------------------- /StandaloneTimingServer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/Makefile -------------------------------------------------------------------------------- /StandaloneTimingServer/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/Project.xcconfig -------------------------------------------------------------------------------- /StandaloneTimingServer/StandaloneTimingServer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/StandaloneTimingServer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StandaloneTimingServer/StandaloneTimingServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/StandaloneTimingServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StandaloneTimingServer/StandaloneTimingServer.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/StandaloneTimingServer.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /StandaloneTimingServer/StandaloneTimingServer.xcodeproj/xcshareddata/xcschemes/StandaloneTimingServer Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/StandaloneTimingServer.xcodeproj/xcshareddata/xcschemes/StandaloneTimingServer Debug.xcscheme -------------------------------------------------------------------------------- /StandaloneTimingServer/StandaloneTimingServer.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/StandaloneTimingServer Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/StandaloneTimingServer.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/StandaloneTimingServer Release.xcscheme -------------------------------------------------------------------------------- /StandaloneTimingServer/StandaloneTimingServer.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/StandaloneTimingServer.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /StandaloneTimingServer/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | ofxXmlSettings 3 | -------------------------------------------------------------------------------- /StandaloneTimingServer/bin/data/Settings/ServerSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/bin/data/Settings/ServerSettings.xml -------------------------------------------------------------------------------- /StandaloneTimingServer/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/config.make -------------------------------------------------------------------------------- /StandaloneTimingServer/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/openFrameworks-Info.plist -------------------------------------------------------------------------------- /StandaloneTimingServer/src/MasterServerOsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/src/MasterServerOsc.cpp -------------------------------------------------------------------------------- /StandaloneTimingServer/src/MasterServerOsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/src/MasterServerOsc.h -------------------------------------------------------------------------------- /StandaloneTimingServer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/src/main.cpp -------------------------------------------------------------------------------- /StandaloneTimingServer/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/src/testApp.cpp -------------------------------------------------------------------------------- /StandaloneTimingServer/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/StandaloneTimingServer/src/testApp.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/.gitignore: -------------------------------------------------------------------------------- 1 | obj -------------------------------------------------------------------------------- /VideoShaderLiveCoding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/Makefile -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons.make -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/old_codec_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/old_codec_ids.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vda.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/version.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavdevice/version.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/asrc_abuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/asrc_abuffer.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avcodec.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/version.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/avformat.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/avio.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/version.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/adler32.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/aes.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/attributes.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/audioconvert.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avassert.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avstring.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avutil.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/base64.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/bprint.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/bswap.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/common.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/cpu.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/crc.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/dict.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/error.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/eval.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/fifo.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/file.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intfloat_readwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intfloat_readwrite.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/lfg.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/log.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/lzo.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/md5.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/mem.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/opt.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/rational.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/sha.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/time.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/timecode.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/version.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/xtea.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libswresample/swresample.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libswscale/swscale.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/include/libswscale/version.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavcodec.a -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavdevice.a -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavfilter.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavfilter.a -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavformat.a -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libavutil.a -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libpostproc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libpostproc.a -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libswresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libswresample.a -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/ffmpeg/libs/libswscale.a -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/COPYING -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/BitstreamConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/BitstreamConverter.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/BitstreamConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/BitstreamConverter.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllAvCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllAvCodec.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllAvFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllAvFilter.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllAvFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllAvFormat.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllAvUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllAvUtil.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllBCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllBCM.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllOMX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllOMX.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllSwResample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DllSwResample.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DynamicDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DynamicDll.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DynamicDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/DynamicDll.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/File.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/File.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/IAudioCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/IAudioCallback.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/IAudioRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/IAudioRenderer.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXAudio.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXAudio.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXAudioCodecOMX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXAudioCodecOMX.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXAudioCodecOMX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXAudioCodecOMX.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXClock.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXClock.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXCore.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXCore.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXEGLImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXEGLImage.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXEGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXEGLImage.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXEGLImagePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXEGLImagePlayer.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXEGLImagePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXEGLImagePlayer.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXPlayerAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXPlayerAudio.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXPlayerAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXPlayerAudio.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXPlayerVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXPlayerVideo.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXPlayerVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXPlayerVideo.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXReader.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXReader.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXStreamInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXStreamInfo.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXStreamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXStreamInfo.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXThread.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXThread.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXVideo.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/OMXVideo.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/ConvUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/ConvUtils.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/PlatformDefs.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/PlatformInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/PlatformInclude.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/RBP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/RBP.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/RBP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/RBP.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/XMemUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/XMemUtils.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/XMemUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/XMemUtils.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/XSyncUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/XSyncUtils.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/stat_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/stat_utf8.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/stdio_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/linux/stdio_utf8.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/utils/MathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/utils/MathUtils.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/utils/PCMRemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/utils/PCMRemap.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/utils/PCMRemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/utils/PCMRemap.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/utils/StdString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/libs/omxplayer/src/utils/StdString.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/src/ofxOMXPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/src/ofxOMXPlayer.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/src/ofxOMXPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/src/ofxOMXPlayer.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/src/ofxOMXVideoPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/src/ofxOMXVideoPlayer.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/addons/ofxOMXPlayer/src/ofxOMXVideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/addons/ofxOMXPlayer/src/ofxOMXVideoPlayer.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VideoShaderLiveCoding/bin/data/Shaders/Empty.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/bin/data/Shaders/Empty.frag -------------------------------------------------------------------------------- /VideoShaderLiveCoding/bin/data/Shaders/Empty.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/bin/data/Shaders/Empty.vert -------------------------------------------------------------------------------- /VideoShaderLiveCoding/bin/data/Shaders/LiveShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/bin/data/Shaders/LiveShader.frag -------------------------------------------------------------------------------- /VideoShaderLiveCoding/bin/data/Shaders/LiveShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/bin/data/Shaders/LiveShader.vert -------------------------------------------------------------------------------- /VideoShaderLiveCoding/bin/data/Shaders/LiveShaderDesktop.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/bin/data/Shaders/LiveShaderDesktop.frag -------------------------------------------------------------------------------- /VideoShaderLiveCoding/bin/data/Shaders/LiveShaderDesktop.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/bin/data/Shaders/LiveShaderDesktop.vert -------------------------------------------------------------------------------- /VideoShaderLiveCoding/bin/data/Textures/landangui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/bin/data/Textures/landangui.jpg -------------------------------------------------------------------------------- /VideoShaderLiveCoding/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/config.make -------------------------------------------------------------------------------- /VideoShaderLiveCoding/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/src/main.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/src/ofxAutoReloadedShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/src/ofxAutoReloadedShader.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/src/ofxAutoReloadedShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/src/ofxAutoReloadedShader.h -------------------------------------------------------------------------------- /VideoShaderLiveCoding/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/src/testApp.cpp -------------------------------------------------------------------------------- /VideoShaderLiveCoding/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/VideoShaderLiveCoding/src/testApp.h -------------------------------------------------------------------------------- /openFrameworks and Raspberry Pi Workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/openFrameworks and Raspberry Pi Workshop.pdf -------------------------------------------------------------------------------- /scripts/buildAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/scripts/buildAll.sh -------------------------------------------------------------------------------- /scripts/cleanAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/scripts/cleanAll.sh -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/.gitignore -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/Makefile -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/PotentiometerControllerWiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/PotentiometerControllerWiring.jpg -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons.make -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/gertboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/gertboard.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/lcd.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/piNes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/piNes.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/softPwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/softPwm.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/softServo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/softServo.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/softTone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/softTone.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringPi.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringPiI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringPiI2C.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringPiSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringPiSPI.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringSerial.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/include/wiringShift.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/libs/libwiringPi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/addons/ofxWiringPi/libs/wiringPi/libs/libwiringPi.a -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/bin/data/sounds/1085.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/bin/data/sounds/1085.mp3 -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/bin/data/sounds/Violet.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/bin/data/sounds/Violet.mp3 -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/bin/data/sounds/beat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/bin/data/sounds/beat.wav -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/bin/data/sounds/synth.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/bin/data/sounds/synth.wav -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/config.make -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/src/PotentiometerController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/src/PotentiometerController.cpp -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/src/PotentiometerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/src/PotentiometerController.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/src/main.cpp -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/src/testApp.cpp -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/src/testApp.h -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/wiringPiPotentiometerExampleSPI.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/wiringPiPotentiometerExampleSPI.fzz -------------------------------------------------------------------------------- /wiringPiPotentiometerExample/wiringPiPotentiometerExampleSPI_bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/RaspberryPiWorkshop/HEAD/wiringPiPotentiometerExample/wiringPiPotentiometerExampleSPI_bb.jpg --------------------------------------------------------------------------------