├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── 93-lightpack.rules ├── CommonHeaders ├── COMMANDS.h ├── LEDS_COUNT.h └── USB_ID.h ├── Firmware ├── .settings │ └── de.innot.avreclipse.core.prefs ├── CHANGELOG ├── Descriptors.c ├── Descriptors.h ├── LUFA │ ├── Build │ │ ├── HID_EEPROM_Loader │ │ │ ├── HID_EEPROM_Loader.c │ │ │ └── makefile │ │ ├── lufa_atprogram.mk │ │ ├── lufa_avrdude.mk │ │ ├── lufa_build.mk │ │ ├── lufa_core.mk │ │ ├── lufa_cppcheck.mk │ │ ├── lufa_dfu.mk │ │ ├── lufa_doxygen.mk │ │ ├── lufa_hid.mk │ │ └── lufa_sources.mk │ ├── CodeTemplates │ │ ├── DeviceTemplate │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── DeviceApplication.c │ │ │ ├── DeviceApplication.h │ │ │ └── asf.xml │ │ ├── DriverStubs │ │ │ ├── Board.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── HostTemplate │ │ │ ├── HostApplication.c │ │ │ ├── HostApplication.h │ │ │ └── asf.xml │ │ ├── LUFAConfig.h │ │ └── makefile_template │ ├── Common │ │ ├── ArchitectureSpecific.h │ │ ├── Architectures.h │ │ ├── Attributes.h │ │ ├── BoardTypes.h │ │ ├── Common.h │ │ ├── CompilerSpecific.h │ │ └── Endianness.h │ ├── Doxygen.conf │ ├── DoxygenPages │ │ ├── BuildSystem.txt │ │ ├── BuildingLinkableLibraries.txt │ │ ├── ChangeLog.txt │ │ ├── CompileTimeTokens.txt │ │ ├── CompilingApps.txt │ │ ├── ConfiguringApps.txt │ │ ├── DevelopingWithLUFA.txt │ │ ├── DeviceSupport.txt │ │ ├── DirectorySummaries.txt │ │ ├── Donating.txt │ │ ├── ExportingLibrary.txt │ │ ├── FutureChanges.txt │ │ ├── GettingStarted.txt │ │ ├── Groups.txt │ │ ├── Images │ │ │ ├── AS5_AS6_Import │ │ │ │ ├── AS5_AS6_Import_Step1.png │ │ │ │ ├── AS5_AS6_Import_Step2.png │ │ │ │ ├── AS5_AS6_Import_Step3.png │ │ │ │ ├── AS5_AS6_Import_Step4.png │ │ │ │ ├── AS5_AS6_Import_Step5_1.png │ │ │ │ ├── AS5_AS6_Import_Step5_2.png │ │ │ │ └── AS5_AS6_Import_Step5_3.png │ │ │ ├── Author.jpg │ │ │ ├── LUFA.png │ │ │ └── LUFA_thumb.png │ │ ├── KnownIssues.txt │ │ ├── LUFAPoweredProjects.txt │ │ ├── LibraryResources.txt │ │ ├── LicenseInfo.txt │ │ ├── MainPage.txt │ │ ├── MigrationInformation.txt │ │ ├── OSDrivers.txt │ │ ├── ProgrammingApps.txt │ │ ├── SoftwareBootloaderJump.txt │ │ ├── Style │ │ │ ├── Footer.htm │ │ │ └── Style.css │ │ ├── VIDAndPIDValues.txt │ │ └── WritingBoardDrivers.txt │ ├── Drivers │ │ ├── Board │ │ │ ├── AVR8 │ │ │ │ ├── ADAFRUITU4 │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── ATAVRUSBRF01 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BENITO │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BIGMULTIO │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BLACKCAT │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BUI │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BUMBLEB │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── CULV3 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── DUCE │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── EVK527 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── JMDBU2 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── LEONARDO │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MAXIMUS │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MICRO │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MICROPENDOUS │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MICROSIN162 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MINIMUS │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MULTIO │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── OLIMEX162 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── OLIMEX32U4 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── OLIMEXISPMK2 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── OLIMEXT32U4 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── RZUSBSTICK │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── SPARKFUN8U2 │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── STANGE_ISP │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── STK525 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── STK526 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── TEENSY │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── TUL │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── U2S │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── UDIP │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── UNO │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USB2AX │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USBFOO │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USBKEY │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USBTINYMKII │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── XPLAIN │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ └── LEDs.h │ │ │ │ └── YUN │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ ├── Board.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ ├── LEDs.h │ │ │ ├── Temperature.c │ │ │ ├── Temperature.h │ │ │ ├── UC3 │ │ │ │ ├── EVK1100 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── EVK1101 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── EVK1104 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ └── UC3A3_XPLAINED │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ └── XMEGA │ │ │ │ ├── A3BU_XPLAINED │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ └── LEDs.h │ │ │ │ ├── B1_XPLAINED │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ └── LEDs.h │ │ │ │ └── C3_XPLAINED │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ ├── Misc │ │ │ ├── AT45DB321C.h │ │ │ ├── AT45DB642D.h │ │ │ ├── RingBuffer.h │ │ │ └── TerminalCodes.h │ │ ├── Peripheral │ │ │ ├── ADC.h │ │ │ ├── AVR8 │ │ │ │ ├── ADC_AVR8.h │ │ │ │ ├── SPI_AVR8.h │ │ │ │ ├── SerialSPI_AVR8.h │ │ │ │ ├── Serial_AVR8.c │ │ │ │ ├── Serial_AVR8.h │ │ │ │ ├── TWI_AVR8.c │ │ │ │ └── TWI_AVR8.h │ │ │ ├── SPI.h │ │ │ ├── Serial.h │ │ │ ├── SerialSPI.h │ │ │ ├── TWI.h │ │ │ └── XMEGA │ │ │ │ ├── SPI_XMEGA.h │ │ │ │ ├── SerialSPI_XMEGA.h │ │ │ │ ├── Serial_XMEGA.c │ │ │ │ ├── Serial_XMEGA.h │ │ │ │ ├── TWI_XMEGA.c │ │ │ │ └── TWI_XMEGA.h │ │ └── USB │ │ │ ├── Class │ │ │ ├── AndroidAccessoryClass.h │ │ │ ├── AudioClass.h │ │ │ ├── CDCClass.h │ │ │ ├── Common │ │ │ │ ├── AndroidAccessoryClassCommon.h │ │ │ │ ├── AudioClassCommon.h │ │ │ │ ├── CDCClassCommon.h │ │ │ │ ├── HIDClassCommon.h │ │ │ │ ├── HIDParser.c │ │ │ │ ├── HIDParser.h │ │ │ │ ├── HIDReportData.h │ │ │ │ ├── MIDIClassCommon.h │ │ │ │ ├── MassStorageClassCommon.h │ │ │ │ ├── PrinterClassCommon.h │ │ │ │ ├── RNDISClassCommon.h │ │ │ │ └── StillImageClassCommon.h │ │ │ ├── Device │ │ │ │ ├── AudioClassDevice.c │ │ │ │ ├── AudioClassDevice.h │ │ │ │ ├── CDCClassDevice.c │ │ │ │ ├── CDCClassDevice.h │ │ │ │ ├── HIDClassDevice.c │ │ │ │ ├── HIDClassDevice.h │ │ │ │ ├── MIDIClassDevice.c │ │ │ │ ├── MIDIClassDevice.h │ │ │ │ ├── MassStorageClassDevice.c │ │ │ │ ├── MassStorageClassDevice.h │ │ │ │ ├── PrinterClassDevice.c │ │ │ │ ├── PrinterClassDevice.h │ │ │ │ ├── RNDISClassDevice.c │ │ │ │ └── RNDISClassDevice.h │ │ │ ├── HIDClass.h │ │ │ ├── Host │ │ │ │ ├── AndroidAccessoryClassHost.c │ │ │ │ ├── AndroidAccessoryClassHost.h │ │ │ │ ├── AudioClassHost.c │ │ │ │ ├── AudioClassHost.h │ │ │ │ ├── CDCClassHost.c │ │ │ │ ├── CDCClassHost.h │ │ │ │ ├── HIDClassHost.c │ │ │ │ ├── HIDClassHost.h │ │ │ │ ├── MIDIClassHost.c │ │ │ │ ├── MIDIClassHost.h │ │ │ │ ├── MassStorageClassHost.c │ │ │ │ ├── MassStorageClassHost.h │ │ │ │ ├── PrinterClassHost.c │ │ │ │ ├── PrinterClassHost.h │ │ │ │ ├── RNDISClassHost.c │ │ │ │ ├── RNDISClassHost.h │ │ │ │ ├── StillImageClassHost.c │ │ │ │ └── StillImageClassHost.h │ │ │ ├── MIDIClass.h │ │ │ ├── MassStorageClass.h │ │ │ ├── PrinterClass.h │ │ │ ├── RNDISClass.h │ │ │ └── StillImageClass.h │ │ │ ├── Core │ │ │ ├── AVR8 │ │ │ │ ├── Device_AVR8.c │ │ │ │ ├── Device_AVR8.h │ │ │ │ ├── EndpointStream_AVR8.c │ │ │ │ ├── EndpointStream_AVR8.h │ │ │ │ ├── Endpoint_AVR8.c │ │ │ │ ├── Endpoint_AVR8.h │ │ │ │ ├── Host_AVR8.c │ │ │ │ ├── Host_AVR8.h │ │ │ │ ├── OTG_AVR8.h │ │ │ │ ├── PipeStream_AVR8.c │ │ │ │ ├── PipeStream_AVR8.h │ │ │ │ ├── Pipe_AVR8.c │ │ │ │ ├── Pipe_AVR8.h │ │ │ │ ├── Template │ │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ │ ├── Template_Endpoint_RW.c │ │ │ │ │ └── Template_Pipe_RW.c │ │ │ │ ├── USBController_AVR8.c │ │ │ │ ├── USBController_AVR8.h │ │ │ │ ├── USBInterrupt_AVR8.c │ │ │ │ └── USBInterrupt_AVR8.h │ │ │ ├── ConfigDescriptors.c │ │ │ ├── ConfigDescriptors.h │ │ │ ├── Device.h │ │ │ ├── DeviceStandardReq.c │ │ │ ├── DeviceStandardReq.h │ │ │ ├── Endpoint.h │ │ │ ├── EndpointStream.h │ │ │ ├── Events.c │ │ │ ├── Events.h │ │ │ ├── Host.h │ │ │ ├── HostStandardReq.c │ │ │ ├── HostStandardReq.h │ │ │ ├── OTG.h │ │ │ ├── Pipe.h │ │ │ ├── PipeStream.h │ │ │ ├── StdDescriptors.h │ │ │ ├── StdRequestType.h │ │ │ ├── UC3 │ │ │ │ ├── Device_UC3.c │ │ │ │ ├── Device_UC3.h │ │ │ │ ├── EndpointStream_UC3.c │ │ │ │ ├── EndpointStream_UC3.h │ │ │ │ ├── Endpoint_UC3.c │ │ │ │ ├── Endpoint_UC3.h │ │ │ │ ├── Host_UC3.c │ │ │ │ ├── Host_UC3.h │ │ │ │ ├── PipeStream_UC3.c │ │ │ │ ├── PipeStream_UC3.h │ │ │ │ ├── Pipe_UC3.c │ │ │ │ ├── Pipe_UC3.h │ │ │ │ ├── Template │ │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ │ ├── Template_Endpoint_RW.c │ │ │ │ │ └── Template_Pipe_RW.c │ │ │ │ ├── USBController_UC3.c │ │ │ │ ├── USBController_UC3.h │ │ │ │ ├── USBInterrupt_UC3.c │ │ │ │ └── USBInterrupt_UC3.h │ │ │ ├── USBController.h │ │ │ ├── USBInterrupt.h │ │ │ ├── USBMode.h │ │ │ ├── USBTask.c │ │ │ ├── USBTask.h │ │ │ └── XMEGA │ │ │ │ ├── Device_XMEGA.c │ │ │ │ ├── Device_XMEGA.h │ │ │ │ ├── EndpointStream_XMEGA.c │ │ │ │ ├── EndpointStream_XMEGA.h │ │ │ │ ├── Endpoint_XMEGA.c │ │ │ │ ├── Endpoint_XMEGA.h │ │ │ │ ├── Host_XMEGA.c │ │ │ │ ├── PipeStream_XMEGA.c │ │ │ │ ├── Pipe_XMEGA.c │ │ │ │ ├── Template │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ └── Template_Endpoint_RW.c │ │ │ │ ├── USBController_XMEGA.c │ │ │ │ ├── USBController_XMEGA.h │ │ │ │ ├── USBInterrupt_XMEGA.c │ │ │ │ └── USBInterrupt_XMEGA.h │ │ │ └── USB.h │ ├── License.txt │ ├── Platform │ │ ├── Platform.h │ │ ├── UC3 │ │ │ ├── ClockManagement.h │ │ │ ├── Exception.S │ │ │ ├── InterruptManagement.c │ │ │ ├── InterruptManagement.h │ │ │ └── UC3ExperimentalInfo.txt │ │ └── XMEGA │ │ │ ├── ClockManagement.h │ │ │ └── XMEGAExperimentalInfo.txt │ ├── StudioIntegration │ │ ├── Docbook │ │ │ ├── mshelp │ │ │ │ └── placeholder.txt │ │ │ └── placeholder.txt │ │ ├── HV1 │ │ │ ├── helpcontentsetup.msha │ │ │ ├── lufa_docbook_transform.xslt │ │ │ ├── lufa_helpcontentsetup_transform.xslt │ │ │ ├── lufa_hv1_transform.xslt │ │ │ └── lufa_studio_help_styling.css │ │ ├── ProjectGenerator │ │ │ └── placeholder.txt │ │ ├── VSIX │ │ │ ├── LUFA.dll │ │ │ ├── LUFA.pkgdef │ │ │ ├── [Content_Types].xml │ │ │ ├── asf-manifest.xml │ │ │ ├── extension.vsixmanifest │ │ │ ├── generate_caches.py │ │ │ ├── lufa_asfmanifest_transform.xslt │ │ │ └── lufa_vsmanifest_transform.xslt │ │ ├── XDK │ │ │ ├── lufa_extension_transform.xslt │ │ │ ├── lufa_filelist_transform.xslt │ │ │ ├── lufa_indent_transform.xslt │ │ │ └── lufa_module_transform.xslt │ │ ├── XSLT │ │ │ ├── lufa_asfmanifest_transform.xslt │ │ │ ├── lufa_extension_transform.xslt │ │ │ ├── lufa_filelist_transform.xslt │ │ │ ├── lufa_indent_transform.xslt │ │ │ ├── lufa_module_transform.xslt │ │ │ └── lufa_vsmanifest_transform.xslt │ │ ├── generate_caches.py │ │ ├── lufa.xml │ │ ├── lufa_common.xml │ │ ├── lufa_drivers_board.xml │ │ ├── lufa_drivers_board_names.xml │ │ ├── lufa_drivers_misc.xml │ │ ├── lufa_drivers_peripheral.xml │ │ ├── lufa_drivers_usb.xml │ │ ├── lufa_drivers_usb_class.xml │ │ ├── lufa_drivers_usb_class_android.xml │ │ ├── lufa_drivers_usb_class_audio.xml │ │ ├── lufa_drivers_usb_class_cdc.xml │ │ ├── lufa_drivers_usb_class_hid.xml │ │ ├── lufa_drivers_usb_class_midi.xml │ │ ├── lufa_drivers_usb_class_ms.xml │ │ ├── lufa_drivers_usb_class_printer.xml │ │ ├── lufa_drivers_usb_class_rndis.xml │ │ ├── lufa_drivers_usb_class_si.xml │ │ ├── lufa_drivers_usb_core.xml │ │ ├── lufa_drivers_usb_core_avr8.xml │ │ ├── lufa_drivers_usb_core_uc3.xml │ │ ├── lufa_drivers_usb_core_xmega.xml │ │ ├── lufa_platform.xml │ │ ├── lufa_platform_uc3.xml │ │ ├── lufa_platform_xmega.xml │ │ ├── lufa_toolchain.xml │ │ └── makefile │ ├── Version.h │ ├── doxyfile │ └── makefile ├── LUFAConfig.h ├── LedDriver.c ├── LedDriver.h ├── LedManager.c ├── LedManager.h ├── Lightpack.c ├── Lightpack.h ├── LightpackUSB.c ├── LightpackUSB.h ├── Makefile ├── build_batch.sh ├── datatypes.h ├── flags.h ├── iodefs.h └── version.h ├── Hardware ├── CHANGELOG ├── Lightpack.brd └── Lightpack.sch ├── LICENSE ├── LICENSE-TEMPLATE ├── README.md ├── Software ├── CHANGELOG ├── Doxyfile.original ├── Doxyfile.readme ├── Lightpack.pro ├── RELEASE_VERSION ├── apiexamples │ ├── Android │ │ ├── DroidPack │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.properties │ │ │ ├── build.xml │ │ │ ├── default.properties │ │ │ ├── export.properties │ │ │ ├── local.properties │ │ │ ├── nbandroid │ │ │ │ └── private.properties │ │ │ ├── proguard.cfg │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── on.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── on.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── on.png │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── net │ │ │ │ └── droidpack │ │ │ │ └── DroidPack.java │ │ └── LightpackDrive_AppInventor │ │ │ ├── README.TXT │ │ │ ├── src │ │ │ └── appinventor │ │ │ │ └── ai_brunql │ │ │ │ └── LightpackDrive │ │ │ │ ├── Screen1.blk │ │ │ │ ├── Screen1.scm │ │ │ │ └── Screen1.yail │ │ │ └── youngandroidproject │ │ │ └── project.properties │ ├── C# │ │ ├── CpuMemMonitor │ │ │ ├── CpuMemMonitor.exe │ │ │ ├── CpuMemMonitor │ │ │ │ ├── CpuMemMonitor.sln │ │ │ │ ├── CpuMemMonitor.suo │ │ │ │ └── CpuMemMonitor │ │ │ │ │ ├── CpuMemMonitor.csproj │ │ │ │ │ ├── CpuMemMonitor.csproj.user │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── bin │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── CpuMemMonitor.exe │ │ │ │ │ │ ├── CpuMemMonitor.pdb │ │ │ │ │ │ ├── CpuMemMonitor.vshost.exe │ │ │ │ │ │ └── CpuMemMonitor.vshost.exe.manifest │ │ │ │ │ └── Release │ │ │ │ │ │ ├── CpuMemMonitor.exe │ │ │ │ │ │ └── CpuMemMonitor.pdb │ │ │ │ │ └── obj │ │ │ │ │ └── x86 │ │ │ │ │ ├── Debug │ │ │ │ │ ├── CpuMemMonitor.csproj.FileListAbsolute.txt │ │ │ │ │ ├── CpuMemMonitor.exe │ │ │ │ │ ├── CpuMemMonitor.pdb │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ └── ResolveAssemblyReference.cache │ │ │ │ │ └── Release │ │ │ │ │ ├── CpuMemMonitor.csproj.FileListAbsolute.txt │ │ │ │ │ ├── CpuMemMonitor.exe │ │ │ │ │ ├── CpuMemMonitor.pdb │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ └── ResolveAssemblyReference.cache │ │ │ ├── Readme.txt │ │ │ └── Run.bat │ │ ├── CpuMonitor │ │ │ ├── CpuMonitor.exe │ │ │ ├── CpuMonitor │ │ │ │ ├── CpuMonitor.sln │ │ │ │ ├── CpuMonitor.suo │ │ │ │ └── CpuMonitor │ │ │ │ │ ├── CpuMonitor.csproj │ │ │ │ │ ├── CpuMonitor.csproj.user │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── bin │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── CpuMonitor.exe │ │ │ │ │ │ ├── CpuMonitor.pdb │ │ │ │ │ │ ├── CpuMonitor.vshost.exe │ │ │ │ │ │ └── CpuMonitor.vshost.exe.manifest │ │ │ │ │ └── Release │ │ │ │ │ │ ├── CpuMonitor.exe │ │ │ │ │ │ └── CpuMonitor.pdb │ │ │ │ │ └── obj │ │ │ │ │ └── x86 │ │ │ │ │ ├── Debug │ │ │ │ │ ├── CpuMonitor.csproj.FileListAbsolute.txt │ │ │ │ │ ├── CpuMonitor.exe │ │ │ │ │ ├── CpuMonitor.pdb │ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ └── Release │ │ │ │ │ ├── CpuMonitor.csproj.FileListAbsolute.txt │ │ │ │ │ ├── CpuMonitor.exe │ │ │ │ │ ├── CpuMonitor.pdb │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ └── ResolveAssemblyReference.cache │ │ │ ├── Readme.txt │ │ │ └── Run.bat │ │ └── VolumeLight │ │ │ ├── NAudio │ │ │ ├── Changes.xml │ │ │ ├── Codecs │ │ │ │ ├── ALawDecoder.cs │ │ │ │ ├── ALawEncoder.cs │ │ │ │ ├── G722Codec.cs │ │ │ │ ├── MuLawDecoder.cs │ │ │ │ └── MuLawEncoder.cs │ │ │ ├── CoreAudioApi │ │ │ │ ├── AudioCaptureClient.cs │ │ │ │ ├── AudioClient.cs │ │ │ │ ├── AudioClientBufferFlags.cs │ │ │ │ ├── AudioClientShareMode.cs │ │ │ │ ├── AudioClientStreamFlags.cs │ │ │ │ ├── AudioEndpointVolume.cs │ │ │ │ ├── AudioEndpointVolumeCallback.cs │ │ │ │ ├── AudioEndpointVolumeChannel.cs │ │ │ │ ├── AudioEndpointVolumeChannels.cs │ │ │ │ ├── AudioEndpointVolumeNotificationDelegate.cs │ │ │ │ ├── AudioEndpointVolumeStepInformation.cs │ │ │ │ ├── AudioEndpointVolumeVolumeRange.cs │ │ │ │ ├── AudioMeterInformation.cs │ │ │ │ ├── AudioMeterInformationChannels.cs │ │ │ │ ├── AudioRenderClient.cs │ │ │ │ ├── AudioVolumeNotificationData.cs │ │ │ │ ├── DataFlow.cs │ │ │ │ ├── DeviceState.cs │ │ │ │ ├── EEndpointHardwareSupport.cs │ │ │ │ ├── Interfaces │ │ │ │ │ ├── AudioVolumeNotificationDataStruct.cs │ │ │ │ │ ├── Blob.cs │ │ │ │ │ ├── ClsCtx.cs │ │ │ │ │ ├── ErrorCodes.cs │ │ │ │ │ ├── IAudioCaptureClient.cs │ │ │ │ │ ├── IAudioClient.cs │ │ │ │ │ ├── IAudioEndpointVolume.cs │ │ │ │ │ ├── IAudioEndpointVolumeCallback.cs │ │ │ │ │ ├── IAudioMeterInformation.cs │ │ │ │ │ ├── IAudioRenderClient.cs │ │ │ │ │ ├── IMMDevice.cs │ │ │ │ │ ├── IMMDeviceCollection.cs │ │ │ │ │ ├── IMMDeviceEnumerator.cs │ │ │ │ │ ├── IMMEndpoint.cs │ │ │ │ │ ├── IMMNotificationClient.cs │ │ │ │ │ ├── IPropertyStore.cs │ │ │ │ │ ├── MMDeviceEnumeratorComObject.cs │ │ │ │ │ └── StorageAccessMode.cs │ │ │ │ ├── MMDevice.cs │ │ │ │ ├── MMDeviceCollection.cs │ │ │ │ ├── MMDeviceEnumerator.cs │ │ │ │ ├── PropVariant.cs │ │ │ │ ├── PropertyKey.cs │ │ │ │ ├── PropertyKeys.cs │ │ │ │ ├── PropertyStore.cs │ │ │ │ ├── PropertyStoreProperty.cs │ │ │ │ ├── Role.cs │ │ │ │ └── WasapiCapture.cs │ │ │ ├── Dmo │ │ │ │ ├── AudioMediaSubtypes.cs │ │ │ │ ├── DmoDescriptor.cs │ │ │ │ ├── DmoEnumFlags.cs │ │ │ │ ├── DmoEnumerator.cs │ │ │ │ ├── DmoGuids.cs │ │ │ │ ├── DmoHResults.cs │ │ │ │ ├── DmoInputDataBufferFlags.cs │ │ │ │ ├── DmoInputStatusFlags.cs │ │ │ │ ├── DmoInterop.cs │ │ │ │ ├── DmoMediaType.cs │ │ │ │ ├── DmoOutputDataBuffer.cs │ │ │ │ ├── DmoOutputDataBufferFlags.cs │ │ │ │ ├── DmoPartialMediaType.cs │ │ │ │ ├── DmoProcessOutputFlags.cs │ │ │ │ ├── DmoSetTypeFlags.cs │ │ │ │ ├── IEnumDmo.cs │ │ │ │ ├── IMediaBuffer.cs │ │ │ │ ├── IMediaObject.cs │ │ │ │ ├── IMediaParamInfo.cs │ │ │ │ ├── IWMResamplerProps.cs │ │ │ │ ├── InputStreamInfoFlags.cs │ │ │ │ ├── MediaBuffer.cs │ │ │ │ ├── MediaObject.cs │ │ │ │ ├── MediaObjectSizeInfo.cs │ │ │ │ ├── MediaParamInfo.cs │ │ │ │ ├── MediaTypes.cs │ │ │ │ ├── OutputStreamInfoFlags.cs │ │ │ │ ├── ResamplerMediaObject.cs │ │ │ │ └── WindowsMediaMp3Decoder.cs │ │ │ ├── Dsp │ │ │ │ ├── BiQuadFilter.cs │ │ │ │ ├── Complex.cs │ │ │ │ ├── EnvelopeDetector.cs │ │ │ │ ├── FastFourierTransform.cs │ │ │ │ ├── ImpulseResponseConvolution.cs │ │ │ │ ├── ShiftBuffer.cs │ │ │ │ ├── SimpleCompressor.cs │ │ │ │ └── SimpleGate.cs │ │ │ ├── FileFormats │ │ │ │ ├── Map │ │ │ │ │ ├── CakewalkDrumMapping.cs │ │ │ │ │ ├── CakewalkMapFile.cs │ │ │ │ │ └── MapBlockHeader.cs │ │ │ │ ├── Mp3 │ │ │ │ │ ├── ChannelMode.cs │ │ │ │ │ ├── DmoMp3FrameDecompressor.cs │ │ │ │ │ ├── IMp3FrameDecompressor.cs │ │ │ │ │ ├── Id3v2Tag.cs │ │ │ │ │ ├── Mp3Frame.cs │ │ │ │ │ ├── Mp3FrameDecompressor.cs │ │ │ │ │ ├── MpegLayer.cs │ │ │ │ │ ├── MpegVersion.cs │ │ │ │ │ └── XingHeader.cs │ │ │ │ ├── Sfz │ │ │ │ │ └── SfzFileReader.cs │ │ │ │ └── SoundFont │ │ │ │ │ ├── Generator.cs │ │ │ │ │ ├── GeneratorBuilder.cs │ │ │ │ │ ├── GeneratorEnum.cs │ │ │ │ │ ├── InfoChunk.cs │ │ │ │ │ ├── Instrument.cs │ │ │ │ │ ├── InstrumentBuilder.cs │ │ │ │ │ ├── Modulator.cs │ │ │ │ │ ├── ModulatorBuilder.cs │ │ │ │ │ ├── ModulatorType.cs │ │ │ │ │ ├── Preset.cs │ │ │ │ │ ├── PresetBuilder.cs │ │ │ │ │ ├── PresetsChunk.cs │ │ │ │ │ ├── RiffChunk.cs │ │ │ │ │ ├── SFSampleLink.cs │ │ │ │ │ ├── SFVersion.cs │ │ │ │ │ ├── SFVersionBuilder.cs │ │ │ │ │ ├── SampleDataChunk.cs │ │ │ │ │ ├── SampleHeader.cs │ │ │ │ │ ├── SampleHeaderBuilder.cs │ │ │ │ │ ├── SampleMode.cs │ │ │ │ │ ├── SoundFont.cs │ │ │ │ │ ├── StructureBuilder.cs │ │ │ │ │ ├── Zone.cs │ │ │ │ │ └── ZoneBuilder.cs │ │ │ ├── Gui │ │ │ │ ├── Arranger.cs │ │ │ │ ├── Arranger.resx │ │ │ │ ├── Fader.cs │ │ │ │ ├── Fader.resx │ │ │ │ ├── Graph │ │ │ │ │ ├── Graph.cs │ │ │ │ │ └── Graph.resx │ │ │ │ ├── LcdPanel.cs │ │ │ │ ├── LcdPanel.resx │ │ │ │ ├── PanSlider.cs │ │ │ │ ├── PanSlider.resx │ │ │ │ ├── Pot.Designer.cs │ │ │ │ ├── Pot.cs │ │ │ │ ├── Pot.resx │ │ │ │ ├── TrackView │ │ │ │ │ ├── AudioClip.cs │ │ │ │ │ ├── Clip.cs │ │ │ │ │ ├── TimeLine.Designer.cs │ │ │ │ │ ├── TimeLine.cs │ │ │ │ │ ├── TimeLine.resx │ │ │ │ │ ├── Track.cs │ │ │ │ │ ├── TrackHeader.Designer.cs │ │ │ │ │ ├── TrackHeader.cs │ │ │ │ │ ├── TrackHeader.resx │ │ │ │ │ ├── TrackView.Designer.cs │ │ │ │ │ └── TrackView.cs │ │ │ │ ├── VolumeMeter.Designer.cs │ │ │ │ ├── VolumeMeter.cs │ │ │ │ ├── VolumeSlider.cs │ │ │ │ ├── VolumeSlider.resx │ │ │ │ ├── WaveViewer.cs │ │ │ │ ├── WaveViewer.resx │ │ │ │ ├── WaveformPainter.Designer.cs │ │ │ │ └── WaveformPainter.cs │ │ │ ├── Midi │ │ │ │ ├── ChannelAfterTouchEvent.cs │ │ │ │ ├── ControlChangeEvent.cs │ │ │ │ ├── KeySignatureEvent.cs │ │ │ │ ├── MetaEvent.cs │ │ │ │ ├── MetaEventType.cs │ │ │ │ ├── MidiCommandCode.cs │ │ │ │ ├── MidiController.cs │ │ │ │ ├── MidiEvent.cs │ │ │ │ ├── MidiEventCollection.cs │ │ │ │ ├── MidiEventComparer.cs │ │ │ │ ├── MidiFile.cs │ │ │ │ ├── MidiIn.cs │ │ │ │ ├── MidiInCapabilities.cs │ │ │ │ ├── MidiInterop.cs │ │ │ │ ├── MidiMessage.cs │ │ │ │ ├── MidiOut.cs │ │ │ │ ├── MidiOutCapabilities.cs │ │ │ │ ├── MidiOutTechnology.cs │ │ │ │ ├── NoteEvent.cs │ │ │ │ ├── NoteOnEvent.cs │ │ │ │ ├── PatchChangeEvent.cs │ │ │ │ ├── PitchWheelChangeEvent.cs │ │ │ │ ├── SequencerSpecificEvent.cs │ │ │ │ ├── SmpteOffsetEvent.cs │ │ │ │ ├── SysexEvent.cs │ │ │ │ ├── TempoEvent.cs │ │ │ │ ├── TextEvent.cs │ │ │ │ ├── TimeSignatureEvent.cs │ │ │ │ └── TrackSequenceNumberEvent.cs │ │ │ ├── Mixer │ │ │ │ ├── BooleanMixerControl.cs │ │ │ │ ├── CustomMixerControl.cs │ │ │ │ ├── ListTextMixerControl.cs │ │ │ │ ├── Mixer.cs │ │ │ │ ├── MixerControl.cs │ │ │ │ ├── MixerControlType.cs │ │ │ │ ├── MixerFlags.cs │ │ │ │ ├── MixerInterop.cs │ │ │ │ ├── MixerLine.cs │ │ │ │ ├── MixerLineComponentType.cs │ │ │ │ ├── MixerSource.cs │ │ │ │ ├── SignedMixerControl.cs │ │ │ │ └── UnsignedMixerControl.cs │ │ │ ├── NAudio.csproj │ │ │ ├── NAudio.csproj.vspscc │ │ │ ├── NAudio.ruleset │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Utils │ │ │ │ ├── BufferHelpers.cs │ │ │ │ ├── ByteEncoding.cs │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── Decibels.cs │ │ │ │ ├── FileAssociations.cs │ │ │ │ ├── HResult.cs │ │ │ │ ├── IgnoreDisposeStream.cs │ │ │ │ ├── MergeSort.cs │ │ │ │ ├── ProgressEventArgs.cs │ │ │ │ ├── ProgressLog.Designer.cs │ │ │ │ ├── ProgressLog.cs │ │ │ │ └── ProgressLog.resx │ │ │ └── Wave │ │ │ │ ├── Asio │ │ │ │ ├── ASIODriver.cs │ │ │ │ ├── ASIODriverExt.cs │ │ │ │ ├── ASIOSampleConvertor.cs │ │ │ │ └── ASIOStructures.cs │ │ │ │ ├── Compression │ │ │ │ ├── AcmDriver.cs │ │ │ │ ├── AcmDriverDetails.cs │ │ │ │ ├── AcmDriverDetailsSupportFlags.cs │ │ │ │ ├── AcmDriverEnumFlags.cs │ │ │ │ ├── AcmFormat.cs │ │ │ │ ├── AcmFormatChoose.cs │ │ │ │ ├── AcmFormatChooseStyleFlags.cs │ │ │ │ ├── AcmFormatDetails.cs │ │ │ │ ├── AcmFormatEnumFlags.cs │ │ │ │ ├── AcmFormatSuggestFlags.cs │ │ │ │ ├── AcmFormatTag.cs │ │ │ │ ├── AcmFormatTagDetails.cs │ │ │ │ ├── AcmInterop.cs │ │ │ │ ├── AcmMetrics.cs │ │ │ │ ├── AcmStream.cs │ │ │ │ ├── AcmStreamConvertFlags.cs │ │ │ │ ├── AcmStreamHeader.cs │ │ │ │ ├── AcmStreamHeaderStatusFlags.cs │ │ │ │ ├── AcmStreamHeaderStruct.cs │ │ │ │ ├── AcmStreamOpenFlags.cs │ │ │ │ ├── AcmStreamSizeFlags.cs │ │ │ │ └── WaveFilter.cs │ │ │ │ ├── MmeInterop │ │ │ │ ├── Manufacturers.cs │ │ │ │ ├── MmException.cs │ │ │ │ ├── MmResult.cs │ │ │ │ ├── MmTime.cs │ │ │ │ ├── WaveCallbackInfo.cs │ │ │ │ ├── WaveCallbackStrategy.cs │ │ │ │ ├── WaveHeader.cs │ │ │ │ ├── WaveHeaderFlags.cs │ │ │ │ ├── WaveIn.cs │ │ │ │ ├── WaveInCapabilities.cs │ │ │ │ ├── WaveInEventArgs.cs │ │ │ │ ├── WaveInterop.cs │ │ │ │ ├── WaveOutCapabilities.cs │ │ │ │ ├── WaveOutSupport.cs │ │ │ │ └── WaveWindow.cs │ │ │ │ ├── SampleChunkConverters │ │ │ │ ├── ISampleChunkConverter.cs │ │ │ │ ├── Mono16SampleChunkConverter.cs │ │ │ │ ├── Mono24SampleChunkConverter.cs │ │ │ │ ├── Mono8SampleChunkConverter.cs │ │ │ │ ├── MonoFloatSampleChunkConverter.cs │ │ │ │ ├── Stereo16SampleChunkConverter.cs │ │ │ │ ├── Stereo24SampleChunkConverter.cs │ │ │ │ ├── Stereo8SampleChunkConverter.cs │ │ │ │ └── StereoFloatSampleChunkConverter.cs │ │ │ │ ├── SampleProviders │ │ │ │ ├── MeteringSampleProvider.cs │ │ │ │ ├── MixingSampleProvider.cs │ │ │ │ ├── MonoToStereoSampleProvider.cs │ │ │ │ ├── NotifyingSampleProvider.cs │ │ │ │ ├── PanningSampleProvider.cs │ │ │ │ ├── Pcm16BitToSampleProvider.cs │ │ │ │ ├── Pcm24BitToSampleProvider.cs │ │ │ │ ├── Pcm8BitToSampleProvider.cs │ │ │ │ ├── SampleChannel.cs │ │ │ │ ├── SampleProviderConverterBase.cs │ │ │ │ ├── SampleToWaveProvider.cs │ │ │ │ ├── VolumeSampleProvider.cs │ │ │ │ └── WaveToSampleProvider.cs │ │ │ │ ├── WaveFormats │ │ │ │ ├── AdpcmWaveFormat.cs │ │ │ │ ├── Gsm610WaveFormat.cs │ │ │ │ ├── ImaAdpcmWaveFormat.cs │ │ │ │ ├── Mp3WaveFormat.cs │ │ │ │ ├── OggWaveFormat.cs │ │ │ │ ├── TrueSpeechWaveFormat.cs │ │ │ │ ├── WaveFormat.cs │ │ │ │ ├── WaveFormatCustomMarshaler.cs │ │ │ │ ├── WaveFormatEncoding.cs │ │ │ │ ├── WaveFormatExtensible.cs │ │ │ │ ├── WaveFormatExtraData.cs │ │ │ │ └── WmaWaveFormat.cs │ │ │ │ ├── WaveInputs │ │ │ │ └── IWaveIn.cs │ │ │ │ ├── WaveOutputs │ │ │ │ ├── AsioOut.cs │ │ │ │ ├── CueWaveFileWriter.cs │ │ │ │ ├── DirectSoundOut.cs │ │ │ │ ├── IWaveBuffer.cs │ │ │ │ ├── IWavePlayer.cs │ │ │ │ ├── IWaveProvider.cs │ │ │ │ ├── IWaveProviderFloat.cs │ │ │ │ ├── PlaybackState.cs │ │ │ │ ├── WasapiOut.cs │ │ │ │ ├── WaveBuffer.cs │ │ │ │ ├── WaveFileWriter.cs │ │ │ │ ├── WaveOut.cs │ │ │ │ ├── WaveOutEvent.cs │ │ │ │ └── WaveOutThreadSafe.cs │ │ │ │ ├── WaveProviders │ │ │ │ ├── BufferedWaveProvider.cs │ │ │ │ ├── MonoToStereoProvider16.cs │ │ │ │ ├── StereoToMonoProvider16.cs │ │ │ │ ├── Wave16toFloatProvider.cs │ │ │ │ ├── WaveFloatTo16Provider.cs │ │ │ │ ├── WaveInProvider.cs │ │ │ │ ├── WaveProvider16.cs │ │ │ │ ├── WaveProvider32.cs │ │ │ │ └── WaveRecorder.cs │ │ │ │ └── WaveStreams │ │ │ │ ├── AiffFileReader.cs │ │ │ │ ├── AudioFileReader.cs │ │ │ │ ├── BlockAlignReductionStream.cs │ │ │ │ ├── CueList.cs │ │ │ │ ├── CueWaveFileReader.cs │ │ │ │ ├── ISampleNotifier.cs │ │ │ │ ├── Mp3FileReader.cs │ │ │ │ ├── RawSourceWaveStream.cs │ │ │ │ ├── ResamplerDmoStream.cs │ │ │ │ ├── RiffChunk.cs │ │ │ │ ├── SimpleCompressorStream.cs │ │ │ │ ├── Wave32To16Stream.cs │ │ │ │ ├── WaveChannel32.cs │ │ │ │ ├── WaveFileReader.cs │ │ │ │ ├── WaveFormatConversionStream.cs │ │ │ │ ├── WaveInBuffer.cs │ │ │ │ ├── WaveMixerStream32.cs │ │ │ │ ├── WaveOffsetStream.cs │ │ │ │ ├── WaveOutBuffer.cs │ │ │ │ └── WaveStream.cs │ │ │ ├── Readme.txt │ │ │ ├── VolumeLight.sln │ │ │ ├── VolumeLight.suo │ │ │ ├── VolumeLight │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── VolumeLight.csproj │ │ │ ├── app.config │ │ │ └── soundlight.ico │ │ │ └── libLightpack │ │ │ ├── ApiLightpack.cs │ │ │ ├── Const.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── libLightpack.csproj │ ├── Delphi │ │ ├── AIMP │ │ │ ├── LightPack.pas │ │ │ ├── LightPack_SDK_Demo │ │ │ │ ├── LightPack.dcu │ │ │ │ ├── LightPack.pas │ │ │ │ ├── LightPack_SDK_Demo.cfg │ │ │ │ ├── LightPack_SDK_Demo.dof │ │ │ │ ├── LightPack_SDK_Demo.dpr │ │ │ │ ├── LightPack_SDK_Demo.exe │ │ │ │ ├── LightPack_SDK_Demo.res │ │ │ │ ├── Unit1.dcu │ │ │ │ ├── Unit1.ddp │ │ │ │ ├── Unit1.dfm │ │ │ │ └── Unit1.pas │ │ │ ├── Readme.txt │ │ │ └── aimp_LightPack │ │ │ │ ├── AIMP_SDK.dcu │ │ │ │ ├── AIMP_SDK.pas │ │ │ │ ├── LightPack.dcu │ │ │ │ ├── LightPack.pas │ │ │ │ ├── aimp_LightPack.cfg │ │ │ │ ├── aimp_LightPack.dll │ │ │ │ ├── aimp_LightPack.dof │ │ │ │ └── aimp_LightPack.dpr │ │ └── Winamp Lightpack-DISCO │ │ │ ├── Settings.dcu │ │ │ ├── Settings.dfm │ │ │ ├── Settings.pas │ │ │ ├── ldisco.dpr │ │ │ ├── ldisco.dproj │ │ │ ├── ldisco.dproj.local │ │ │ ├── ldisco.identcache │ │ │ ├── readme.txt │ │ │ ├── vis.dcu │ │ │ ├── vis.dfm │ │ │ └── vis.pas │ ├── EventGhost │ │ └── Prismatik │ │ │ ├── __init__.py │ │ │ └── lightpack.py │ ├── LUA │ │ ├── Readme.txt │ │ ├── luaLightpack-sample1.lua │ │ ├── luaLightpack-sample2.lua │ │ └── luaLightpack.lua │ ├── PocketBook LightpackDrivePB │ │ ├── CMakeLists.txt │ │ ├── README.TXT │ │ ├── cimages │ │ │ └── readme.txt │ │ ├── makearm.sh │ │ ├── makepc.sh │ │ ├── push.sh │ │ └── src │ │ │ └── LightpackDrivePB.c │ ├── Ruby │ │ ├── lightpack.rb │ │ └── readme.txt │ ├── VisualTests │ │ ├── VisualTests.py │ │ └── lightpack.py │ ├── dotnetLightpack │ │ ├── Lightpack.sln │ │ ├── TestLightpack │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── HelpForm.Designer.cs │ │ │ ├── HelpForm.cs │ │ │ ├── HelpForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── TestLightpack.csproj │ │ │ └── app.config │ │ └── libLightpack │ │ │ ├── ApiLightpack.cs │ │ │ ├── Const.cs │ │ │ ├── LogEvent.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── libLightpack.csproj │ ├── liOSC │ │ ├── LiOSC.py │ │ ├── OSC.py │ │ └── lightpack.py │ └── pyLightpack │ │ ├── Animexamples.py │ │ ├── ApiServerStressTest.py │ │ ├── GmailChecker.py │ │ ├── SkypeBuddyCheck.py │ │ ├── gReadeChecker.py │ │ ├── lightpack.py │ │ ├── script.lightpack.zip │ │ └── testall.py ├── build-config.prf ├── build-vars.prf.default ├── common │ ├── BufferFormat.h │ ├── D3D10GrabberDefs.hpp │ ├── WinDXUtils.cpp │ ├── WinDXUtils.hpp │ ├── defs.h │ └── msvcstub.h ├── dist_linux │ ├── build-in-docker.sh │ ├── build-natively.sh │ ├── dpkg │ │ ├── DEBIAN_template │ │ │ ├── README │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ └── postinst │ │ ├── Dockerfile │ │ └── build.sh │ ├── flatpak │ │ ├── build.sh │ │ ├── launch_prismatik.sh │ │ └── manifest.yml.template │ ├── package_template │ │ ├── etc │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 93-lightpack.rules │ │ └── usr │ │ │ └── share │ │ │ ├── applications │ │ │ └── prismatik.desktop │ │ │ ├── icons │ │ │ ├── Prismatik.png │ │ │ └── hicolor │ │ │ │ └── 22x22 │ │ │ │ └── apps │ │ │ │ └── prismatik-on.png │ │ │ └── pixmaps │ │ │ └── Prismatik.png │ └── pacman │ │ ├── Dockerfile │ │ ├── PKGBUILD.template │ │ ├── build.sh │ │ └── prismatik.install ├── dist_osx │ ├── build-dmg.sh │ └── dsstore ├── dist_windows │ ├── Prismatik.ico │ ├── content │ │ └── Plugins │ │ │ └── .keep_me │ ├── gpl-3.0.txt │ ├── readme.txt │ ├── script.iss │ └── script_qt6.iss ├── grab │ ├── BlueLightReduction.cpp │ ├── D3D10Grabber.cpp │ ├── DDuplGrabber.cpp │ ├── GrabberBase.cpp │ ├── MacOSAVGrabber.mm │ ├── MacOSCGGrabber.mm │ ├── MacOSGrabberBase.mm │ ├── MacUtils.mm │ ├── WinAPIGrabber.cpp │ ├── WinUtils.cpp │ ├── X11Grabber.cpp │ ├── calculations.cpp │ ├── configure-grabbers.prf │ ├── grab.pro │ └── include │ │ ├── BlueLightReduction.hpp │ │ ├── ColorProvider.cpp │ │ ├── ColorProvider.hpp │ │ ├── D3D10Grabber.hpp │ │ ├── DDuplGrabber.hpp │ │ ├── GrabberBase.hpp │ │ ├── GrabberContext.hpp │ │ ├── MacOSAVGrabber.h │ │ ├── MacOSCGGrabber.hpp │ │ ├── MacOSGrabberBase.hpp │ │ ├── MacUtils.h │ │ ├── WinAPIGrabber.hpp │ │ ├── WinUtils.hpp │ │ ├── X11Grabber.hpp │ │ └── calculations.hpp ├── hooks │ ├── D3D9FrameGrabber.cpp │ ├── D3D9FrameGrabber.hpp │ ├── DxgiFrameGrabber.cpp │ ├── DxgiFrameGrabber.hpp │ ├── GAPIProxyFrameGrabber.cpp │ ├── GAPIProxyFrameGrabber.hpp │ ├── GAPISubstFunctions.hpp │ ├── IPCContext.cpp │ ├── IPCContext.hpp │ ├── LoggableTrait.hpp │ ├── Logger.cpp │ ├── Logger.hpp │ ├── ProxyFunc.hpp │ ├── ProxyFuncJmp.cpp │ ├── ProxyFuncJmp.hpp │ ├── ProxyFuncJmpToVFTable.cpp │ ├── ProxyFuncJmpToVFTable.hpp │ ├── ProxyFuncVFTable.hpp │ ├── hooks.cpp │ ├── hooks.h │ ├── hooks.pro │ ├── hooks32.pro │ ├── hooksutils.cpp │ ├── hooksutils.h │ ├── proxyfuncvftable.cpp │ └── res │ │ ├── logmessages.h │ │ └── logmessages.mc ├── libraryinjector │ ├── ILibraryInjector.h │ ├── LibraryInjector.c │ ├── LibraryInjector.def │ ├── LibraryInjector.h │ ├── dllmain.c │ └── libraryinjector.pro ├── math │ ├── PrismatikMath.cpp │ ├── include │ │ ├── PrismatikMath.hpp │ │ └── colorspace_types.h │ └── math.pro ├── offsetfinder │ ├── main.cpp │ └── offsetfinder.pro ├── res │ ├── Libs.rc │ ├── Lightpack.rc │ ├── LightpackResources.qrc │ ├── buttons │ │ ├── arrow_right_dark_24px.png │ │ ├── arrow_right_dark_24px_hover.png │ │ ├── arrow_right_dark_24px_pressed.png │ │ ├── arrow_right_light_24px.png │ │ ├── arrow_right_light_24px_hover.png │ │ ├── arrow_right_light_24px_pressed.png │ │ ├── settings_24px.png │ │ ├── settings_dark_24px.png │ │ ├── settings_dark_24px_hover.png │ │ ├── settings_dark_24px_pressed.png │ │ ├── settings_light_24px.png │ │ ├── settings_light_24px_hover.png │ │ └── settings_light_24px_pressed.png │ ├── icons │ │ ├── Lightpack.ico │ │ ├── Lightpack.png │ │ ├── Prismatik-pixmap.png │ │ ├── Prismatik.icns │ │ ├── Prismatik.ico │ │ ├── Prismatik.png │ │ ├── about.png │ │ ├── arrow_down.png │ │ ├── arrow_down_gray.png │ │ ├── arrow_up.png │ │ ├── arrow_up_gray.png │ │ ├── console_gray.png │ │ ├── device.png │ │ ├── donate.png │ │ ├── error.png │ │ ├── help.png │ │ ├── lock.png │ │ ├── modes.png │ │ ├── nerd2.png │ │ ├── off.png │ │ ├── on.png │ │ ├── persist.png │ │ ├── plugins.png │ │ ├── profile_delete.png │ │ ├── profile_new.png │ │ ├── profile_reset.png │ │ ├── profiles.png │ │ ├── profiles2.png │ │ ├── refresh.png │ │ ├── res_dark.png │ │ ├── res_light.png │ │ ├── settings.png │ │ └── uac-shield.png │ ├── plugin-template.ini │ ├── text │ │ └── cast.html │ └── translations │ │ ├── en.ts │ │ ├── pl_PL.ts │ │ ├── ru_RU.ts │ │ ├── uk_UA.ts │ │ └── zh_CN.ts ├── scripts │ ├── macos │ │ └── generate_xcode_project.sh │ └── win32 │ │ ├── build_UpdateElevate.bat │ │ ├── generate_sln.bat │ │ ├── generate_sln.sh │ │ ├── prepare_installer.sh │ │ └── wipe.sh ├── src │ ├── AbstractLedDevice.cpp │ ├── AbstractLedDevice.hpp │ ├── AbstractLedDeviceUdp.cpp │ ├── AbstractLedDeviceUdp.hpp │ ├── ApiServer.cpp │ ├── ApiServer.hpp │ ├── ApiServerSetColorTask.cpp │ ├── ApiServerSetColorTask.hpp │ ├── ColorButton.cpp │ ├── ColorButton.hpp │ ├── GrabConfigWidget.cpp │ ├── GrabConfigWidget.hpp │ ├── GrabConfigWidget.ui │ ├── GrabManager.cpp │ ├── GrabManager.hpp │ ├── GrabWidget.cpp │ ├── GrabWidget.hpp │ ├── GrabWidget.ui │ ├── Info.plist │ ├── LedDeviceAdalight.cpp │ ├── LedDeviceAdalight.hpp │ ├── LedDeviceAlienFx.cpp │ ├── LedDeviceAlienFx.hpp │ ├── LedDeviceArdulight.cpp │ ├── LedDeviceArdulight.hpp │ ├── LedDeviceDnrgb.cpp │ ├── LedDeviceDnrgb.hpp │ ├── LedDeviceDrgb.cpp │ ├── LedDeviceDrgb.hpp │ ├── LedDeviceLightpack.cpp │ ├── LedDeviceLightpack.hpp │ ├── LedDeviceManager.cpp │ ├── LedDeviceManager.hpp │ ├── LedDeviceVirtual.cpp │ ├── LedDeviceVirtual.hpp │ ├── LedDeviceWarls.cpp │ ├── LedDeviceWarls.hpp │ ├── LightpackApplication.cpp │ ├── LightpackApplication.hpp │ ├── LightpackCommandLineParser.cpp │ ├── LightpackCommandLineParser.hpp │ ├── LightpackPluginInterface.cpp │ ├── LightpackPluginInterface.hpp │ ├── LiquidColorGenerator.cpp │ ├── LiquidColorGenerator.hpp │ ├── LogWriter.cpp │ ├── LogWriter.hpp │ ├── MacOSSession.h │ ├── MacOSSession.mm │ ├── MacOSSoundManager.h │ ├── MacOSSoundManager.mm │ ├── MoodLamp.cpp │ ├── MoodLamp.hpp │ ├── MoodLampManager.cpp │ ├── MoodLampManager.hpp │ ├── Plugin.cpp │ ├── Plugin.hpp │ ├── PluginsManager.cpp │ ├── PluginsManager.hpp │ ├── PulseAudioSoundManager.cpp │ ├── PulseAudioSoundManager.hpp │ ├── SelectWidget.cpp │ ├── SelectWidget.hpp │ ├── Settings.cpp │ ├── Settings.hpp │ ├── SettingsDefaults.hpp │ ├── SettingsWindow.cpp │ ├── SettingsWindow.hpp │ ├── SettingsWindow.ui │ ├── SettingsWizard.hpp │ ├── SoundManagerBase.cpp │ ├── SoundManagerBase.hpp │ ├── SoundVisualizer.cpp │ ├── SoundVisualizer.hpp │ ├── SystemSession.cpp │ ├── SystemSession.hpp │ ├── TimeEvaluations.cpp │ ├── TimeEvaluations.hpp │ ├── UpdatesProcessor.cpp │ ├── UpdatesProcessor.hpp │ ├── WindowsSession.cpp │ ├── WindowsSession.hpp │ ├── WindowsSoundManager.cpp │ ├── WindowsSoundManager.hpp │ ├── alienfx │ │ ├── LFX2.h │ │ ├── LFXDecl.h │ │ └── LightFX.dll │ ├── debug.h │ ├── enums.hpp │ ├── hidapi │ │ ├── hidapi.h │ │ ├── linux │ │ │ └── hid-libusb.c │ │ ├── mac │ │ │ └── hid.c │ │ └── windows │ │ │ └── hid.c │ ├── main.cpp │ ├── qtsingleapplication │ │ ├── common.pri │ │ └── src │ │ │ ├── QtLockedFile │ │ │ ├── QtSingleApplication │ │ │ ├── qtlocalpeer.cpp │ │ │ ├── qtlocalpeer.h │ │ │ ├── qtlockedfile.cpp │ │ │ ├── qtlockedfile.h │ │ │ ├── qtlockedfile_unix.cpp │ │ │ ├── qtlockedfile_win.cpp │ │ │ ├── qtsingleapplication.cpp │ │ │ ├── qtsingleapplication.h │ │ │ ├── qtsingleapplication.pri │ │ │ ├── qtsinglecoreapplication.cpp │ │ │ ├── qtsinglecoreapplication.h │ │ │ └── qtsinglecoreapplication.pri │ ├── src.pro │ ├── systrayicon │ │ ├── SysTrayIcon.cpp │ │ └── SysTrayIcon.hpp │ ├── types.h │ ├── version.h │ └── wizard │ │ ├── AreaDistributor.hpp │ │ ├── ConfigureDevicePage.cpp │ │ ├── ConfigureDevicePage.hpp │ │ ├── ConfigureDevicePage.ui │ │ ├── ConfigureDevicePowerPage.cpp │ │ ├── ConfigureDevicePowerPage.hpp │ │ ├── ConfigureDevicePowerPage.ui │ │ ├── ConfigureUdpDevicePage.cpp │ │ ├── ConfigureUdpDevicePage.hpp │ │ ├── ConfigureUdpDevicePage.ui │ │ ├── CustomDistributor.cpp │ │ ├── CustomDistributor.hpp │ │ ├── GlobalColorCoefPage.cpp │ │ ├── GlobalColorCoefPage.hpp │ │ ├── GlobalColorCoefPage.ui │ │ ├── LightpackDiscoveryPage.cpp │ │ ├── LightpackDiscoveryPage.hpp │ │ ├── LightpackDiscoveryPage.ui │ │ ├── MonitorIdForm.cpp │ │ ├── MonitorIdForm.hpp │ │ ├── MonitorIdForm.ui │ │ ├── SelectDevicePage.cpp │ │ ├── SelectDevicePage.hpp │ │ ├── SelectDevicePage.ui │ │ ├── SelectProfilePage.cpp │ │ ├── SelectProfilePage.hpp │ │ ├── SelectProfilePage.ui │ │ ├── SettingsAwareTrait.hpp │ │ ├── Wizard.cpp │ │ ├── Wizard.hpp │ │ ├── Wizard.ui │ │ ├── WizardPageUsingDevice.cpp │ │ ├── WizardPageUsingDevice.hpp │ │ ├── ZonePlacementPage.cpp │ │ ├── ZonePlacementPage.hpp │ │ ├── ZonePlacementPage.ui │ │ ├── ZoneWidget.cpp │ │ └── ZoneWidget.hpp ├── tests │ ├── AppVersionTest.cpp │ ├── AppVersionTest.hpp │ ├── GrabCalculationTest.cpp │ ├── GrabCalculationTest.hpp │ ├── HooksTest.cpp │ ├── HooksTest.h │ ├── LightpackApiTest.cpp │ ├── LightpackApiTest.hpp │ ├── LightpackCommandLineParserTest.cpp │ ├── LightpackCommandLineParserTest.hpp │ ├── SettingsWindowMockup.cpp │ ├── SettingsWindowMockup.hpp │ ├── TestsMain.cpp │ ├── lightpackmathtest.cpp │ ├── lightpackmathtest.hpp │ └── tests.pro ├── unhook │ ├── main.cpp │ ├── unhook.pro │ └── unhook32.pro ├── update_locales.bat └── update_locales.sh ├── XBMC ├── addons.xml ├── addons.xml.md5 ├── addons_xml_generator.py ├── readme.txt └── script.lightpack │ ├── addon.xml │ ├── changelog-1.0.4.txt │ ├── changelog-1.0.5.txt │ ├── changelog_1.0.6.txt │ ├── icon.png │ ├── script.lightpack-1.0.4.zip │ ├── script.lightpack-1.0.5.zip │ └── script.lightpack-1.0.6.zip └── screenshots ├── ambilight_win.png ├── api_win.png ├── moodlamps_win.png └── soundviz_win.png /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/.travis.yml -------------------------------------------------------------------------------- /93-lightpack.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/93-lightpack.rules -------------------------------------------------------------------------------- /CommonHeaders/COMMANDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/CommonHeaders/COMMANDS.h -------------------------------------------------------------------------------- /CommonHeaders/LEDS_COUNT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/CommonHeaders/LEDS_COUNT.h -------------------------------------------------------------------------------- /CommonHeaders/USB_ID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/CommonHeaders/USB_ID.h -------------------------------------------------------------------------------- /Firmware/.settings/de.innot.avreclipse.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/.settings/de.innot.avreclipse.core.prefs -------------------------------------------------------------------------------- /Firmware/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/CHANGELOG -------------------------------------------------------------------------------- /Firmware/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/Descriptors.c -------------------------------------------------------------------------------- /Firmware/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/Descriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/Build/HID_EEPROM_Loader/HID_EEPROM_Loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/HID_EEPROM_Loader/HID_EEPROM_Loader.c -------------------------------------------------------------------------------- /Firmware/LUFA/Build/HID_EEPROM_Loader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/HID_EEPROM_Loader/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/Build/lufa_atprogram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/lufa_atprogram.mk -------------------------------------------------------------------------------- /Firmware/LUFA/Build/lufa_avrdude.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/lufa_avrdude.mk -------------------------------------------------------------------------------- /Firmware/LUFA/Build/lufa_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/lufa_build.mk -------------------------------------------------------------------------------- /Firmware/LUFA/Build/lufa_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/lufa_core.mk -------------------------------------------------------------------------------- /Firmware/LUFA/Build/lufa_cppcheck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/lufa_cppcheck.mk -------------------------------------------------------------------------------- /Firmware/LUFA/Build/lufa_dfu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/lufa_dfu.mk -------------------------------------------------------------------------------- /Firmware/LUFA/Build/lufa_doxygen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/lufa_doxygen.mk -------------------------------------------------------------------------------- /Firmware/LUFA/Build/lufa_hid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/lufa_hid.mk -------------------------------------------------------------------------------- /Firmware/LUFA/Build/lufa_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Build/lufa_sources.mk -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/DeviceTemplate/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/DeviceTemplate/Descriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/DeviceTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/DeviceTemplate/asf.xml -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/DriverStubs/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/DriverStubs/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/DriverStubs/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/DriverStubs/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/DriverStubs/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/DriverStubs/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/DriverStubs/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/DriverStubs/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/DriverStubs/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/DriverStubs/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/HostTemplate/HostApplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/HostTemplate/HostApplication.c -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/HostTemplate/HostApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/HostTemplate/HostApplication.h -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/HostTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/HostTemplate/asf.xml -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/LUFAConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/CodeTemplates/makefile_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/CodeTemplates/makefile_template -------------------------------------------------------------------------------- /Firmware/LUFA/Common/ArchitectureSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Common/ArchitectureSpecific.h -------------------------------------------------------------------------------- /Firmware/LUFA/Common/Architectures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Common/Architectures.h -------------------------------------------------------------------------------- /Firmware/LUFA/Common/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Common/Attributes.h -------------------------------------------------------------------------------- /Firmware/LUFA/Common/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Common/BoardTypes.h -------------------------------------------------------------------------------- /Firmware/LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Common/Common.h -------------------------------------------------------------------------------- /Firmware/LUFA/Common/CompilerSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Common/CompilerSpecific.h -------------------------------------------------------------------------------- /Firmware/LUFA/Common/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Common/Endianness.h -------------------------------------------------------------------------------- /Firmware/LUFA/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Doxygen.conf -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/BuildSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/BuildSystem.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/BuildingLinkableLibraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/BuildingLinkableLibraries.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/ChangeLog.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/CompileTimeTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/CompileTimeTokens.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/CompilingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/CompilingApps.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/ConfiguringApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/ConfiguringApps.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/DevelopingWithLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/DevelopingWithLUFA.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/DeviceSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/DeviceSupport.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/DirectorySummaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/DirectorySummaries.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/Donating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/Donating.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/ExportingLibrary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/ExportingLibrary.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/FutureChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/FutureChanges.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/GettingStarted.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/Groups.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/Images/Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/Images/Author.jpg -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/Images/LUFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/Images/LUFA.png -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/Images/LUFA_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/Images/LUFA_thumb.png -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/KnownIssues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/KnownIssues.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/LUFAPoweredProjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/LUFAPoweredProjects.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/LibraryResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/LibraryResources.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/LicenseInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/LicenseInfo.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/MainPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/MainPage.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/MigrationInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/MigrationInformation.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/OSDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/OSDrivers.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/ProgrammingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/ProgrammingApps.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/SoftwareBootloaderJump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/SoftwareBootloaderJump.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/Style/Footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/Style/Footer.htm -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/Style/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/Style/Style.css -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/VIDAndPIDValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/VIDAndPIDValues.txt -------------------------------------------------------------------------------- /Firmware/LUFA/DoxygenPages/WritingBoardDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/DoxygenPages/WritingBoardDrivers.txt -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BENITO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BENITO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BUI/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BUI/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BUI/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BUI/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/CULV3/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/CULV3/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/DUCE/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/DUCE/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/EVK527/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/EVK527/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MICRO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MICRO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MICRO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MICRO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MULTIO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK525/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK525/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK525/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK525/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK525/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK525/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK525/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK525/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK526/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK526/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK526/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK526/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK526/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK526/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/STK526/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/STK526/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/TEENSY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/TEENSY/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/TUL/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/TUL/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/TUL/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/TUL/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/TUL/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/TUL/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/U2S/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/U2S/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/U2S/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/U2S/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/U2S/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/U2S/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/UDIP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/UDIP/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/UNO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/UNO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/UNO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/UNO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USB2AX/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USB2AX/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBFOO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBFOO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBKEY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBKEY/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/YUN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/YUN/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/AVR8/YUN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/AVR8/YUN/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/Temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/Temperature.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/Temperature.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1100/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1100/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1101/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1101/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1104/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1104/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Misc/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Misc/AT45DB321C.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Misc/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Misc/AT45DB642D.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Misc/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Misc/RingBuffer.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Misc/TerminalCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Misc/TerminalCodes.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/ADC.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/SPI.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/Serial.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/SerialSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/SerialSPI.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/TWI.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/AndroidAccessoryClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/AndroidAccessoryClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/AudioClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/AudioClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/CDCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/CDCClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Common/AudioClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Common/AudioClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Common/CDCClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Common/CDCClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Common/HIDClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Common/HIDClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Common/HIDParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Common/HIDParser.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Common/HIDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Common/HIDParser.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Common/HIDReportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Common/HIDReportData.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/AudioClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/AudioClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/CDCClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/CDCClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/HIDClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/HIDClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/AudioClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/AudioClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/AudioClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/AudioClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/CDCClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/CDCClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/CDCClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/CDCClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/HIDClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/HIDClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/HIDClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/HIDClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/PrinterClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/PrinterClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/PrinterClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/PrinterClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/StillImageClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/StillImageClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/Host/StillImageClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/Host/StillImageClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/MIDIClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/MIDIClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/MassStorageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/MassStorageClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/PrinterClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/PrinterClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/RNDISClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/RNDISClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Class/StillImageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Class/StillImageClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/ConfigDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/ConfigDescriptors.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/ConfigDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/ConfigDescriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/Device.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/DeviceStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/DeviceStandardReq.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/DeviceStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/DeviceStandardReq.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/Endpoint.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/EndpointStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/EndpointStream.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/Events.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/Events.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/Host.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/HostStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/HostStandardReq.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/HostStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/HostStandardReq.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/OTG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/OTG.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/Pipe.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/PipeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/PipeStream.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/StdDescriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/StdRequestType.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/Device_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/Device_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/Device_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/Device_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/Host_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/Host_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/Host_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/Host_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/USBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/USBController.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/USBInterrupt.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/USBMode.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/USBTask.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/USBTask.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/Drivers/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Drivers/USB/USB.h -------------------------------------------------------------------------------- /Firmware/LUFA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/License.txt -------------------------------------------------------------------------------- /Firmware/LUFA/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Platform/Platform.h -------------------------------------------------------------------------------- /Firmware/LUFA/Platform/UC3/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Platform/UC3/ClockManagement.h -------------------------------------------------------------------------------- /Firmware/LUFA/Platform/UC3/Exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Platform/UC3/Exception.S -------------------------------------------------------------------------------- /Firmware/LUFA/Platform/UC3/InterruptManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Platform/UC3/InterruptManagement.c -------------------------------------------------------------------------------- /Firmware/LUFA/Platform/UC3/InterruptManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Platform/UC3/InterruptManagement.h -------------------------------------------------------------------------------- /Firmware/LUFA/Platform/UC3/UC3ExperimentalInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Platform/UC3/UC3ExperimentalInfo.txt -------------------------------------------------------------------------------- /Firmware/LUFA/Platform/XMEGA/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Platform/XMEGA/ClockManagement.h -------------------------------------------------------------------------------- /Firmware/LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/Docbook/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/Docbook/placeholder.txt -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/HV1/helpcontentsetup.msha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/HV1/helpcontentsetup.msha -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/VSIX/LUFA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/VSIX/LUFA.dll -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/VSIX/LUFA.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/VSIX/LUFA.pkgdef -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/VSIX/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/VSIX/[Content_Types].xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/VSIX/asf-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/VSIX/asf-manifest.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/VSIX/generate_caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/VSIX/generate_caches.py -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/generate_caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/generate_caches.py -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_common.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_drivers_board.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_drivers_board.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_drivers_misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_drivers_misc.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_drivers_usb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_drivers_usb.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_drivers_usb_class.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_drivers_usb_class.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_drivers_usb_core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_drivers_usb_core.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_platform.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_platform_uc3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_platform_uc3.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_platform_xmega.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_platform_xmega.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/lufa_toolchain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/lufa_toolchain.xml -------------------------------------------------------------------------------- /Firmware/LUFA/StudioIntegration/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/StudioIntegration/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/Version.h -------------------------------------------------------------------------------- /Firmware/LUFA/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/doxyfile -------------------------------------------------------------------------------- /Firmware/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFA/makefile -------------------------------------------------------------------------------- /Firmware/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LUFAConfig.h -------------------------------------------------------------------------------- /Firmware/LedDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LedDriver.c -------------------------------------------------------------------------------- /Firmware/LedDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LedDriver.h -------------------------------------------------------------------------------- /Firmware/LedManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LedManager.c -------------------------------------------------------------------------------- /Firmware/LedManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LedManager.h -------------------------------------------------------------------------------- /Firmware/Lightpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/Lightpack.c -------------------------------------------------------------------------------- /Firmware/Lightpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/Lightpack.h -------------------------------------------------------------------------------- /Firmware/LightpackUSB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LightpackUSB.c -------------------------------------------------------------------------------- /Firmware/LightpackUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/LightpackUSB.h -------------------------------------------------------------------------------- /Firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/Makefile -------------------------------------------------------------------------------- /Firmware/build_batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/build_batch.sh -------------------------------------------------------------------------------- /Firmware/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/datatypes.h -------------------------------------------------------------------------------- /Firmware/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/flags.h -------------------------------------------------------------------------------- /Firmware/iodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/iodefs.h -------------------------------------------------------------------------------- /Firmware/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Firmware/version.h -------------------------------------------------------------------------------- /Hardware/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Hardware/CHANGELOG -------------------------------------------------------------------------------- /Hardware/Lightpack.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Hardware/Lightpack.brd -------------------------------------------------------------------------------- /Hardware/Lightpack.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Hardware/Lightpack.sch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/LICENSE-TEMPLATE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/README.md -------------------------------------------------------------------------------- /Software/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/CHANGELOG -------------------------------------------------------------------------------- /Software/Doxyfile.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/Doxyfile.original -------------------------------------------------------------------------------- /Software/Doxyfile.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/Doxyfile.readme -------------------------------------------------------------------------------- /Software/Lightpack.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/Lightpack.pro -------------------------------------------------------------------------------- /Software/RELEASE_VERSION: -------------------------------------------------------------------------------- 1 | 5.11.2.31 -------------------------------------------------------------------------------- /Software/apiexamples/Android/DroidPack/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Android/DroidPack/AndroidManifest.xml -------------------------------------------------------------------------------- /Software/apiexamples/Android/DroidPack/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Android/DroidPack/build.properties -------------------------------------------------------------------------------- /Software/apiexamples/Android/DroidPack/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Android/DroidPack/build.xml -------------------------------------------------------------------------------- /Software/apiexamples/Android/DroidPack/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Android/DroidPack/default.properties -------------------------------------------------------------------------------- /Software/apiexamples/Android/DroidPack/export.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Android/DroidPack/export.properties -------------------------------------------------------------------------------- /Software/apiexamples/Android/DroidPack/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Android/DroidPack/local.properties -------------------------------------------------------------------------------- /Software/apiexamples/Android/DroidPack/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Android/DroidPack/proguard.cfg -------------------------------------------------------------------------------- /Software/apiexamples/Android/DroidPack/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Android/DroidPack/res/layout/main.xml -------------------------------------------------------------------------------- /Software/apiexamples/C#/CpuMemMonitor/CpuMemMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/CpuMemMonitor/CpuMemMonitor.exe -------------------------------------------------------------------------------- /Software/apiexamples/C#/CpuMemMonitor/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/CpuMemMonitor/Readme.txt -------------------------------------------------------------------------------- /Software/apiexamples/C#/CpuMemMonitor/Run.bat: -------------------------------------------------------------------------------- 1 | start CpuMemMonitor.exe 2.15 100 -------------------------------------------------------------------------------- /Software/apiexamples/C#/CpuMonitor/CpuMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/CpuMonitor/CpuMonitor.exe -------------------------------------------------------------------------------- /Software/apiexamples/C#/CpuMonitor/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/CpuMonitor/Readme.txt -------------------------------------------------------------------------------- /Software/apiexamples/C#/CpuMonitor/Run.bat: -------------------------------------------------------------------------------- 1 | start CpuMonitor.exe 2.15 100 -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Changes.xml -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Dmo/DmoGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Dmo/DmoGuids.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Dmo/IEnumDmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Dmo/IEnumDmo.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Dsp/Complex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Dsp/Complex.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Gui/Arranger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Gui/Arranger.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Gui/Fader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Gui/Fader.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Gui/Fader.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Gui/Fader.resx -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Gui/LcdPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Gui/LcdPanel.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Gui/Pot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Gui/Pot.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Gui/Pot.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Gui/Pot.resx -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Midi/MidiIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Midi/MidiIn.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Midi/MidiOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Midi/MidiOut.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/Mixer/Mixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/Mixer/Mixer.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/NAudio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/NAudio.csproj -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/NAudio/NAudio.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/NAudio/NAudio.ruleset -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/Readme.txt -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/VolumeLight.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/VolumeLight.sln -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/VolumeLight.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/VolumeLight.suo -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/VolumeLight/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/VolumeLight/Program.cs -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/VolumeLight/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/VolumeLight/app.config -------------------------------------------------------------------------------- /Software/apiexamples/C#/VolumeLight/libLightpack/Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/C#/VolumeLight/libLightpack/Const.cs -------------------------------------------------------------------------------- /Software/apiexamples/Delphi/AIMP/LightPack.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Delphi/AIMP/LightPack.pas -------------------------------------------------------------------------------- /Software/apiexamples/Delphi/AIMP/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Delphi/AIMP/Readme.txt -------------------------------------------------------------------------------- /Software/apiexamples/Delphi/Winamp Lightpack-DISCO/vis.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Delphi/Winamp Lightpack-DISCO/vis.dcu -------------------------------------------------------------------------------- /Software/apiexamples/Delphi/Winamp Lightpack-DISCO/vis.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Delphi/Winamp Lightpack-DISCO/vis.dfm -------------------------------------------------------------------------------- /Software/apiexamples/Delphi/Winamp Lightpack-DISCO/vis.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Delphi/Winamp Lightpack-DISCO/vis.pas -------------------------------------------------------------------------------- /Software/apiexamples/EventGhost/Prismatik/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/EventGhost/Prismatik/__init__.py -------------------------------------------------------------------------------- /Software/apiexamples/EventGhost/Prismatik/lightpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/EventGhost/Prismatik/lightpack.py -------------------------------------------------------------------------------- /Software/apiexamples/LUA/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/LUA/Readme.txt -------------------------------------------------------------------------------- /Software/apiexamples/LUA/luaLightpack-sample1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/LUA/luaLightpack-sample1.lua -------------------------------------------------------------------------------- /Software/apiexamples/LUA/luaLightpack-sample2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/LUA/luaLightpack-sample2.lua -------------------------------------------------------------------------------- /Software/apiexamples/LUA/luaLightpack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/LUA/luaLightpack.lua -------------------------------------------------------------------------------- /Software/apiexamples/PocketBook LightpackDrivePB/makepc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/PocketBook LightpackDrivePB/makepc.sh -------------------------------------------------------------------------------- /Software/apiexamples/PocketBook LightpackDrivePB/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/PocketBook LightpackDrivePB/push.sh -------------------------------------------------------------------------------- /Software/apiexamples/Ruby/lightpack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Ruby/lightpack.rb -------------------------------------------------------------------------------- /Software/apiexamples/Ruby/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/Ruby/readme.txt -------------------------------------------------------------------------------- /Software/apiexamples/VisualTests/VisualTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/VisualTests/VisualTests.py -------------------------------------------------------------------------------- /Software/apiexamples/VisualTests/lightpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/VisualTests/lightpack.py -------------------------------------------------------------------------------- /Software/apiexamples/dotnetLightpack/Lightpack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/dotnetLightpack/Lightpack.sln -------------------------------------------------------------------------------- /Software/apiexamples/dotnetLightpack/libLightpack/Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/dotnetLightpack/libLightpack/Const.cs -------------------------------------------------------------------------------- /Software/apiexamples/liOSC/LiOSC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/liOSC/LiOSC.py -------------------------------------------------------------------------------- /Software/apiexamples/liOSC/OSC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/liOSC/OSC.py -------------------------------------------------------------------------------- /Software/apiexamples/liOSC/lightpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/liOSC/lightpack.py -------------------------------------------------------------------------------- /Software/apiexamples/pyLightpack/Animexamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/pyLightpack/Animexamples.py -------------------------------------------------------------------------------- /Software/apiexamples/pyLightpack/ApiServerStressTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/pyLightpack/ApiServerStressTest.py -------------------------------------------------------------------------------- /Software/apiexamples/pyLightpack/GmailChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/pyLightpack/GmailChecker.py -------------------------------------------------------------------------------- /Software/apiexamples/pyLightpack/SkypeBuddyCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/pyLightpack/SkypeBuddyCheck.py -------------------------------------------------------------------------------- /Software/apiexamples/pyLightpack/gReadeChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/pyLightpack/gReadeChecker.py -------------------------------------------------------------------------------- /Software/apiexamples/pyLightpack/lightpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/pyLightpack/lightpack.py -------------------------------------------------------------------------------- /Software/apiexamples/pyLightpack/script.lightpack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/pyLightpack/script.lightpack.zip -------------------------------------------------------------------------------- /Software/apiexamples/pyLightpack/testall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/apiexamples/pyLightpack/testall.py -------------------------------------------------------------------------------- /Software/build-config.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/build-config.prf -------------------------------------------------------------------------------- /Software/build-vars.prf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/build-vars.prf.default -------------------------------------------------------------------------------- /Software/common/BufferFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/common/BufferFormat.h -------------------------------------------------------------------------------- /Software/common/D3D10GrabberDefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/common/D3D10GrabberDefs.hpp -------------------------------------------------------------------------------- /Software/common/WinDXUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/common/WinDXUtils.cpp -------------------------------------------------------------------------------- /Software/common/WinDXUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/common/WinDXUtils.hpp -------------------------------------------------------------------------------- /Software/common/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/common/defs.h -------------------------------------------------------------------------------- /Software/common/msvcstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/common/msvcstub.h -------------------------------------------------------------------------------- /Software/dist_linux/build-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/build-in-docker.sh -------------------------------------------------------------------------------- /Software/dist_linux/build-natively.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/build-natively.sh -------------------------------------------------------------------------------- /Software/dist_linux/dpkg/DEBIAN_template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/dpkg/DEBIAN_template/README -------------------------------------------------------------------------------- /Software/dist_linux/dpkg/DEBIAN_template/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/dpkg/DEBIAN_template/changelog -------------------------------------------------------------------------------- /Software/dist_linux/dpkg/DEBIAN_template/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/dpkg/DEBIAN_template/control -------------------------------------------------------------------------------- /Software/dist_linux/dpkg/DEBIAN_template/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/dpkg/DEBIAN_template/copyright -------------------------------------------------------------------------------- /Software/dist_linux/dpkg/DEBIAN_template/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/dpkg/DEBIAN_template/postinst -------------------------------------------------------------------------------- /Software/dist_linux/dpkg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/dpkg/Dockerfile -------------------------------------------------------------------------------- /Software/dist_linux/dpkg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/dpkg/build.sh -------------------------------------------------------------------------------- /Software/dist_linux/flatpak/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/flatpak/build.sh -------------------------------------------------------------------------------- /Software/dist_linux/flatpak/launch_prismatik.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/flatpak/launch_prismatik.sh -------------------------------------------------------------------------------- /Software/dist_linux/flatpak/manifest.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/flatpak/manifest.yml.template -------------------------------------------------------------------------------- /Software/dist_linux/pacman/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/pacman/Dockerfile -------------------------------------------------------------------------------- /Software/dist_linux/pacman/PKGBUILD.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/pacman/PKGBUILD.template -------------------------------------------------------------------------------- /Software/dist_linux/pacman/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/pacman/build.sh -------------------------------------------------------------------------------- /Software/dist_linux/pacman/prismatik.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_linux/pacman/prismatik.install -------------------------------------------------------------------------------- /Software/dist_osx/build-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_osx/build-dmg.sh -------------------------------------------------------------------------------- /Software/dist_osx/dsstore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_osx/dsstore -------------------------------------------------------------------------------- /Software/dist_windows/Prismatik.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_windows/Prismatik.ico -------------------------------------------------------------------------------- /Software/dist_windows/content/Plugins/.keep_me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/dist_windows/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_windows/gpl-3.0.txt -------------------------------------------------------------------------------- /Software/dist_windows/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_windows/readme.txt -------------------------------------------------------------------------------- /Software/dist_windows/script.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_windows/script.iss -------------------------------------------------------------------------------- /Software/dist_windows/script_qt6.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/dist_windows/script_qt6.iss -------------------------------------------------------------------------------- /Software/grab/BlueLightReduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/BlueLightReduction.cpp -------------------------------------------------------------------------------- /Software/grab/D3D10Grabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/D3D10Grabber.cpp -------------------------------------------------------------------------------- /Software/grab/DDuplGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/DDuplGrabber.cpp -------------------------------------------------------------------------------- /Software/grab/GrabberBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/GrabberBase.cpp -------------------------------------------------------------------------------- /Software/grab/MacOSAVGrabber.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/MacOSAVGrabber.mm -------------------------------------------------------------------------------- /Software/grab/MacOSCGGrabber.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/MacOSCGGrabber.mm -------------------------------------------------------------------------------- /Software/grab/MacOSGrabberBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/MacOSGrabberBase.mm -------------------------------------------------------------------------------- /Software/grab/MacUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/MacUtils.mm -------------------------------------------------------------------------------- /Software/grab/WinAPIGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/WinAPIGrabber.cpp -------------------------------------------------------------------------------- /Software/grab/WinUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/WinUtils.cpp -------------------------------------------------------------------------------- /Software/grab/X11Grabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/X11Grabber.cpp -------------------------------------------------------------------------------- /Software/grab/calculations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/calculations.cpp -------------------------------------------------------------------------------- /Software/grab/configure-grabbers.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/configure-grabbers.prf -------------------------------------------------------------------------------- /Software/grab/grab.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/grab.pro -------------------------------------------------------------------------------- /Software/grab/include/BlueLightReduction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/BlueLightReduction.hpp -------------------------------------------------------------------------------- /Software/grab/include/ColorProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/ColorProvider.cpp -------------------------------------------------------------------------------- /Software/grab/include/ColorProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/ColorProvider.hpp -------------------------------------------------------------------------------- /Software/grab/include/D3D10Grabber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/D3D10Grabber.hpp -------------------------------------------------------------------------------- /Software/grab/include/DDuplGrabber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/DDuplGrabber.hpp -------------------------------------------------------------------------------- /Software/grab/include/GrabberBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/GrabberBase.hpp -------------------------------------------------------------------------------- /Software/grab/include/GrabberContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/GrabberContext.hpp -------------------------------------------------------------------------------- /Software/grab/include/MacOSAVGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/MacOSAVGrabber.h -------------------------------------------------------------------------------- /Software/grab/include/MacOSCGGrabber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/MacOSCGGrabber.hpp -------------------------------------------------------------------------------- /Software/grab/include/MacOSGrabberBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/MacOSGrabberBase.hpp -------------------------------------------------------------------------------- /Software/grab/include/MacUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/MacUtils.h -------------------------------------------------------------------------------- /Software/grab/include/WinAPIGrabber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/WinAPIGrabber.hpp -------------------------------------------------------------------------------- /Software/grab/include/WinUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/WinUtils.hpp -------------------------------------------------------------------------------- /Software/grab/include/X11Grabber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/X11Grabber.hpp -------------------------------------------------------------------------------- /Software/grab/include/calculations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/grab/include/calculations.hpp -------------------------------------------------------------------------------- /Software/hooks/D3D9FrameGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/D3D9FrameGrabber.cpp -------------------------------------------------------------------------------- /Software/hooks/D3D9FrameGrabber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/D3D9FrameGrabber.hpp -------------------------------------------------------------------------------- /Software/hooks/DxgiFrameGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/DxgiFrameGrabber.cpp -------------------------------------------------------------------------------- /Software/hooks/DxgiFrameGrabber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/DxgiFrameGrabber.hpp -------------------------------------------------------------------------------- /Software/hooks/GAPIProxyFrameGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/GAPIProxyFrameGrabber.cpp -------------------------------------------------------------------------------- /Software/hooks/GAPIProxyFrameGrabber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/GAPIProxyFrameGrabber.hpp -------------------------------------------------------------------------------- /Software/hooks/GAPISubstFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/GAPISubstFunctions.hpp -------------------------------------------------------------------------------- /Software/hooks/IPCContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/IPCContext.cpp -------------------------------------------------------------------------------- /Software/hooks/IPCContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/IPCContext.hpp -------------------------------------------------------------------------------- /Software/hooks/LoggableTrait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/LoggableTrait.hpp -------------------------------------------------------------------------------- /Software/hooks/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/Logger.cpp -------------------------------------------------------------------------------- /Software/hooks/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/Logger.hpp -------------------------------------------------------------------------------- /Software/hooks/ProxyFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/ProxyFunc.hpp -------------------------------------------------------------------------------- /Software/hooks/ProxyFuncJmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/ProxyFuncJmp.cpp -------------------------------------------------------------------------------- /Software/hooks/ProxyFuncJmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/ProxyFuncJmp.hpp -------------------------------------------------------------------------------- /Software/hooks/ProxyFuncJmpToVFTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/ProxyFuncJmpToVFTable.cpp -------------------------------------------------------------------------------- /Software/hooks/ProxyFuncJmpToVFTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/ProxyFuncJmpToVFTable.hpp -------------------------------------------------------------------------------- /Software/hooks/ProxyFuncVFTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/ProxyFuncVFTable.hpp -------------------------------------------------------------------------------- /Software/hooks/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/hooks.cpp -------------------------------------------------------------------------------- /Software/hooks/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/hooks.h -------------------------------------------------------------------------------- /Software/hooks/hooks.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/hooks.pro -------------------------------------------------------------------------------- /Software/hooks/hooks32.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/hooks32.pro -------------------------------------------------------------------------------- /Software/hooks/hooksutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/hooksutils.cpp -------------------------------------------------------------------------------- /Software/hooks/hooksutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/hooksutils.h -------------------------------------------------------------------------------- /Software/hooks/proxyfuncvftable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/proxyfuncvftable.cpp -------------------------------------------------------------------------------- /Software/hooks/res/logmessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/res/logmessages.h -------------------------------------------------------------------------------- /Software/hooks/res/logmessages.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/hooks/res/logmessages.mc -------------------------------------------------------------------------------- /Software/libraryinjector/ILibraryInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/libraryinjector/ILibraryInjector.h -------------------------------------------------------------------------------- /Software/libraryinjector/LibraryInjector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/libraryinjector/LibraryInjector.c -------------------------------------------------------------------------------- /Software/libraryinjector/LibraryInjector.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/libraryinjector/LibraryInjector.def -------------------------------------------------------------------------------- /Software/libraryinjector/LibraryInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/libraryinjector/LibraryInjector.h -------------------------------------------------------------------------------- /Software/libraryinjector/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/libraryinjector/dllmain.c -------------------------------------------------------------------------------- /Software/libraryinjector/libraryinjector.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/libraryinjector/libraryinjector.pro -------------------------------------------------------------------------------- /Software/math/PrismatikMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/math/PrismatikMath.cpp -------------------------------------------------------------------------------- /Software/math/include/PrismatikMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/math/include/PrismatikMath.hpp -------------------------------------------------------------------------------- /Software/math/include/colorspace_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/math/include/colorspace_types.h -------------------------------------------------------------------------------- /Software/math/math.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/math/math.pro -------------------------------------------------------------------------------- /Software/offsetfinder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/offsetfinder/main.cpp -------------------------------------------------------------------------------- /Software/offsetfinder/offsetfinder.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/offsetfinder/offsetfinder.pro -------------------------------------------------------------------------------- /Software/res/Libs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/Libs.rc -------------------------------------------------------------------------------- /Software/res/Lightpack.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/Lightpack.rc -------------------------------------------------------------------------------- /Software/res/LightpackResources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/LightpackResources.qrc -------------------------------------------------------------------------------- /Software/res/buttons/arrow_right_dark_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/arrow_right_dark_24px.png -------------------------------------------------------------------------------- /Software/res/buttons/arrow_right_dark_24px_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/arrow_right_dark_24px_hover.png -------------------------------------------------------------------------------- /Software/res/buttons/arrow_right_dark_24px_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/arrow_right_dark_24px_pressed.png -------------------------------------------------------------------------------- /Software/res/buttons/arrow_right_light_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/arrow_right_light_24px.png -------------------------------------------------------------------------------- /Software/res/buttons/arrow_right_light_24px_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/arrow_right_light_24px_hover.png -------------------------------------------------------------------------------- /Software/res/buttons/arrow_right_light_24px_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/arrow_right_light_24px_pressed.png -------------------------------------------------------------------------------- /Software/res/buttons/settings_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/settings_24px.png -------------------------------------------------------------------------------- /Software/res/buttons/settings_dark_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/settings_dark_24px.png -------------------------------------------------------------------------------- /Software/res/buttons/settings_dark_24px_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/settings_dark_24px_hover.png -------------------------------------------------------------------------------- /Software/res/buttons/settings_dark_24px_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/settings_dark_24px_pressed.png -------------------------------------------------------------------------------- /Software/res/buttons/settings_light_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/settings_light_24px.png -------------------------------------------------------------------------------- /Software/res/buttons/settings_light_24px_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/settings_light_24px_hover.png -------------------------------------------------------------------------------- /Software/res/buttons/settings_light_24px_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/buttons/settings_light_24px_pressed.png -------------------------------------------------------------------------------- /Software/res/icons/Lightpack.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/Lightpack.ico -------------------------------------------------------------------------------- /Software/res/icons/Lightpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/Lightpack.png -------------------------------------------------------------------------------- /Software/res/icons/Prismatik-pixmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/Prismatik-pixmap.png -------------------------------------------------------------------------------- /Software/res/icons/Prismatik.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/Prismatik.icns -------------------------------------------------------------------------------- /Software/res/icons/Prismatik.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/Prismatik.ico -------------------------------------------------------------------------------- /Software/res/icons/Prismatik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/Prismatik.png -------------------------------------------------------------------------------- /Software/res/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/about.png -------------------------------------------------------------------------------- /Software/res/icons/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/arrow_down.png -------------------------------------------------------------------------------- /Software/res/icons/arrow_down_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/arrow_down_gray.png -------------------------------------------------------------------------------- /Software/res/icons/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/arrow_up.png -------------------------------------------------------------------------------- /Software/res/icons/arrow_up_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/arrow_up_gray.png -------------------------------------------------------------------------------- /Software/res/icons/console_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/console_gray.png -------------------------------------------------------------------------------- /Software/res/icons/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/device.png -------------------------------------------------------------------------------- /Software/res/icons/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/donate.png -------------------------------------------------------------------------------- /Software/res/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/error.png -------------------------------------------------------------------------------- /Software/res/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/help.png -------------------------------------------------------------------------------- /Software/res/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/lock.png -------------------------------------------------------------------------------- /Software/res/icons/modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/modes.png -------------------------------------------------------------------------------- /Software/res/icons/nerd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/nerd2.png -------------------------------------------------------------------------------- /Software/res/icons/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/off.png -------------------------------------------------------------------------------- /Software/res/icons/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/on.png -------------------------------------------------------------------------------- /Software/res/icons/persist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/persist.png -------------------------------------------------------------------------------- /Software/res/icons/plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/plugins.png -------------------------------------------------------------------------------- /Software/res/icons/profile_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/profile_delete.png -------------------------------------------------------------------------------- /Software/res/icons/profile_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/profile_new.png -------------------------------------------------------------------------------- /Software/res/icons/profile_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/profile_reset.png -------------------------------------------------------------------------------- /Software/res/icons/profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/profiles.png -------------------------------------------------------------------------------- /Software/res/icons/profiles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/profiles2.png -------------------------------------------------------------------------------- /Software/res/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/refresh.png -------------------------------------------------------------------------------- /Software/res/icons/res_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/res_dark.png -------------------------------------------------------------------------------- /Software/res/icons/res_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/res_light.png -------------------------------------------------------------------------------- /Software/res/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/settings.png -------------------------------------------------------------------------------- /Software/res/icons/uac-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/icons/uac-shield.png -------------------------------------------------------------------------------- /Software/res/plugin-template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/plugin-template.ini -------------------------------------------------------------------------------- /Software/res/text/cast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/text/cast.html -------------------------------------------------------------------------------- /Software/res/translations/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/translations/en.ts -------------------------------------------------------------------------------- /Software/res/translations/pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/translations/pl_PL.ts -------------------------------------------------------------------------------- /Software/res/translations/ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/translations/ru_RU.ts -------------------------------------------------------------------------------- /Software/res/translations/uk_UA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/translations/uk_UA.ts -------------------------------------------------------------------------------- /Software/res/translations/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/res/translations/zh_CN.ts -------------------------------------------------------------------------------- /Software/scripts/macos/generate_xcode_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/scripts/macos/generate_xcode_project.sh -------------------------------------------------------------------------------- /Software/scripts/win32/build_UpdateElevate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/scripts/win32/build_UpdateElevate.bat -------------------------------------------------------------------------------- /Software/scripts/win32/generate_sln.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/scripts/win32/generate_sln.bat -------------------------------------------------------------------------------- /Software/scripts/win32/generate_sln.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/scripts/win32/generate_sln.sh -------------------------------------------------------------------------------- /Software/scripts/win32/prepare_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/scripts/win32/prepare_installer.sh -------------------------------------------------------------------------------- /Software/scripts/win32/wipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/scripts/win32/wipe.sh -------------------------------------------------------------------------------- /Software/src/AbstractLedDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/AbstractLedDevice.cpp -------------------------------------------------------------------------------- /Software/src/AbstractLedDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/AbstractLedDevice.hpp -------------------------------------------------------------------------------- /Software/src/AbstractLedDeviceUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/AbstractLedDeviceUdp.cpp -------------------------------------------------------------------------------- /Software/src/AbstractLedDeviceUdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/AbstractLedDeviceUdp.hpp -------------------------------------------------------------------------------- /Software/src/ApiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/ApiServer.cpp -------------------------------------------------------------------------------- /Software/src/ApiServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/ApiServer.hpp -------------------------------------------------------------------------------- /Software/src/ApiServerSetColorTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/ApiServerSetColorTask.cpp -------------------------------------------------------------------------------- /Software/src/ApiServerSetColorTask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/ApiServerSetColorTask.hpp -------------------------------------------------------------------------------- /Software/src/ColorButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/ColorButton.cpp -------------------------------------------------------------------------------- /Software/src/ColorButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/ColorButton.hpp -------------------------------------------------------------------------------- /Software/src/GrabConfigWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/GrabConfigWidget.cpp -------------------------------------------------------------------------------- /Software/src/GrabConfigWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/GrabConfigWidget.hpp -------------------------------------------------------------------------------- /Software/src/GrabConfigWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/GrabConfigWidget.ui -------------------------------------------------------------------------------- /Software/src/GrabManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/GrabManager.cpp -------------------------------------------------------------------------------- /Software/src/GrabManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/GrabManager.hpp -------------------------------------------------------------------------------- /Software/src/GrabWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/GrabWidget.cpp -------------------------------------------------------------------------------- /Software/src/GrabWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/GrabWidget.hpp -------------------------------------------------------------------------------- /Software/src/GrabWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/GrabWidget.ui -------------------------------------------------------------------------------- /Software/src/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/Info.plist -------------------------------------------------------------------------------- /Software/src/LedDeviceAdalight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceAdalight.cpp -------------------------------------------------------------------------------- /Software/src/LedDeviceAdalight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceAdalight.hpp -------------------------------------------------------------------------------- /Software/src/LedDeviceAlienFx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceAlienFx.cpp -------------------------------------------------------------------------------- /Software/src/LedDeviceAlienFx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceAlienFx.hpp -------------------------------------------------------------------------------- /Software/src/LedDeviceArdulight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceArdulight.cpp -------------------------------------------------------------------------------- /Software/src/LedDeviceArdulight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceArdulight.hpp -------------------------------------------------------------------------------- /Software/src/LedDeviceDnrgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceDnrgb.cpp -------------------------------------------------------------------------------- /Software/src/LedDeviceDnrgb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceDnrgb.hpp -------------------------------------------------------------------------------- /Software/src/LedDeviceDrgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceDrgb.cpp -------------------------------------------------------------------------------- /Software/src/LedDeviceDrgb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceDrgb.hpp -------------------------------------------------------------------------------- /Software/src/LedDeviceLightpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceLightpack.cpp -------------------------------------------------------------------------------- /Software/src/LedDeviceLightpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceLightpack.hpp -------------------------------------------------------------------------------- /Software/src/LedDeviceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceManager.cpp -------------------------------------------------------------------------------- /Software/src/LedDeviceManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceManager.hpp -------------------------------------------------------------------------------- /Software/src/LedDeviceVirtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceVirtual.cpp -------------------------------------------------------------------------------- /Software/src/LedDeviceVirtual.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceVirtual.hpp -------------------------------------------------------------------------------- /Software/src/LedDeviceWarls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceWarls.cpp -------------------------------------------------------------------------------- /Software/src/LedDeviceWarls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LedDeviceWarls.hpp -------------------------------------------------------------------------------- /Software/src/LightpackApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LightpackApplication.cpp -------------------------------------------------------------------------------- /Software/src/LightpackApplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LightpackApplication.hpp -------------------------------------------------------------------------------- /Software/src/LightpackCommandLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LightpackCommandLineParser.cpp -------------------------------------------------------------------------------- /Software/src/LightpackCommandLineParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LightpackCommandLineParser.hpp -------------------------------------------------------------------------------- /Software/src/LightpackPluginInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LightpackPluginInterface.cpp -------------------------------------------------------------------------------- /Software/src/LightpackPluginInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LightpackPluginInterface.hpp -------------------------------------------------------------------------------- /Software/src/LiquidColorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LiquidColorGenerator.cpp -------------------------------------------------------------------------------- /Software/src/LiquidColorGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LiquidColorGenerator.hpp -------------------------------------------------------------------------------- /Software/src/LogWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LogWriter.cpp -------------------------------------------------------------------------------- /Software/src/LogWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/LogWriter.hpp -------------------------------------------------------------------------------- /Software/src/MacOSSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/MacOSSession.h -------------------------------------------------------------------------------- /Software/src/MacOSSession.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/MacOSSession.mm -------------------------------------------------------------------------------- /Software/src/MacOSSoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/MacOSSoundManager.h -------------------------------------------------------------------------------- /Software/src/MacOSSoundManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/MacOSSoundManager.mm -------------------------------------------------------------------------------- /Software/src/MoodLamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/MoodLamp.cpp -------------------------------------------------------------------------------- /Software/src/MoodLamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/MoodLamp.hpp -------------------------------------------------------------------------------- /Software/src/MoodLampManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/MoodLampManager.cpp -------------------------------------------------------------------------------- /Software/src/MoodLampManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/MoodLampManager.hpp -------------------------------------------------------------------------------- /Software/src/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/Plugin.cpp -------------------------------------------------------------------------------- /Software/src/Plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/Plugin.hpp -------------------------------------------------------------------------------- /Software/src/PluginsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/PluginsManager.cpp -------------------------------------------------------------------------------- /Software/src/PluginsManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/PluginsManager.hpp -------------------------------------------------------------------------------- /Software/src/PulseAudioSoundManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/PulseAudioSoundManager.cpp -------------------------------------------------------------------------------- /Software/src/PulseAudioSoundManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/PulseAudioSoundManager.hpp -------------------------------------------------------------------------------- /Software/src/SelectWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SelectWidget.cpp -------------------------------------------------------------------------------- /Software/src/SelectWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SelectWidget.hpp -------------------------------------------------------------------------------- /Software/src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/Settings.cpp -------------------------------------------------------------------------------- /Software/src/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/Settings.hpp -------------------------------------------------------------------------------- /Software/src/SettingsDefaults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SettingsDefaults.hpp -------------------------------------------------------------------------------- /Software/src/SettingsWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SettingsWindow.cpp -------------------------------------------------------------------------------- /Software/src/SettingsWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SettingsWindow.hpp -------------------------------------------------------------------------------- /Software/src/SettingsWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SettingsWindow.ui -------------------------------------------------------------------------------- /Software/src/SettingsWizard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SettingsWizard.hpp -------------------------------------------------------------------------------- /Software/src/SoundManagerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SoundManagerBase.cpp -------------------------------------------------------------------------------- /Software/src/SoundManagerBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SoundManagerBase.hpp -------------------------------------------------------------------------------- /Software/src/SoundVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SoundVisualizer.cpp -------------------------------------------------------------------------------- /Software/src/SoundVisualizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SoundVisualizer.hpp -------------------------------------------------------------------------------- /Software/src/SystemSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SystemSession.cpp -------------------------------------------------------------------------------- /Software/src/SystemSession.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/SystemSession.hpp -------------------------------------------------------------------------------- /Software/src/TimeEvaluations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/TimeEvaluations.cpp -------------------------------------------------------------------------------- /Software/src/TimeEvaluations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/TimeEvaluations.hpp -------------------------------------------------------------------------------- /Software/src/UpdatesProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/UpdatesProcessor.cpp -------------------------------------------------------------------------------- /Software/src/UpdatesProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/UpdatesProcessor.hpp -------------------------------------------------------------------------------- /Software/src/WindowsSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/WindowsSession.cpp -------------------------------------------------------------------------------- /Software/src/WindowsSession.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/WindowsSession.hpp -------------------------------------------------------------------------------- /Software/src/WindowsSoundManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/WindowsSoundManager.cpp -------------------------------------------------------------------------------- /Software/src/WindowsSoundManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/WindowsSoundManager.hpp -------------------------------------------------------------------------------- /Software/src/alienfx/LFX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/alienfx/LFX2.h -------------------------------------------------------------------------------- /Software/src/alienfx/LFXDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/alienfx/LFXDecl.h -------------------------------------------------------------------------------- /Software/src/alienfx/LightFX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/alienfx/LightFX.dll -------------------------------------------------------------------------------- /Software/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/debug.h -------------------------------------------------------------------------------- /Software/src/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/enums.hpp -------------------------------------------------------------------------------- /Software/src/hidapi/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/hidapi/hidapi.h -------------------------------------------------------------------------------- /Software/src/hidapi/linux/hid-libusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/hidapi/linux/hid-libusb.c -------------------------------------------------------------------------------- /Software/src/hidapi/mac/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/hidapi/mac/hid.c -------------------------------------------------------------------------------- /Software/src/hidapi/windows/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/hidapi/windows/hid.c -------------------------------------------------------------------------------- /Software/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/main.cpp -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/common.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/qtsingleapplication/common.pri -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/src/QtLockedFile: -------------------------------------------------------------------------------- 1 | #include "qtlockedfile.h" 2 | -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/src/QtSingleApplication: -------------------------------------------------------------------------------- 1 | #include "qtsingleapplication.h" 2 | -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/src/qtlocalpeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/qtsingleapplication/src/qtlocalpeer.cpp -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/src/qtlocalpeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/qtsingleapplication/src/qtlocalpeer.h -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/src/qtlockedfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/qtsingleapplication/src/qtlockedfile.cpp -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/src/qtlockedfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/qtsingleapplication/src/qtlockedfile.h -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/src/qtlockedfile_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/qtsingleapplication/src/qtlockedfile_unix.cpp -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/src/qtlockedfile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/qtsingleapplication/src/qtlockedfile_win.cpp -------------------------------------------------------------------------------- /Software/src/qtsingleapplication/src/qtsingleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/qtsingleapplication/src/qtsingleapplication.h -------------------------------------------------------------------------------- /Software/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/src.pro -------------------------------------------------------------------------------- /Software/src/systrayicon/SysTrayIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/systrayicon/SysTrayIcon.cpp -------------------------------------------------------------------------------- /Software/src/systrayicon/SysTrayIcon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/systrayicon/SysTrayIcon.hpp -------------------------------------------------------------------------------- /Software/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/types.h -------------------------------------------------------------------------------- /Software/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/version.h -------------------------------------------------------------------------------- /Software/src/wizard/AreaDistributor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/AreaDistributor.hpp -------------------------------------------------------------------------------- /Software/src/wizard/ConfigureDevicePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ConfigureDevicePage.cpp -------------------------------------------------------------------------------- /Software/src/wizard/ConfigureDevicePage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ConfigureDevicePage.hpp -------------------------------------------------------------------------------- /Software/src/wizard/ConfigureDevicePage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ConfigureDevicePage.ui -------------------------------------------------------------------------------- /Software/src/wizard/ConfigureDevicePowerPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ConfigureDevicePowerPage.cpp -------------------------------------------------------------------------------- /Software/src/wizard/ConfigureDevicePowerPage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ConfigureDevicePowerPage.hpp -------------------------------------------------------------------------------- /Software/src/wizard/ConfigureDevicePowerPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ConfigureDevicePowerPage.ui -------------------------------------------------------------------------------- /Software/src/wizard/ConfigureUdpDevicePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ConfigureUdpDevicePage.cpp -------------------------------------------------------------------------------- /Software/src/wizard/ConfigureUdpDevicePage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ConfigureUdpDevicePage.hpp -------------------------------------------------------------------------------- /Software/src/wizard/ConfigureUdpDevicePage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ConfigureUdpDevicePage.ui -------------------------------------------------------------------------------- /Software/src/wizard/CustomDistributor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/CustomDistributor.cpp -------------------------------------------------------------------------------- /Software/src/wizard/CustomDistributor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/CustomDistributor.hpp -------------------------------------------------------------------------------- /Software/src/wizard/GlobalColorCoefPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/GlobalColorCoefPage.cpp -------------------------------------------------------------------------------- /Software/src/wizard/GlobalColorCoefPage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/GlobalColorCoefPage.hpp -------------------------------------------------------------------------------- /Software/src/wizard/GlobalColorCoefPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/GlobalColorCoefPage.ui -------------------------------------------------------------------------------- /Software/src/wizard/LightpackDiscoveryPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/LightpackDiscoveryPage.cpp -------------------------------------------------------------------------------- /Software/src/wizard/LightpackDiscoveryPage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/LightpackDiscoveryPage.hpp -------------------------------------------------------------------------------- /Software/src/wizard/LightpackDiscoveryPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/LightpackDiscoveryPage.ui -------------------------------------------------------------------------------- /Software/src/wizard/MonitorIdForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/MonitorIdForm.cpp -------------------------------------------------------------------------------- /Software/src/wizard/MonitorIdForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/MonitorIdForm.hpp -------------------------------------------------------------------------------- /Software/src/wizard/MonitorIdForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/MonitorIdForm.ui -------------------------------------------------------------------------------- /Software/src/wizard/SelectDevicePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/SelectDevicePage.cpp -------------------------------------------------------------------------------- /Software/src/wizard/SelectDevicePage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/SelectDevicePage.hpp -------------------------------------------------------------------------------- /Software/src/wizard/SelectDevicePage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/SelectDevicePage.ui -------------------------------------------------------------------------------- /Software/src/wizard/SelectProfilePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/SelectProfilePage.cpp -------------------------------------------------------------------------------- /Software/src/wizard/SelectProfilePage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/SelectProfilePage.hpp -------------------------------------------------------------------------------- /Software/src/wizard/SelectProfilePage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/SelectProfilePage.ui -------------------------------------------------------------------------------- /Software/src/wizard/SettingsAwareTrait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/SettingsAwareTrait.hpp -------------------------------------------------------------------------------- /Software/src/wizard/Wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/Wizard.cpp -------------------------------------------------------------------------------- /Software/src/wizard/Wizard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/Wizard.hpp -------------------------------------------------------------------------------- /Software/src/wizard/Wizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/Wizard.ui -------------------------------------------------------------------------------- /Software/src/wizard/WizardPageUsingDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/WizardPageUsingDevice.cpp -------------------------------------------------------------------------------- /Software/src/wizard/WizardPageUsingDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/WizardPageUsingDevice.hpp -------------------------------------------------------------------------------- /Software/src/wizard/ZonePlacementPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ZonePlacementPage.cpp -------------------------------------------------------------------------------- /Software/src/wizard/ZonePlacementPage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ZonePlacementPage.hpp -------------------------------------------------------------------------------- /Software/src/wizard/ZonePlacementPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ZonePlacementPage.ui -------------------------------------------------------------------------------- /Software/src/wizard/ZoneWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ZoneWidget.cpp -------------------------------------------------------------------------------- /Software/src/wizard/ZoneWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/src/wizard/ZoneWidget.hpp -------------------------------------------------------------------------------- /Software/tests/AppVersionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/AppVersionTest.cpp -------------------------------------------------------------------------------- /Software/tests/AppVersionTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/AppVersionTest.hpp -------------------------------------------------------------------------------- /Software/tests/GrabCalculationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/GrabCalculationTest.cpp -------------------------------------------------------------------------------- /Software/tests/GrabCalculationTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/GrabCalculationTest.hpp -------------------------------------------------------------------------------- /Software/tests/HooksTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/HooksTest.cpp -------------------------------------------------------------------------------- /Software/tests/HooksTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/HooksTest.h -------------------------------------------------------------------------------- /Software/tests/LightpackApiTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/LightpackApiTest.cpp -------------------------------------------------------------------------------- /Software/tests/LightpackApiTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/LightpackApiTest.hpp -------------------------------------------------------------------------------- /Software/tests/LightpackCommandLineParserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/LightpackCommandLineParserTest.cpp -------------------------------------------------------------------------------- /Software/tests/LightpackCommandLineParserTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/LightpackCommandLineParserTest.hpp -------------------------------------------------------------------------------- /Software/tests/SettingsWindowMockup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/SettingsWindowMockup.cpp -------------------------------------------------------------------------------- /Software/tests/SettingsWindowMockup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/SettingsWindowMockup.hpp -------------------------------------------------------------------------------- /Software/tests/TestsMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/TestsMain.cpp -------------------------------------------------------------------------------- /Software/tests/lightpackmathtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/lightpackmathtest.cpp -------------------------------------------------------------------------------- /Software/tests/lightpackmathtest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/lightpackmathtest.hpp -------------------------------------------------------------------------------- /Software/tests/tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/tests/tests.pro -------------------------------------------------------------------------------- /Software/unhook/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/unhook/main.cpp -------------------------------------------------------------------------------- /Software/unhook/unhook.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/unhook/unhook.pro -------------------------------------------------------------------------------- /Software/unhook/unhook32.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/unhook/unhook32.pro -------------------------------------------------------------------------------- /Software/update_locales.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/update_locales.bat -------------------------------------------------------------------------------- /Software/update_locales.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/Software/update_locales.sh -------------------------------------------------------------------------------- /XBMC/addons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/addons.xml -------------------------------------------------------------------------------- /XBMC/addons.xml.md5: -------------------------------------------------------------------------------- 1 | cc1f93e30ee1785a4929e0844f71a9ee -------------------------------------------------------------------------------- /XBMC/addons_xml_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/addons_xml_generator.py -------------------------------------------------------------------------------- /XBMC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/readme.txt -------------------------------------------------------------------------------- /XBMC/script.lightpack/addon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/script.lightpack/addon.xml -------------------------------------------------------------------------------- /XBMC/script.lightpack/changelog-1.0.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/script.lightpack/changelog-1.0.4.txt -------------------------------------------------------------------------------- /XBMC/script.lightpack/changelog-1.0.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/script.lightpack/changelog-1.0.5.txt -------------------------------------------------------------------------------- /XBMC/script.lightpack/changelog_1.0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/script.lightpack/changelog_1.0.6.txt -------------------------------------------------------------------------------- /XBMC/script.lightpack/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/script.lightpack/icon.png -------------------------------------------------------------------------------- /XBMC/script.lightpack/script.lightpack-1.0.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/script.lightpack/script.lightpack-1.0.4.zip -------------------------------------------------------------------------------- /XBMC/script.lightpack/script.lightpack-1.0.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/script.lightpack/script.lightpack-1.0.5.zip -------------------------------------------------------------------------------- /XBMC/script.lightpack/script.lightpack-1.0.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/XBMC/script.lightpack/script.lightpack-1.0.6.zip -------------------------------------------------------------------------------- /screenshots/ambilight_win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/screenshots/ambilight_win.png -------------------------------------------------------------------------------- /screenshots/api_win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/screenshots/api_win.png -------------------------------------------------------------------------------- /screenshots/moodlamps_win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/screenshots/moodlamps_win.png -------------------------------------------------------------------------------- /screenshots/soundviz_win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psieg/Lightpack/HEAD/screenshots/soundviz_win.png --------------------------------------------------------------------------------