├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CODING_STYLE.md ├── CompileHowto.txt ├── CompileOnOrangepi.md ├── CrossCompileHowto.txt ├── HyperionConfig.h.in ├── ISSUE_TEMPLATE ├── LICENSE ├── PULL_REQUEST_TEMPLATE ├── README.md ├── assets └── webconfig │ ├── css │ └── index.css │ ├── index.html │ ├── js │ ├── app │ │ ├── api │ │ │ ├── ChromeLocalStorage.js │ │ │ ├── ChromeNetwork.js │ │ │ ├── ChromeTcpSocket.js │ │ │ ├── LocalStorage.js │ │ │ ├── Network.js │ │ │ ├── Socket.js │ │ │ └── WebSocket.js │ │ ├── controllers │ │ │ └── AppController.js │ │ ├── data │ │ │ └── ServerControl.js │ │ ├── main.js │ │ ├── main_chrome.js │ │ ├── models │ │ │ └── Settings.js │ │ ├── utils │ │ │ └── Tools.js │ │ └── views │ │ │ ├── EffectsView.js │ │ │ ├── MainView.js │ │ │ ├── ServerList.js │ │ │ ├── SettingsView.js │ │ │ ├── Slider.js │ │ │ └── TransformView.js │ ├── background.js │ └── vendor │ │ ├── require.js │ │ ├── stapes.js │ │ └── tinycolor.js │ ├── manifest.json │ ├── manifest.webapp │ └── res │ ├── colorwheel.png │ ├── fontello.ttf │ ├── fontello.woff │ └── icon_128.png ├── bin ├── copy_binaries_to_deploy.sh ├── create_all_releases.sh ├── create_oe_depedencies.sh ├── create_release.sh ├── install_hyperion.sh ├── openelec │ ├── hyperion-remote.sh │ ├── hyperion-v4l2.sh │ └── hyperiond.sh ├── remove_hyperion.sh ├── scripts │ └── setup_hyperion_forward.sh └── service │ ├── hyperion.init.sh │ ├── hyperion.initctl.sh │ └── hyperion.systemd.sh ├── cmake ├── FindBCM.cmake ├── FindCoreFoundation.cmake ├── FindGitVersion.cmake ├── FindIOKit.cmake ├── FindPNG.cmake ├── FindUDev.cmake ├── Findlibusb-1.0.cmake ├── Toolchain-imx6.cmake ├── Toolchain-rpi.cmake ├── Toolchain-x32.cmake ├── cmake_uninstall.cmake.in ├── debian │ └── postinst ├── packages.cmake ├── qt4 │ ├── FindPackageHandleStandardArgs.cmake │ ├── FindQt4.cmake │ ├── Qt4ConfigDependentSettings.cmake │ └── Qt4Macros.cmake └── rpm │ └── postinst ├── config └── hyperion.config.json.example ├── dependencies ├── CMakeLists.txt ├── LightberryHDUSBAPA1021.1.zip ├── LightberryHDUSBAPA1021.1 │ └── LightberryHDUSBAPA1021.1.ino ├── build │ ├── getoptPlusPlus │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── config.doxygen │ │ ├── getoptpp.cc │ │ └── test.cc │ ├── hidapi │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── hid-libusb.c │ │ └── hid-mac.c │ ├── jsoncpp │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── json_batchallocator.h │ │ ├── json_internalarray.inl │ │ ├── json_internalmap.inl │ │ ├── json_reader.cpp │ │ ├── json_tool.h │ │ ├── json_value.cpp │ │ ├── json_valueiterator.inl │ │ ├── json_writer.cpp │ │ └── sconscript │ ├── serial │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── serial │ │ │ │ ├── impl │ │ │ │ ├── unix.h │ │ │ │ └── win.h │ │ │ │ ├── serial.h │ │ │ │ └── v8stdint.h │ │ └── src │ │ │ ├── impl │ │ │ ├── unix.cc │ │ │ └── win.cc │ │ │ └── serial.cc │ └── tinkerforge │ │ ├── CMakeLists.txt │ │ ├── bricklet_led_strip.c │ │ └── ip_connection.c ├── getoptPlusPlus-master-20130810.zip ├── hidapi-master-20131122.zip ├── include │ ├── getoptPlusPlus │ │ ├── getoptpp.h │ │ └── parameter.include.cc │ ├── hidapi │ │ └── hidapi.h │ ├── json │ │ ├── autolink.h │ │ ├── config.h │ │ ├── features.h │ │ ├── forwards.h │ │ ├── json.h │ │ ├── reader.h │ │ ├── value.h │ │ └── writer.h │ ├── serial │ │ ├── impl │ │ │ ├── unix.h │ │ │ └── win.h │ │ ├── serial.h │ │ └── v8stdint.h │ └── tinkerforge │ │ ├── bricklet_led_strip.h │ │ └── ip_connection.h ├── tinkerforge_c_bindings_2_0_13.zip └── wjwwood-serial-master-20131105.zip ├── doc ├── CMakeLists.txt ├── hyperion-build-doc.in.sh ├── hyperion-footer.html ├── hyperion-header.html ├── hyperion-stylesheet.css └── hyperion.in.doxygen ├── effects ├── cinema-fade-in.json ├── cinema-fade-off.json ├── fade.py ├── knight-rider.json ├── knight-rider.py ├── mood-blobs-blue.json ├── mood-blobs-cold.json ├── mood-blobs-full.json ├── mood-blobs-green.json ├── mood-blobs-red.json ├── mood-blobs-warm.json ├── mood-blobs.py ├── police-lights-single.json ├── police-lights-solid.json ├── police.py ├── rainbow-mood.json ├── rainbow-mood.py ├── rainbow-swirl-fast.json ├── rainbow-swirl.json ├── rainbow-swirl.py ├── random.json ├── random.py ├── running_dots.json ├── running_dots.py ├── shutdown.json ├── shutdown.py ├── snake.json ├── snake.py ├── sparks-color.json ├── sparks.json ├── sparks.py ├── strobe-blue.json ├── strobe-raspbmc.json ├── strobe-white.json ├── strobe.py ├── traces.json ├── traces.py ├── udp-mcast.json ├── udp.json ├── udp.py ├── x-mas.json └── x-mas.py ├── include ├── blackborder │ ├── BlackBorderDetector.h │ └── BlackBorderProcessor.h ├── boblightserver │ └── BoblightServer.h ├── bonjour │ ├── bonjourrecord.h │ └── bonjourserviceregister.h ├── effectengine │ ├── ActiveEffectDefinition.h │ ├── EffectDefinition.h │ └── EffectEngine.h ├── grabber │ ├── AmlogicGrabber.h │ ├── AmlogicWrapper.h │ ├── DispmanxFrameGrabber.h │ ├── DispmanxWrapper.h │ ├── FramebufferFrameGrabber.h │ ├── FramebufferWrapper.h │ ├── OpenCVGrabber.h │ ├── OpenCVWrapper.h │ ├── OsxFrameGrabber.h │ ├── OsxWrapper.h │ ├── V4L2Grabber.h │ ├── V4L2Wrapper.h │ ├── VideoStandard.h │ └── X11Grabber.h ├── hyperion │ ├── ColorAdjustment.h │ ├── ColorCorrection.h │ ├── ColorTransform.h │ ├── Hyperion.h │ ├── ImageProcessor.h │ ├── ImageProcessorFactory.h │ ├── ImageToLedsMap.h │ ├── LedString.h │ ├── MessageForwarder.h │ └── PriorityMuxer.h ├── jsonserver │ └── JsonServer.h ├── leddevice │ ├── LedDevice.h │ └── LedDeviceFactory.h ├── protoserver │ ├── ProtoConnection.h │ ├── ProtoConnectionWrapper.h │ └── ProtoServer.h ├── utils │ ├── ColorArgb.h │ ├── ColorBgr.h │ ├── ColorRgb.h │ ├── ColorRgba.h │ ├── ColorRgbw.h │ ├── GrabbingMode.h │ ├── HslTransform.h │ ├── HsvTransform.h │ ├── Image.h │ ├── ImageResampler.h │ ├── Logger.h │ ├── PixelFormat.h │ ├── Profiler.h │ ├── RgbChannelAdjustment.h │ ├── RgbChannelCorrection.h │ ├── RgbChannelTransform.h │ ├── RgbToRgbw.h │ ├── Sleep.h │ ├── VideoMode.h │ └── jsonschema │ │ ├── JsonFactory.h │ │ └── JsonSchemaChecker.h ├── webconfig │ └── WebConfig.h └── xbmcvideochecker │ └── XBMCVideoChecker.h ├── libsrc ├── CMakeLists.txt ├── blackborder │ ├── BlackBorderDetector.cpp │ ├── BlackBorderProcessor.cpp │ └── CMakeLists.txt ├── boblightserver │ ├── BoblightClientConnection.cpp │ ├── BoblightClientConnection.h │ ├── BoblightServer.cpp │ └── CMakeLists.txt ├── bonjour │ ├── CMakeLists.txt │ ├── bonjourserviceregister.cpp │ ├── fortuneserver.pro │ ├── main.cpp │ ├── server.cpp │ └── server.h ├── effectengine │ ├── CMakeLists.txt │ ├── Effect.cpp │ ├── Effect.h │ ├── EffectDefinition.schema.json │ ├── EffectEngine.cpp │ └── EffectEngine.qrc ├── grabber │ ├── CMakeLists.txt │ ├── amlogic │ │ ├── AmlogicGrabber.cpp │ │ ├── AmlogicWrapper.cpp │ │ └── CMakeLists.txt │ ├── dispmanx │ │ ├── CMakeLists.txt │ │ ├── DispmanxFrameGrabber.cpp │ │ └── DispmanxWrapper.cpp │ ├── framebuffer │ │ ├── CMakeLists.txt │ │ ├── FramebufferFrameGrabber.cpp │ │ └── FramebufferWrapper.cpp │ ├── opencv │ │ ├── CMakeLists.txt │ │ ├── OpenCVGrabber.cpp │ │ └── OpenCVWrapper.cpp │ ├── osx │ │ ├── CMakeLists.txt │ │ ├── OsxFrameGrabber.cpp │ │ └── OsxWrapper.cpp │ ├── v4l2 │ │ ├── CMakeLists.txt │ │ ├── V4L2Grabber.cpp │ │ └── V4L2Wrapper.cpp │ └── x11 │ │ ├── CMakeLists.txt │ │ └── X11Grabber.cpp ├── hyperion │ ├── CMakeLists.txt │ ├── Hyperion.cpp │ ├── ImageProcessor.cpp │ ├── ImageProcessorFactory.cpp │ ├── ImageToLedsMap.cpp │ ├── LedString.cpp │ ├── LinearColorSmoothing.cpp │ ├── LinearColorSmoothing.h │ ├── MessageForwarder.cpp │ ├── MultiColorAdjustment.cpp │ ├── MultiColorAdjustment.h │ ├── MultiColorCorrection.cpp │ ├── MultiColorCorrection.h │ ├── MultiColorTransform.cpp │ ├── MultiColorTransform.h │ ├── PriorityMuxer.cpp │ ├── hyperion.schema.json │ └── resource.qrc ├── jsonserver │ ├── CMakeLists.txt │ ├── JsonClientConnection.cpp │ ├── JsonClientConnection.h │ ├── JsonSchemas.qrc │ ├── JsonServer.cpp │ └── schema │ │ ├── schema-adjustment.json │ │ ├── schema-clear.json │ │ ├── schema-clearall.json │ │ ├── schema-color.json │ │ ├── schema-correction.json │ │ ├── schema-effect.json │ │ ├── schema-image.json │ │ ├── schema-serverinfo.json │ │ ├── schema-temperature.json │ │ ├── schema-transform.json │ │ └── schema.json ├── leddevice │ ├── CMakeLists.txt │ ├── LedDeviceAPA102.cpp │ ├── LedDeviceAPA102.h │ ├── LedDeviceAdalight.cpp │ ├── LedDeviceAdalight.h │ ├── LedDeviceAdalightApa102.cpp │ ├── LedDeviceAdalightApa102.h │ ├── LedDeviceAmbiLed.cpp │ ├── LedDeviceAmbiLed.h │ ├── LedDeviceAtmo.cpp │ ├── LedDeviceAtmo.h │ ├── LedDeviceAtmoOrb.cpp │ ├── LedDeviceAtmoOrb.h │ ├── LedDeviceAurora.cpp │ ├── LedDeviceAurora.h │ ├── LedDeviceFactory.cpp │ ├── LedDeviceFadeCandy.cpp │ ├── LedDeviceFadeCandy.h │ ├── LedDeviceFile.cpp │ ├── LedDeviceFile.h │ ├── LedDeviceHyperionUsbasp.cpp │ ├── LedDeviceHyperionUsbasp.h │ ├── LedDeviceLightpack-hidapi.cpp │ ├── LedDeviceLightpack-hidapi.h │ ├── LedDeviceLightpack.cpp │ ├── LedDeviceLightpack.h │ ├── LedDeviceLpd6803.cpp │ ├── LedDeviceLpd6803.h │ ├── LedDeviceLpd8806.cpp │ ├── LedDeviceLpd8806.h │ ├── LedDeviceMultiLightpack.cpp │ ├── LedDeviceMultiLightpack.h │ ├── LedDeviceP9813.cpp │ ├── LedDeviceP9813.h │ ├── LedDevicePaintpack.cpp │ ├── LedDevicePaintpack.h │ ├── LedDevicePhilipsHue.cpp │ ├── LedDevicePhilipsHue.h │ ├── LedDevicePiBlaster.cpp │ ├── LedDevicePiBlaster.h │ ├── LedDeviceRawHID.cpp │ ├── LedDeviceRawHID.h │ ├── LedDeviceSedu.cpp │ ├── LedDeviceSedu.h │ ├── LedDeviceTinkerforge.cpp │ ├── LedDeviceTinkerforge.h │ ├── LedDeviceTpm2.cpp │ ├── LedDeviceTpm2.h │ ├── LedDeviceUdp.cpp │ ├── LedDeviceUdp.h │ ├── LedDeviceUdpRaw.cpp │ ├── LedDeviceUdpRaw.h │ ├── LedDeviceWS2812b.cpp │ ├── LedDeviceWS2812b.h │ ├── LedDeviceWS281x.cpp │ ├── LedDeviceWS281x.h │ ├── LedDeviceWs2801.cpp │ ├── LedDeviceWs2801.h │ ├── LedDeviceWs2812SPI.cpp │ ├── LedDeviceWs2812SPI.h │ ├── LedHIDDevice.cpp │ ├── LedHIDDevice.h │ ├── LedRs232Device.cpp │ ├── LedRs232Device.h │ ├── LedSpiDevice.cpp │ ├── LedSpiDevice.h │ ├── LedUdpDevice.cpp │ └── LedUdpDevice.h ├── protoserver │ ├── CMakeLists.txt │ ├── ProtoClientConnection.cpp │ ├── ProtoClientConnection.h │ ├── ProtoConnection.cpp │ ├── ProtoConnectionWrapper.cpp │ ├── ProtoServer.cpp │ └── message.proto ├── utils │ ├── CMakeLists.txt │ ├── ColorArgb.cpp │ ├── ColorBgr.cpp │ ├── ColorRgb.cpp │ ├── ColorRgba.cpp │ ├── ColorRgbw.cpp │ ├── HslTransform.cpp │ ├── HsvTransform.cpp │ ├── ImageResampler.cpp │ ├── Logger.cpp │ ├── Profiler.cpp │ ├── RgbChannelAdjustment.cpp │ ├── RgbChannelCorrection.cpp │ ├── RgbChannelTransform.cpp │ ├── RgbToRgbw.cpp │ └── jsonschema │ │ └── JsonSchemaChecker.cpp ├── webconfig │ ├── CMakeLists.txt │ ├── CgiHandler.cpp │ ├── CgiHandler.h │ ├── QtHttpClientWrapper.cpp │ ├── QtHttpClientWrapper.h │ ├── QtHttpHeader.cpp │ ├── QtHttpHeader.h │ ├── QtHttpReply.cpp │ ├── QtHttpReply.h │ ├── QtHttpRequest.cpp │ ├── QtHttpRequest.h │ ├── QtHttpServer.cpp │ ├── QtHttpServer.h │ ├── StaticFileServing.cpp │ ├── StaticFileServing.h │ └── WebConfig.cpp └── xbmcvideochecker │ ├── CMakeLists.txt │ └── XBMCVideoChecker.cpp ├── src ├── CMakeLists.txt ├── hyperion-aml │ ├── AmlogicWrapper.cpp │ ├── AmlogicWrapper.h │ ├── CMakeLists.txt │ └── hyperion-aml.cpp ├── hyperion-dispmanx │ ├── CMakeLists.txt │ ├── DispmanxWrapper.cpp │ ├── DispmanxWrapper.h │ └── hyperion-dispmanx.cpp ├── hyperion-framebuffer │ ├── CMakeLists.txt │ ├── FramebufferWrapper.cpp │ ├── FramebufferWrapper.h │ └── hyperion-framebuffer.cpp ├── hyperion-osx │ ├── CMakeLists.txt │ ├── OsxWrapper.cpp │ ├── OsxWrapper.h │ └── hyperion-osx.cpp ├── hyperion-remote │ ├── CMakeLists.txt │ ├── ColorAdjustmentValues.h │ ├── ColorCorrectionValues.h │ ├── ColorTransformValues.h │ ├── CustomParameter.h │ ├── JsonConnection.cpp │ ├── JsonConnection.h │ └── hyperion-remote.cpp ├── hyperion-v4l2 │ ├── CMakeLists.txt │ ├── PixelFormatParameter.h │ ├── ScreenshotHandler.cpp │ ├── ScreenshotHandler.h │ ├── VideoStandardParameter.h │ └── hyperion-v4l2.cpp ├── hyperion-x11 │ ├── CMakeLists.txt │ ├── X11Wrapper.cpp │ ├── X11Wrapper.h │ └── hyperion-x11.cpp └── hyperiond │ ├── CMakeLists.txt │ └── hyperiond.cpp └── test ├── CMakeLists.txt ├── TestBlackBorderDetector.cpp ├── TestBlackBorderProcessor.cpp ├── TestColorTransform.cpp ├── TestConfigFile.cpp ├── TestHyperionPng.cpp ├── TestImage2LedsMap.cpp ├── TestQRegExp.cpp ├── TestQtScreenshot.cpp ├── TestRgbImage.cpp ├── TestSpi.cpp ├── TestX11Performance.cpp ├── dispmanx2png ├── CMakeLists.txt └── dispmanx2png.cpp ├── spidev_test.c └── switchPinCtrl.c /.gitignore: -------------------------------------------------------------------------------- 1 | /*.user 2 | /build* 3 | .DS_Store 4 | 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/CODING_STYLE.md -------------------------------------------------------------------------------- /CompileHowto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/CompileHowto.txt -------------------------------------------------------------------------------- /CompileOnOrangepi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/CompileOnOrangepi.md -------------------------------------------------------------------------------- /CrossCompileHowto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/CrossCompileHowto.txt -------------------------------------------------------------------------------- /HyperionConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/HyperionConfig.h.in -------------------------------------------------------------------------------- /ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/README.md -------------------------------------------------------------------------------- /assets/webconfig/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/css/index.css -------------------------------------------------------------------------------- /assets/webconfig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/index.html -------------------------------------------------------------------------------- /assets/webconfig/js/app/api/ChromeLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/api/ChromeLocalStorage.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/api/ChromeNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/api/ChromeNetwork.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/api/ChromeTcpSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/api/ChromeTcpSocket.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/api/LocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/api/LocalStorage.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/api/Network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/api/Network.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/api/Socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/api/Socket.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/api/WebSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/api/WebSocket.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/controllers/AppController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/controllers/AppController.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/data/ServerControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/data/ServerControl.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/main.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/main_chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/main_chrome.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/models/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/models/Settings.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/utils/Tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/utils/Tools.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/views/EffectsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/views/EffectsView.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/views/MainView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/views/MainView.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/views/ServerList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/views/ServerList.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/views/SettingsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/views/SettingsView.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/views/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/views/Slider.js -------------------------------------------------------------------------------- /assets/webconfig/js/app/views/TransformView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/app/views/TransformView.js -------------------------------------------------------------------------------- /assets/webconfig/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/background.js -------------------------------------------------------------------------------- /assets/webconfig/js/vendor/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/vendor/require.js -------------------------------------------------------------------------------- /assets/webconfig/js/vendor/stapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/vendor/stapes.js -------------------------------------------------------------------------------- /assets/webconfig/js/vendor/tinycolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/js/vendor/tinycolor.js -------------------------------------------------------------------------------- /assets/webconfig/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/manifest.json -------------------------------------------------------------------------------- /assets/webconfig/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/manifest.webapp -------------------------------------------------------------------------------- /assets/webconfig/res/colorwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/res/colorwheel.png -------------------------------------------------------------------------------- /assets/webconfig/res/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/res/fontello.ttf -------------------------------------------------------------------------------- /assets/webconfig/res/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/res/fontello.woff -------------------------------------------------------------------------------- /assets/webconfig/res/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/assets/webconfig/res/icon_128.png -------------------------------------------------------------------------------- /bin/copy_binaries_to_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/copy_binaries_to_deploy.sh -------------------------------------------------------------------------------- /bin/create_all_releases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/create_all_releases.sh -------------------------------------------------------------------------------- /bin/create_oe_depedencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/create_oe_depedencies.sh -------------------------------------------------------------------------------- /bin/create_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/create_release.sh -------------------------------------------------------------------------------- /bin/install_hyperion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/install_hyperion.sh -------------------------------------------------------------------------------- /bin/openelec/hyperion-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/openelec/hyperion-remote.sh -------------------------------------------------------------------------------- /bin/openelec/hyperion-v4l2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/openelec/hyperion-v4l2.sh -------------------------------------------------------------------------------- /bin/openelec/hyperiond.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/openelec/hyperiond.sh -------------------------------------------------------------------------------- /bin/remove_hyperion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/remove_hyperion.sh -------------------------------------------------------------------------------- /bin/scripts/setup_hyperion_forward.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/scripts/setup_hyperion_forward.sh -------------------------------------------------------------------------------- /bin/service/hyperion.init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/service/hyperion.init.sh -------------------------------------------------------------------------------- /bin/service/hyperion.initctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/service/hyperion.initctl.sh -------------------------------------------------------------------------------- /bin/service/hyperion.systemd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/bin/service/hyperion.systemd.sh -------------------------------------------------------------------------------- /cmake/FindBCM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/FindBCM.cmake -------------------------------------------------------------------------------- /cmake/FindCoreFoundation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/FindCoreFoundation.cmake -------------------------------------------------------------------------------- /cmake/FindGitVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/FindGitVersion.cmake -------------------------------------------------------------------------------- /cmake/FindIOKit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/FindIOKit.cmake -------------------------------------------------------------------------------- /cmake/FindPNG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/FindPNG.cmake -------------------------------------------------------------------------------- /cmake/FindUDev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/FindUDev.cmake -------------------------------------------------------------------------------- /cmake/Findlibusb-1.0.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/Findlibusb-1.0.cmake -------------------------------------------------------------------------------- /cmake/Toolchain-imx6.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/Toolchain-imx6.cmake -------------------------------------------------------------------------------- /cmake/Toolchain-rpi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/Toolchain-rpi.cmake -------------------------------------------------------------------------------- /cmake/Toolchain-x32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/Toolchain-x32.cmake -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /cmake/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/debian/postinst -------------------------------------------------------------------------------- /cmake/packages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/packages.cmake -------------------------------------------------------------------------------- /cmake/qt4/FindPackageHandleStandardArgs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/qt4/FindPackageHandleStandardArgs.cmake -------------------------------------------------------------------------------- /cmake/qt4/FindQt4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/qt4/FindQt4.cmake -------------------------------------------------------------------------------- /cmake/qt4/Qt4ConfigDependentSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/qt4/Qt4ConfigDependentSettings.cmake -------------------------------------------------------------------------------- /cmake/qt4/Qt4Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/qt4/Qt4Macros.cmake -------------------------------------------------------------------------------- /cmake/rpm/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/cmake/rpm/postinst -------------------------------------------------------------------------------- /config/hyperion.config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/config/hyperion.config.json.example -------------------------------------------------------------------------------- /dependencies/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/LightberryHDUSBAPA1021.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/LightberryHDUSBAPA1021.1.zip -------------------------------------------------------------------------------- /dependencies/LightberryHDUSBAPA1021.1/LightberryHDUSBAPA1021.1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/LightberryHDUSBAPA1021.1/LightberryHDUSBAPA1021.1.ino -------------------------------------------------------------------------------- /dependencies/build/getoptPlusPlus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/getoptPlusPlus/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/build/getoptPlusPlus/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/getoptPlusPlus/COPYING -------------------------------------------------------------------------------- /dependencies/build/getoptPlusPlus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/getoptPlusPlus/Makefile -------------------------------------------------------------------------------- /dependencies/build/getoptPlusPlus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/getoptPlusPlus/README -------------------------------------------------------------------------------- /dependencies/build/getoptPlusPlus/config.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/getoptPlusPlus/config.doxygen -------------------------------------------------------------------------------- /dependencies/build/getoptPlusPlus/getoptpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/getoptPlusPlus/getoptpp.cc -------------------------------------------------------------------------------- /dependencies/build/getoptPlusPlus/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/getoptPlusPlus/test.cc -------------------------------------------------------------------------------- /dependencies/build/hidapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/hidapi/.gitignore -------------------------------------------------------------------------------- /dependencies/build/hidapi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/hidapi/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/build/hidapi/hid-libusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/hidapi/hid-libusb.c -------------------------------------------------------------------------------- /dependencies/build/hidapi/hid-mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/hidapi/hid-mac.c -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/AUTHORS: -------------------------------------------------------------------------------- 1 | Baptiste Lepilleur 2 | -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/LICENSE -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/json_batchallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/json_batchallocator.h -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/json_internalarray.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/json_internalarray.inl -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/json_internalmap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/json_internalmap.inl -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/json_reader.cpp -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/json_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/json_tool.h -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/json_value.cpp -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/json_valueiterator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/json_valueiterator.inl -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/json_writer.cpp -------------------------------------------------------------------------------- /dependencies/build/jsoncpp/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/jsoncpp/sconscript -------------------------------------------------------------------------------- /dependencies/build/serial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/serial/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/build/serial/include/serial/impl/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/serial/include/serial/impl/unix.h -------------------------------------------------------------------------------- /dependencies/build/serial/include/serial/impl/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/serial/include/serial/impl/win.h -------------------------------------------------------------------------------- /dependencies/build/serial/include/serial/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/serial/include/serial/serial.h -------------------------------------------------------------------------------- /dependencies/build/serial/include/serial/v8stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/serial/include/serial/v8stdint.h -------------------------------------------------------------------------------- /dependencies/build/serial/src/impl/unix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/serial/src/impl/unix.cc -------------------------------------------------------------------------------- /dependencies/build/serial/src/impl/win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/serial/src/impl/win.cc -------------------------------------------------------------------------------- /dependencies/build/serial/src/serial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/serial/src/serial.cc -------------------------------------------------------------------------------- /dependencies/build/tinkerforge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/tinkerforge/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/build/tinkerforge/bricklet_led_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/tinkerforge/bricklet_led_strip.c -------------------------------------------------------------------------------- /dependencies/build/tinkerforge/ip_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/build/tinkerforge/ip_connection.c -------------------------------------------------------------------------------- /dependencies/getoptPlusPlus-master-20130810.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/getoptPlusPlus-master-20130810.zip -------------------------------------------------------------------------------- /dependencies/hidapi-master-20131122.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/hidapi-master-20131122.zip -------------------------------------------------------------------------------- /dependencies/include/getoptPlusPlus/getoptpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/getoptPlusPlus/getoptpp.h -------------------------------------------------------------------------------- /dependencies/include/getoptPlusPlus/parameter.include.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/getoptPlusPlus/parameter.include.cc -------------------------------------------------------------------------------- /dependencies/include/hidapi/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/hidapi/hidapi.h -------------------------------------------------------------------------------- /dependencies/include/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/json/autolink.h -------------------------------------------------------------------------------- /dependencies/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/json/config.h -------------------------------------------------------------------------------- /dependencies/include/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/json/features.h -------------------------------------------------------------------------------- /dependencies/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/json/forwards.h -------------------------------------------------------------------------------- /dependencies/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/json/json.h -------------------------------------------------------------------------------- /dependencies/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/json/reader.h -------------------------------------------------------------------------------- /dependencies/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/json/value.h -------------------------------------------------------------------------------- /dependencies/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/json/writer.h -------------------------------------------------------------------------------- /dependencies/include/serial/impl/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/serial/impl/unix.h -------------------------------------------------------------------------------- /dependencies/include/serial/impl/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/serial/impl/win.h -------------------------------------------------------------------------------- /dependencies/include/serial/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/serial/serial.h -------------------------------------------------------------------------------- /dependencies/include/serial/v8stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/serial/v8stdint.h -------------------------------------------------------------------------------- /dependencies/include/tinkerforge/bricklet_led_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/tinkerforge/bricklet_led_strip.h -------------------------------------------------------------------------------- /dependencies/include/tinkerforge/ip_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/include/tinkerforge/ip_connection.h -------------------------------------------------------------------------------- /dependencies/tinkerforge_c_bindings_2_0_13.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/tinkerforge_c_bindings_2_0_13.zip -------------------------------------------------------------------------------- /dependencies/wjwwood-serial-master-20131105.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/dependencies/wjwwood-serial-master-20131105.zip -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/hyperion-build-doc.in.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/doc/hyperion-build-doc.in.sh -------------------------------------------------------------------------------- /doc/hyperion-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/doc/hyperion-footer.html -------------------------------------------------------------------------------- /doc/hyperion-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/doc/hyperion-header.html -------------------------------------------------------------------------------- /doc/hyperion-stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/doc/hyperion-stylesheet.css -------------------------------------------------------------------------------- /doc/hyperion.in.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/doc/hyperion.in.doxygen -------------------------------------------------------------------------------- /effects/cinema-fade-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/cinema-fade-in.json -------------------------------------------------------------------------------- /effects/cinema-fade-off.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/cinema-fade-off.json -------------------------------------------------------------------------------- /effects/fade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/fade.py -------------------------------------------------------------------------------- /effects/knight-rider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/knight-rider.json -------------------------------------------------------------------------------- /effects/knight-rider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/knight-rider.py -------------------------------------------------------------------------------- /effects/mood-blobs-blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/mood-blobs-blue.json -------------------------------------------------------------------------------- /effects/mood-blobs-cold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/mood-blobs-cold.json -------------------------------------------------------------------------------- /effects/mood-blobs-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/mood-blobs-full.json -------------------------------------------------------------------------------- /effects/mood-blobs-green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/mood-blobs-green.json -------------------------------------------------------------------------------- /effects/mood-blobs-red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/mood-blobs-red.json -------------------------------------------------------------------------------- /effects/mood-blobs-warm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/mood-blobs-warm.json -------------------------------------------------------------------------------- /effects/mood-blobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/mood-blobs.py -------------------------------------------------------------------------------- /effects/police-lights-single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/police-lights-single.json -------------------------------------------------------------------------------- /effects/police-lights-solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/police-lights-solid.json -------------------------------------------------------------------------------- /effects/police.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/police.py -------------------------------------------------------------------------------- /effects/rainbow-mood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/rainbow-mood.json -------------------------------------------------------------------------------- /effects/rainbow-mood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/rainbow-mood.py -------------------------------------------------------------------------------- /effects/rainbow-swirl-fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/rainbow-swirl-fast.json -------------------------------------------------------------------------------- /effects/rainbow-swirl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/rainbow-swirl.json -------------------------------------------------------------------------------- /effects/rainbow-swirl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/rainbow-swirl.py -------------------------------------------------------------------------------- /effects/random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/random.json -------------------------------------------------------------------------------- /effects/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/random.py -------------------------------------------------------------------------------- /effects/running_dots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/running_dots.json -------------------------------------------------------------------------------- /effects/running_dots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/running_dots.py -------------------------------------------------------------------------------- /effects/shutdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/shutdown.json -------------------------------------------------------------------------------- /effects/shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/shutdown.py -------------------------------------------------------------------------------- /effects/snake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/snake.json -------------------------------------------------------------------------------- /effects/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/snake.py -------------------------------------------------------------------------------- /effects/sparks-color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/sparks-color.json -------------------------------------------------------------------------------- /effects/sparks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/sparks.json -------------------------------------------------------------------------------- /effects/sparks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/sparks.py -------------------------------------------------------------------------------- /effects/strobe-blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/strobe-blue.json -------------------------------------------------------------------------------- /effects/strobe-raspbmc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/strobe-raspbmc.json -------------------------------------------------------------------------------- /effects/strobe-white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/strobe-white.json -------------------------------------------------------------------------------- /effects/strobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/strobe.py -------------------------------------------------------------------------------- /effects/traces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/traces.json -------------------------------------------------------------------------------- /effects/traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/traces.py -------------------------------------------------------------------------------- /effects/udp-mcast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/udp-mcast.json -------------------------------------------------------------------------------- /effects/udp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/udp.json -------------------------------------------------------------------------------- /effects/udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/udp.py -------------------------------------------------------------------------------- /effects/x-mas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/x-mas.json -------------------------------------------------------------------------------- /effects/x-mas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/effects/x-mas.py -------------------------------------------------------------------------------- /include/blackborder/BlackBorderDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/blackborder/BlackBorderDetector.h -------------------------------------------------------------------------------- /include/blackborder/BlackBorderProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/blackborder/BlackBorderProcessor.h -------------------------------------------------------------------------------- /include/boblightserver/BoblightServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/boblightserver/BoblightServer.h -------------------------------------------------------------------------------- /include/bonjour/bonjourrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/bonjour/bonjourrecord.h -------------------------------------------------------------------------------- /include/bonjour/bonjourserviceregister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/bonjour/bonjourserviceregister.h -------------------------------------------------------------------------------- /include/effectengine/ActiveEffectDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/effectengine/ActiveEffectDefinition.h -------------------------------------------------------------------------------- /include/effectengine/EffectDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/effectengine/EffectDefinition.h -------------------------------------------------------------------------------- /include/effectengine/EffectEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/effectengine/EffectEngine.h -------------------------------------------------------------------------------- /include/grabber/AmlogicGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/AmlogicGrabber.h -------------------------------------------------------------------------------- /include/grabber/AmlogicWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/AmlogicWrapper.h -------------------------------------------------------------------------------- /include/grabber/DispmanxFrameGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/DispmanxFrameGrabber.h -------------------------------------------------------------------------------- /include/grabber/DispmanxWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/DispmanxWrapper.h -------------------------------------------------------------------------------- /include/grabber/FramebufferFrameGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/FramebufferFrameGrabber.h -------------------------------------------------------------------------------- /include/grabber/FramebufferWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/FramebufferWrapper.h -------------------------------------------------------------------------------- /include/grabber/OpenCVGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/OpenCVGrabber.h -------------------------------------------------------------------------------- /include/grabber/OpenCVWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/OpenCVWrapper.h -------------------------------------------------------------------------------- /include/grabber/OsxFrameGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/OsxFrameGrabber.h -------------------------------------------------------------------------------- /include/grabber/OsxWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/OsxWrapper.h -------------------------------------------------------------------------------- /include/grabber/V4L2Grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/V4L2Grabber.h -------------------------------------------------------------------------------- /include/grabber/V4L2Wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/V4L2Wrapper.h -------------------------------------------------------------------------------- /include/grabber/VideoStandard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/VideoStandard.h -------------------------------------------------------------------------------- /include/grabber/X11Grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/grabber/X11Grabber.h -------------------------------------------------------------------------------- /include/hyperion/ColorAdjustment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/ColorAdjustment.h -------------------------------------------------------------------------------- /include/hyperion/ColorCorrection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/ColorCorrection.h -------------------------------------------------------------------------------- /include/hyperion/ColorTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/ColorTransform.h -------------------------------------------------------------------------------- /include/hyperion/Hyperion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/Hyperion.h -------------------------------------------------------------------------------- /include/hyperion/ImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/ImageProcessor.h -------------------------------------------------------------------------------- /include/hyperion/ImageProcessorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/ImageProcessorFactory.h -------------------------------------------------------------------------------- /include/hyperion/ImageToLedsMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/ImageToLedsMap.h -------------------------------------------------------------------------------- /include/hyperion/LedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/LedString.h -------------------------------------------------------------------------------- /include/hyperion/MessageForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/MessageForwarder.h -------------------------------------------------------------------------------- /include/hyperion/PriorityMuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/hyperion/PriorityMuxer.h -------------------------------------------------------------------------------- /include/jsonserver/JsonServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/jsonserver/JsonServer.h -------------------------------------------------------------------------------- /include/leddevice/LedDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/leddevice/LedDevice.h -------------------------------------------------------------------------------- /include/leddevice/LedDeviceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/leddevice/LedDeviceFactory.h -------------------------------------------------------------------------------- /include/protoserver/ProtoConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/protoserver/ProtoConnection.h -------------------------------------------------------------------------------- /include/protoserver/ProtoConnectionWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/protoserver/ProtoConnectionWrapper.h -------------------------------------------------------------------------------- /include/protoserver/ProtoServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/protoserver/ProtoServer.h -------------------------------------------------------------------------------- /include/utils/ColorArgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/ColorArgb.h -------------------------------------------------------------------------------- /include/utils/ColorBgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/ColorBgr.h -------------------------------------------------------------------------------- /include/utils/ColorRgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/ColorRgb.h -------------------------------------------------------------------------------- /include/utils/ColorRgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/ColorRgba.h -------------------------------------------------------------------------------- /include/utils/ColorRgbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/ColorRgbw.h -------------------------------------------------------------------------------- /include/utils/GrabbingMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/GrabbingMode.h -------------------------------------------------------------------------------- /include/utils/HslTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/HslTransform.h -------------------------------------------------------------------------------- /include/utils/HsvTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/HsvTransform.h -------------------------------------------------------------------------------- /include/utils/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/Image.h -------------------------------------------------------------------------------- /include/utils/ImageResampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/ImageResampler.h -------------------------------------------------------------------------------- /include/utils/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/Logger.h -------------------------------------------------------------------------------- /include/utils/PixelFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/PixelFormat.h -------------------------------------------------------------------------------- /include/utils/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/Profiler.h -------------------------------------------------------------------------------- /include/utils/RgbChannelAdjustment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/RgbChannelAdjustment.h -------------------------------------------------------------------------------- /include/utils/RgbChannelCorrection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/RgbChannelCorrection.h -------------------------------------------------------------------------------- /include/utils/RgbChannelTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/RgbChannelTransform.h -------------------------------------------------------------------------------- /include/utils/RgbToRgbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/RgbToRgbw.h -------------------------------------------------------------------------------- /include/utils/Sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/Sleep.h -------------------------------------------------------------------------------- /include/utils/VideoMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/VideoMode.h -------------------------------------------------------------------------------- /include/utils/jsonschema/JsonFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/jsonschema/JsonFactory.h -------------------------------------------------------------------------------- /include/utils/jsonschema/JsonSchemaChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/utils/jsonschema/JsonSchemaChecker.h -------------------------------------------------------------------------------- /include/webconfig/WebConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/webconfig/WebConfig.h -------------------------------------------------------------------------------- /include/xbmcvideochecker/XBMCVideoChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/include/xbmcvideochecker/XBMCVideoChecker.h -------------------------------------------------------------------------------- /libsrc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/blackborder/BlackBorderDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/blackborder/BlackBorderDetector.cpp -------------------------------------------------------------------------------- /libsrc/blackborder/BlackBorderProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/blackborder/BlackBorderProcessor.cpp -------------------------------------------------------------------------------- /libsrc/blackborder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/blackborder/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/boblightserver/BoblightClientConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/boblightserver/BoblightClientConnection.cpp -------------------------------------------------------------------------------- /libsrc/boblightserver/BoblightClientConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/boblightserver/BoblightClientConnection.h -------------------------------------------------------------------------------- /libsrc/boblightserver/BoblightServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/boblightserver/BoblightServer.cpp -------------------------------------------------------------------------------- /libsrc/boblightserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/boblightserver/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/bonjour/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/bonjour/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/bonjour/bonjourserviceregister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/bonjour/bonjourserviceregister.cpp -------------------------------------------------------------------------------- /libsrc/bonjour/fortuneserver.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/bonjour/fortuneserver.pro -------------------------------------------------------------------------------- /libsrc/bonjour/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/bonjour/main.cpp -------------------------------------------------------------------------------- /libsrc/bonjour/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/bonjour/server.cpp -------------------------------------------------------------------------------- /libsrc/bonjour/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/bonjour/server.h -------------------------------------------------------------------------------- /libsrc/effectengine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/effectengine/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/effectengine/Effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/effectengine/Effect.cpp -------------------------------------------------------------------------------- /libsrc/effectengine/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/effectengine/Effect.h -------------------------------------------------------------------------------- /libsrc/effectengine/EffectDefinition.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/effectengine/EffectDefinition.schema.json -------------------------------------------------------------------------------- /libsrc/effectengine/EffectEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/effectengine/EffectEngine.cpp -------------------------------------------------------------------------------- /libsrc/effectengine/EffectEngine.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/effectengine/EffectEngine.qrc -------------------------------------------------------------------------------- /libsrc/grabber/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/grabber/amlogic/AmlogicGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/amlogic/AmlogicGrabber.cpp -------------------------------------------------------------------------------- /libsrc/grabber/amlogic/AmlogicWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/amlogic/AmlogicWrapper.cpp -------------------------------------------------------------------------------- /libsrc/grabber/amlogic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/amlogic/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/grabber/dispmanx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/dispmanx/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/grabber/dispmanx/DispmanxFrameGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/dispmanx/DispmanxFrameGrabber.cpp -------------------------------------------------------------------------------- /libsrc/grabber/dispmanx/DispmanxWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/dispmanx/DispmanxWrapper.cpp -------------------------------------------------------------------------------- /libsrc/grabber/framebuffer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/framebuffer/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/grabber/framebuffer/FramebufferFrameGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/framebuffer/FramebufferFrameGrabber.cpp -------------------------------------------------------------------------------- /libsrc/grabber/framebuffer/FramebufferWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/framebuffer/FramebufferWrapper.cpp -------------------------------------------------------------------------------- /libsrc/grabber/opencv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/opencv/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/grabber/opencv/OpenCVGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/opencv/OpenCVGrabber.cpp -------------------------------------------------------------------------------- /libsrc/grabber/opencv/OpenCVWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/opencv/OpenCVWrapper.cpp -------------------------------------------------------------------------------- /libsrc/grabber/osx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/osx/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/grabber/osx/OsxFrameGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/osx/OsxFrameGrabber.cpp -------------------------------------------------------------------------------- /libsrc/grabber/osx/OsxWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/osx/OsxWrapper.cpp -------------------------------------------------------------------------------- /libsrc/grabber/v4l2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/v4l2/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/grabber/v4l2/V4L2Grabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/v4l2/V4L2Grabber.cpp -------------------------------------------------------------------------------- /libsrc/grabber/v4l2/V4L2Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/v4l2/V4L2Wrapper.cpp -------------------------------------------------------------------------------- /libsrc/grabber/x11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/x11/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/grabber/x11/X11Grabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/grabber/x11/X11Grabber.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/hyperion/Hyperion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/Hyperion.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/ImageProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/ImageProcessor.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/ImageProcessorFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/ImageProcessorFactory.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/ImageToLedsMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/ImageToLedsMap.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/LedString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/LedString.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/LinearColorSmoothing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/LinearColorSmoothing.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/LinearColorSmoothing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/LinearColorSmoothing.h -------------------------------------------------------------------------------- /libsrc/hyperion/MessageForwarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/MessageForwarder.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/MultiColorAdjustment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/MultiColorAdjustment.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/MultiColorAdjustment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/MultiColorAdjustment.h -------------------------------------------------------------------------------- /libsrc/hyperion/MultiColorCorrection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/MultiColorCorrection.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/MultiColorCorrection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/MultiColorCorrection.h -------------------------------------------------------------------------------- /libsrc/hyperion/MultiColorTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/MultiColorTransform.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/MultiColorTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/MultiColorTransform.h -------------------------------------------------------------------------------- /libsrc/hyperion/PriorityMuxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/PriorityMuxer.cpp -------------------------------------------------------------------------------- /libsrc/hyperion/hyperion.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/hyperion.schema.json -------------------------------------------------------------------------------- /libsrc/hyperion/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/hyperion/resource.qrc -------------------------------------------------------------------------------- /libsrc/jsonserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/jsonserver/JsonClientConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/JsonClientConnection.cpp -------------------------------------------------------------------------------- /libsrc/jsonserver/JsonClientConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/JsonClientConnection.h -------------------------------------------------------------------------------- /libsrc/jsonserver/JsonSchemas.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/JsonSchemas.qrc -------------------------------------------------------------------------------- /libsrc/jsonserver/JsonServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/JsonServer.cpp -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-adjustment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-adjustment.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-clear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-clear.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-clearall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-clearall.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-color.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-correction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-correction.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-effect.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-image.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-serverinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-serverinfo.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-temperature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-temperature.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema-transform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema-transform.json -------------------------------------------------------------------------------- /libsrc/jsonserver/schema/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/jsonserver/schema/schema.json -------------------------------------------------------------------------------- /libsrc/leddevice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAPA102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAPA102.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAPA102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAPA102.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAdalight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAdalight.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAdalight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAdalight.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAdalightApa102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAdalightApa102.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAdalightApa102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAdalightApa102.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAmbiLed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAmbiLed.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAmbiLed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAmbiLed.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAtmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAtmo.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAtmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAtmo.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAtmoOrb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAtmoOrb.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAtmoOrb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAtmoOrb.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAurora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAurora.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceAurora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceAurora.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceFactory.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceFadeCandy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceFadeCandy.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceFadeCandy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceFadeCandy.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceFile.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceFile.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceHyperionUsbasp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceHyperionUsbasp.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceHyperionUsbasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceHyperionUsbasp.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceLightpack-hidapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceLightpack-hidapi.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceLightpack-hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceLightpack-hidapi.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceLightpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceLightpack.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceLightpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceLightpack.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceLpd6803.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceLpd6803.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceLpd6803.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceLpd6803.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceLpd8806.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceLpd8806.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceLpd8806.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceLpd8806.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceMultiLightpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceMultiLightpack.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceMultiLightpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceMultiLightpack.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceP9813.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceP9813.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceP9813.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceP9813.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDevicePaintpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDevicePaintpack.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDevicePaintpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDevicePaintpack.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDevicePhilipsHue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDevicePhilipsHue.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDevicePhilipsHue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDevicePhilipsHue.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDevicePiBlaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDevicePiBlaster.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDevicePiBlaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDevicePiBlaster.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceRawHID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceRawHID.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceRawHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceRawHID.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceSedu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceSedu.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceSedu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceSedu.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceTinkerforge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceTinkerforge.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceTinkerforge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceTinkerforge.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceTpm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceTpm2.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceTpm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceTpm2.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceUdp.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceUdp.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceUdpRaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceUdpRaw.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceUdpRaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceUdpRaw.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceWS2812b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceWS2812b.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceWS2812b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceWS2812b.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceWS281x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceWS281x.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceWS281x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceWS281x.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceWs2801.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceWs2801.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceWs2801.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceWs2801.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceWs2812SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceWs2812SPI.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedDeviceWs2812SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedDeviceWs2812SPI.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedHIDDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedHIDDevice.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedHIDDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedHIDDevice.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedRs232Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedRs232Device.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedRs232Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedRs232Device.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedSpiDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedSpiDevice.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedSpiDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedSpiDevice.h -------------------------------------------------------------------------------- /libsrc/leddevice/LedUdpDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedUdpDevice.cpp -------------------------------------------------------------------------------- /libsrc/leddevice/LedUdpDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/leddevice/LedUdpDevice.h -------------------------------------------------------------------------------- /libsrc/protoserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/protoserver/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/protoserver/ProtoClientConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/protoserver/ProtoClientConnection.cpp -------------------------------------------------------------------------------- /libsrc/protoserver/ProtoClientConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/protoserver/ProtoClientConnection.h -------------------------------------------------------------------------------- /libsrc/protoserver/ProtoConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/protoserver/ProtoConnection.cpp -------------------------------------------------------------------------------- /libsrc/protoserver/ProtoConnectionWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/protoserver/ProtoConnectionWrapper.cpp -------------------------------------------------------------------------------- /libsrc/protoserver/ProtoServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/protoserver/ProtoServer.cpp -------------------------------------------------------------------------------- /libsrc/protoserver/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/protoserver/message.proto -------------------------------------------------------------------------------- /libsrc/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/utils/ColorArgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/ColorArgb.cpp -------------------------------------------------------------------------------- /libsrc/utils/ColorBgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/ColorBgr.cpp -------------------------------------------------------------------------------- /libsrc/utils/ColorRgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/ColorRgb.cpp -------------------------------------------------------------------------------- /libsrc/utils/ColorRgba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/ColorRgba.cpp -------------------------------------------------------------------------------- /libsrc/utils/ColorRgbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/ColorRgbw.cpp -------------------------------------------------------------------------------- /libsrc/utils/HslTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/HslTransform.cpp -------------------------------------------------------------------------------- /libsrc/utils/HsvTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/HsvTransform.cpp -------------------------------------------------------------------------------- /libsrc/utils/ImageResampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/ImageResampler.cpp -------------------------------------------------------------------------------- /libsrc/utils/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/Logger.cpp -------------------------------------------------------------------------------- /libsrc/utils/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/Profiler.cpp -------------------------------------------------------------------------------- /libsrc/utils/RgbChannelAdjustment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/RgbChannelAdjustment.cpp -------------------------------------------------------------------------------- /libsrc/utils/RgbChannelCorrection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/RgbChannelCorrection.cpp -------------------------------------------------------------------------------- /libsrc/utils/RgbChannelTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/RgbChannelTransform.cpp -------------------------------------------------------------------------------- /libsrc/utils/RgbToRgbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/RgbToRgbw.cpp -------------------------------------------------------------------------------- /libsrc/utils/jsonschema/JsonSchemaChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/utils/jsonschema/JsonSchemaChecker.cpp -------------------------------------------------------------------------------- /libsrc/webconfig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/webconfig/CgiHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/CgiHandler.cpp -------------------------------------------------------------------------------- /libsrc/webconfig/CgiHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/CgiHandler.h -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpClientWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpClientWrapper.cpp -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpClientWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpClientWrapper.h -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpHeader.cpp -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpHeader.h -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpReply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpReply.cpp -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpReply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpReply.h -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpRequest.cpp -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpRequest.h -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpServer.cpp -------------------------------------------------------------------------------- /libsrc/webconfig/QtHttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/QtHttpServer.h -------------------------------------------------------------------------------- /libsrc/webconfig/StaticFileServing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/StaticFileServing.cpp -------------------------------------------------------------------------------- /libsrc/webconfig/StaticFileServing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/StaticFileServing.h -------------------------------------------------------------------------------- /libsrc/webconfig/WebConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/webconfig/WebConfig.cpp -------------------------------------------------------------------------------- /libsrc/xbmcvideochecker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/xbmcvideochecker/CMakeLists.txt -------------------------------------------------------------------------------- /libsrc/xbmcvideochecker/XBMCVideoChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/libsrc/xbmcvideochecker/XBMCVideoChecker.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/hyperion-aml/AmlogicWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-aml/AmlogicWrapper.cpp -------------------------------------------------------------------------------- /src/hyperion-aml/AmlogicWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-aml/AmlogicWrapper.h -------------------------------------------------------------------------------- /src/hyperion-aml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-aml/CMakeLists.txt -------------------------------------------------------------------------------- /src/hyperion-aml/hyperion-aml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-aml/hyperion-aml.cpp -------------------------------------------------------------------------------- /src/hyperion-dispmanx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-dispmanx/CMakeLists.txt -------------------------------------------------------------------------------- /src/hyperion-dispmanx/DispmanxWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-dispmanx/DispmanxWrapper.cpp -------------------------------------------------------------------------------- /src/hyperion-dispmanx/DispmanxWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-dispmanx/DispmanxWrapper.h -------------------------------------------------------------------------------- /src/hyperion-dispmanx/hyperion-dispmanx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-dispmanx/hyperion-dispmanx.cpp -------------------------------------------------------------------------------- /src/hyperion-framebuffer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-framebuffer/CMakeLists.txt -------------------------------------------------------------------------------- /src/hyperion-framebuffer/FramebufferWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-framebuffer/FramebufferWrapper.cpp -------------------------------------------------------------------------------- /src/hyperion-framebuffer/FramebufferWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-framebuffer/FramebufferWrapper.h -------------------------------------------------------------------------------- /src/hyperion-framebuffer/hyperion-framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-framebuffer/hyperion-framebuffer.cpp -------------------------------------------------------------------------------- /src/hyperion-osx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-osx/CMakeLists.txt -------------------------------------------------------------------------------- /src/hyperion-osx/OsxWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-osx/OsxWrapper.cpp -------------------------------------------------------------------------------- /src/hyperion-osx/OsxWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-osx/OsxWrapper.h -------------------------------------------------------------------------------- /src/hyperion-osx/hyperion-osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-osx/hyperion-osx.cpp -------------------------------------------------------------------------------- /src/hyperion-remote/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-remote/CMakeLists.txt -------------------------------------------------------------------------------- /src/hyperion-remote/ColorAdjustmentValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-remote/ColorAdjustmentValues.h -------------------------------------------------------------------------------- /src/hyperion-remote/ColorCorrectionValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-remote/ColorCorrectionValues.h -------------------------------------------------------------------------------- /src/hyperion-remote/ColorTransformValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-remote/ColorTransformValues.h -------------------------------------------------------------------------------- /src/hyperion-remote/CustomParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-remote/CustomParameter.h -------------------------------------------------------------------------------- /src/hyperion-remote/JsonConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-remote/JsonConnection.cpp -------------------------------------------------------------------------------- /src/hyperion-remote/JsonConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-remote/JsonConnection.h -------------------------------------------------------------------------------- /src/hyperion-remote/hyperion-remote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-remote/hyperion-remote.cpp -------------------------------------------------------------------------------- /src/hyperion-v4l2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-v4l2/CMakeLists.txt -------------------------------------------------------------------------------- /src/hyperion-v4l2/PixelFormatParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-v4l2/PixelFormatParameter.h -------------------------------------------------------------------------------- /src/hyperion-v4l2/ScreenshotHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-v4l2/ScreenshotHandler.cpp -------------------------------------------------------------------------------- /src/hyperion-v4l2/ScreenshotHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-v4l2/ScreenshotHandler.h -------------------------------------------------------------------------------- /src/hyperion-v4l2/VideoStandardParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-v4l2/VideoStandardParameter.h -------------------------------------------------------------------------------- /src/hyperion-v4l2/hyperion-v4l2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-v4l2/hyperion-v4l2.cpp -------------------------------------------------------------------------------- /src/hyperion-x11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-x11/CMakeLists.txt -------------------------------------------------------------------------------- /src/hyperion-x11/X11Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-x11/X11Wrapper.cpp -------------------------------------------------------------------------------- /src/hyperion-x11/X11Wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-x11/X11Wrapper.h -------------------------------------------------------------------------------- /src/hyperion-x11/hyperion-x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperion-x11/hyperion-x11.cpp -------------------------------------------------------------------------------- /src/hyperiond/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperiond/CMakeLists.txt -------------------------------------------------------------------------------- /src/hyperiond/hyperiond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/src/hyperiond/hyperiond.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/TestBlackBorderDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestBlackBorderDetector.cpp -------------------------------------------------------------------------------- /test/TestBlackBorderProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestBlackBorderProcessor.cpp -------------------------------------------------------------------------------- /test/TestColorTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestColorTransform.cpp -------------------------------------------------------------------------------- /test/TestConfigFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestConfigFile.cpp -------------------------------------------------------------------------------- /test/TestHyperionPng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestHyperionPng.cpp -------------------------------------------------------------------------------- /test/TestImage2LedsMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestImage2LedsMap.cpp -------------------------------------------------------------------------------- /test/TestQRegExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestQRegExp.cpp -------------------------------------------------------------------------------- /test/TestQtScreenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestQtScreenshot.cpp -------------------------------------------------------------------------------- /test/TestRgbImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestRgbImage.cpp -------------------------------------------------------------------------------- /test/TestSpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestSpi.cpp -------------------------------------------------------------------------------- /test/TestX11Performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/TestX11Performance.cpp -------------------------------------------------------------------------------- /test/dispmanx2png/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/dispmanx2png/CMakeLists.txt -------------------------------------------------------------------------------- /test/dispmanx2png/dispmanx2png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/dispmanx2png/dispmanx2png.cpp -------------------------------------------------------------------------------- /test/spidev_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/spidev_test.c -------------------------------------------------------------------------------- /test/switchPinCtrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/hyperion/HEAD/test/switchPinCtrl.c --------------------------------------------------------------------------------