├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── hardware-bug-report.md │ └── issue---bug-report.md └── workflows │ ├── cmake.yml │ └── node.js.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── compile_proto.cmake ├── configs ├── BentoBox │ ├── BoardConfig.h │ ├── Readme.md │ └── assets │ │ ├── ST_BentoBoxV1.png │ │ ├── ST_BentoBoxV2.png │ │ ├── ST_GGEZStick.png │ │ └── ScrubTier_Large.png ├── CMakeLists.txt ├── FightboardV3 │ ├── BoardConfig.h │ ├── README.md │ └── assets │ │ └── FightboardV3.jpg ├── FightboardV3Mirrored │ ├── BoardConfig.h │ ├── README.md │ └── assets │ │ └── FightboardV3Mirrored.jpg ├── FlatboxRev4 │ ├── BoardConfig.h │ ├── Readme.md │ ├── assets │ │ ├── ButtonMapping.kra │ │ ├── ButtonMapping.png │ │ └── Flatbox-rev2b-finished-product.jpg │ └── flatboxrev4.h ├── FlatboxRev5 │ ├── BoardConfig.h │ ├── Readme.md │ ├── assets │ │ └── Flatbox-rev5.jpg │ └── flatboxrev5.h ├── FlatboxRev5RGB │ ├── BoardConfig.h │ ├── Readme.md │ ├── assets │ │ └── Flatbox-rev5-rgb.jpg │ └── flatboxrev5rgb.h ├── FlatboxRev5Southpaw │ ├── BoardConfig.h │ ├── Readme.md │ ├── assets │ │ └── Flatbox-rev5.jpg │ └── flatboxrev5.h ├── GamePad-LED │ ├── BoardConfig.h │ └── assets │ │ ├── 1.jpg │ │ ├── 5.png │ │ └── sch.jpg ├── Granola │ ├── BoardConfig.h │ ├── Readme.md │ └── assets │ │ └── granola-logo.png ├── Haute42COSMOX │ ├── BoardConfig.h │ ├── README.md │ └── assets │ │ ├── Haute42_G12.png │ │ ├── Haute42_G13.png │ │ ├── Haute42_G16.png │ │ ├── Haute42_G_series.png │ │ ├── Haute42_Mini.png │ │ ├── Haute42_Mini_series.png │ │ ├── Haute42_T13.png │ │ ├── Haute42_T16.png │ │ ├── Haute42_T_series.png │ │ └── Haute42_logo.png ├── KB2040 │ ├── BoardConfig.h │ ├── README.md │ └── assets │ │ └── PinMapping.png ├── KeyboardConverter │ ├── BoardConfig.h │ ├── README.md │ ├── assets │ │ └── WaveshareRP2040Zero.png │ └── wavesharezero.h ├── Liatris │ ├── BoardConfig.h │ ├── README.md │ ├── assets │ │ └── Liatris.png │ └── env.ini ├── Mavercade │ ├── BoardConfig.h │ ├── Mavercade.h │ ├── Readme.md │ └── assets │ │ ├── Mavercade-logo.png │ │ ├── keebfighter-00.png │ │ ├── keebfighter-01.png │ │ └── keebfighter-02.png ├── OpenCore0 │ ├── BoardConfig.h │ ├── Open_Core0.h │ ├── README.md │ └── assets │ │ ├── Open_Core0.jpg │ │ ├── Open_Core0_2.jpg │ │ ├── Open_Core0_LED_order.png │ │ ├── Open_Core0_layout.png │ │ └── Open_Core0_pin_mapping.png ├── OpenCore0WASD │ ├── BoardConfig.h │ ├── Open_Core0 WASD.h │ ├── README.md │ └── assets │ │ ├── Open_Core0_WASD.jpg │ │ └── Open_Core0_WASD_pinout.png ├── Pico │ ├── BoardConfig.h │ ├── CMakeLists.txt │ ├── README.md │ └── assets │ │ ├── PinMapping.png │ │ └── PinMapping.xcf ├── PicoAnn │ ├── BoardConfig.h │ ├── README.md │ └── assets │ │ └── PinMapping_PicoAnn.png ├── PicoFightingBoard │ ├── BoardConfig.h │ ├── README.md │ └── assets │ │ ├── PicoFightingBoard_v1.1.jpg │ │ ├── PinMapping.png │ │ └── PinMapping.xcf ├── PicoW │ ├── BoardConfig.h │ ├── CMakeLists.txt │ ├── README.md │ └── assets │ │ ├── PinMapping.png │ │ └── PinMapping.xcf ├── RP2040AdvancedBreakoutBoard │ ├── BoardConfig.h │ ├── README.md │ ├── RP2040AdvancedBreakoutBoard.h │ └── assets │ │ ├── RP2040AdvancedBreakoutBoard.jpg │ │ └── RP2040AdvancedBreakoutBoard_pinout.png ├── RP2040AdvancedBreakoutBoardUSBPassthrough │ ├── BoardConfig.h │ ├── README.md │ ├── RP2040AdvancedBreakoutBoardUSBPassthrough.h │ └── assets │ │ └── RP2040 Advanced Breakout Board - Passthrough.jpg ├── RP2040MiniBreakoutBoard │ ├── BoardConfig.h │ ├── README.md │ ├── RP2040MiniBreakoutBoard.h │ └── assets │ │ └── RP2040MiniBreakoutBoard.jpg ├── RanaTadpole │ ├── BoardConfig.h │ ├── README.md │ ├── RanaTadpole.h │ └── assets │ │ ├── RanaTadpole1.jpg │ │ ├── RanaTadpole2.jpg │ │ └── RanaTadpole_buttons.png ├── ReflexCtrlSNES │ ├── .Rhistory │ ├── BoardConfig.h │ └── README.md ├── ReflexEncodeV1.2 │ ├── BoardConfig.h │ ├── README.md │ └── assets │ │ └── ReflexBoard_v1.2.jpeg ├── ReflexEncodeV2.0 │ ├── BoardConfig.h │ ├── README.md │ └── assets │ │ └── ReflexBoard_V2.png ├── SGFBridget │ ├── BoardConfig.h │ ├── Readme.md │ ├── assets │ │ ├── SGF_Bridget.png │ │ ├── SGF_Bridget_Layout.jpg │ │ └── SGF_Logo.png │ └── sgfdevices.h ├── SGFFaust │ ├── BoardConfig.h │ ├── Readme.md │ ├── assets │ │ ├── SGF_Faust.png │ │ ├── SGF_Faust_Layout.png │ │ └── SGF_Logo.png │ └── sgfdevices.h ├── SparkFunProMicro │ ├── BoardConfig.h │ ├── README.md │ └── assets │ │ └── SparkFunProMicroRP2040.png ├── Stress │ ├── BoardConfig.h │ ├── README.md │ ├── assets │ │ └── stress-00.jpg │ └── stress.h └── WaveshareZero │ ├── BoardConfig.h │ ├── README.md │ ├── WaveshareRP2040Zero.png │ ├── assets │ └── WaveshareRP2040Zero.png │ └── wavesharezero.h ├── docs └── ddi-socd.md ├── headers ├── addonmanager.h ├── addons │ ├── analog.h │ ├── board_led.h │ ├── bootsel_button.h │ ├── buzzerspeaker.h │ ├── display.h │ ├── dualdirectional.h │ ├── focus_mode.h │ ├── i2canalog1219.h │ ├── input_macro.h │ ├── jslider.h │ ├── keyboard_host.h │ ├── keyboard_host_listener.h │ ├── neopicoleds.h │ ├── playernum.h │ ├── pleds.h │ ├── reverse.h │ ├── rotaryencoder.h │ ├── slider_socd.h │ ├── snes_input.h │ ├── spi_analog_ads1256.h │ ├── tilt.h │ ├── turbo.h │ └── wiiext.h ├── bitmaps.h ├── build_info.h ├── buttonlayouts.h ├── config_utils.h ├── configmanager.h ├── configs │ ├── base64.h │ ├── displayconfig.h │ ├── serialconfig.h │ └── webconfig.h ├── display │ ├── GPGFX.h │ ├── GPGFX_UI.h │ ├── GPGFX_UI_layouts.h │ ├── GPGFX_UI_screens.h │ ├── GPGFX_UI_types.h │ ├── GPGFX_UI_widgets.h │ ├── GPGFX_core.h │ ├── GPGFX_types.h │ ├── fonts │ │ ├── GP_Font_Basic.h │ │ ├── GP_Font_Big.h │ │ └── GP_Font_Standard.h │ └── ui │ │ ├── elements │ │ ├── GPButton.h │ │ ├── GPLabel.h │ │ ├── GPLever.h │ │ ├── GPScreen.h │ │ ├── GPShape.h │ │ ├── GPSprite.h │ │ └── GPWidget.h │ │ └── screens │ │ ├── ButtonLayoutScreen.h │ │ ├── ConfigScreen.h │ │ ├── MainMenuScreen.h │ │ └── SplashScreen.h ├── drivermanager.h ├── drivers │ ├── astro │ │ ├── AstroDescriptors.h │ │ └── AstroDriver.h │ ├── egret │ │ ├── EgretDescriptors.h │ │ └── EgretDriver.h │ ├── hid │ │ ├── HIDDescriptors.h │ │ └── HIDDriver.h │ ├── keyboard │ │ ├── KeyboardDescriptors.h │ │ └── KeyboardDriver.h │ ├── mdmini │ │ ├── MDMiniDescriptors.h │ │ └── MDMiniDriver.h │ ├── neogeo │ │ ├── NeoGeoDescriptors.h │ │ └── NeoGeoDriver.h │ ├── net │ │ └── NetDriver.h │ ├── pcengine │ │ ├── PCEngineDescriptors.h │ │ └── PCEngineDriver.h │ ├── ps4 │ │ ├── PS4Auth.h │ │ ├── PS4AuthUSBListener.h │ │ ├── PS4Descriptors.h │ │ └── PS4Driver.h │ ├── psclassic │ │ ├── PSClassicDescriptors.h │ │ └── PSClassicDriver.h │ ├── shared │ │ ├── driverhelper.h │ │ ├── gpauthdriver.h │ │ ├── xgip_protocol.h │ │ └── xinput_host.h │ ├── switch │ │ ├── SwitchDescriptors.h │ │ └── SwitchDriver.h │ ├── xbone │ │ ├── XBOneAuth.h │ │ ├── XBOneAuthUSBListener.h │ │ ├── XBOneDescriptors.h │ │ └── XBOneDriver.h │ ├── xboxog │ │ ├── XboxOriginalDescriptors.h │ │ ├── XboxOriginalDriver.h │ │ └── xid │ │ │ ├── LICENSE │ │ │ ├── xid.h │ │ │ ├── xid_driver.h │ │ │ ├── xid_gamepad.h │ │ │ ├── xid_remote.h │ │ │ └── xid_steelbattalion.h │ └── xinput │ │ ├── XInputAuth.h │ │ ├── XInputAuthUSBListener.h │ │ ├── XInputDescriptors.h │ │ └── XInputDriver.h ├── enums.h ├── gamepad.h ├── gamepad │ ├── GamepadConfig.h │ ├── GamepadEnums.h │ └── GamepadState.h ├── gp2040.h ├── gp2040aux.h ├── gpaddon.h ├── gpconfig.h ├── gpdriver.h ├── helper.h ├── interfaces │ └── i2c │ │ ├── displaybase.h │ │ └── ssd1306 │ │ ├── obd_ssd1306.h │ │ └── tiny_ssd1306.h ├── layoutmanager.h ├── mbedtls_config.h ├── peripheralmanager.h ├── songs.h ├── storagemanager.h ├── system.h ├── themes.h ├── tusb_config.h ├── types.h ├── usbdriver.h ├── usbhostmanager.h ├── usblistener.h └── version.h.in ├── lib ├── ADS1219 │ ├── ADS1219.cpp │ ├── ADS1219.h │ ├── CMakeLists.txt │ └── README.md ├── ADS1256 │ ├── ADS1256.cpp │ ├── ADS1256.h │ ├── CMakeLists.txt │ ├── LICENSE │ └── README.md ├── AnimationStation │ ├── .editorconfig │ ├── CMakeLists.txt │ ├── library.json │ └── src │ │ ├── Animation.cpp │ │ ├── Animation.hpp │ │ ├── AnimationStation.cpp │ │ ├── AnimationStation.hpp │ │ ├── AnimationStorage.hpp │ │ ├── Effects │ │ ├── Chase.cpp │ │ ├── Chase.hpp │ │ ├── CustomTheme.cpp │ │ ├── CustomTheme.hpp │ │ ├── CustomThemePressed.cpp │ │ ├── CustomThemePressed.hpp │ │ ├── Rainbow.cpp │ │ ├── Rainbow.hpp │ │ ├── StaticColor.cpp │ │ ├── StaticColor.hpp │ │ ├── StaticTheme.cpp │ │ └── StaticTheme.hpp │ │ └── Pixel.hpp ├── CMakeLists.txt ├── CRC32 │ ├── CMakeLists.txt │ └── src │ │ ├── CRC32.cpp │ │ └── CRC32.h ├── FlashPROM │ ├── CMakeLists.txt │ ├── library.json │ └── src │ │ ├── FlashPROM.cpp │ │ └── FlashPROM.h ├── NeoPico │ ├── .editorconfig │ ├── CMakeLists.txt │ ├── library.json │ └── src │ │ ├── NeoPico.cpp │ │ ├── NeoPico.hpp │ │ ├── generated │ │ └── ws2812.pio.h │ │ └── ws2812.pio ├── OneBitDisplay │ ├── CMakeLists.txt │ ├── OneBitDisplay.cpp │ ├── OneBitDisplay.h │ ├── README.md │ ├── fonts │ │ └── FreeSerif12pt7b.h │ └── obd.inl ├── PicoPeripherals │ ├── CMakeLists.txt │ ├── README.md │ ├── peripheral_i2c.cpp │ ├── peripheral_i2c.h │ ├── peripheral_spi.cpp │ ├── peripheral_spi.h │ ├── peripheral_usb.cpp │ └── peripheral_usb.h ├── PlayerLEDs │ ├── CMakeLists.txt │ └── src │ │ ├── PlayerLEDs.cpp │ │ └── PlayerLEDs.h ├── SNESpad │ ├── CMakeLists.txt │ ├── README.md │ ├── SNESpad.cpp │ └── SNESpad.h ├── WiiExtension │ ├── CMakeLists.txt │ ├── README.md │ ├── WiiExtension.cpp │ ├── WiiExtension.h │ └── extensions │ │ ├── ClassicExtension.cpp │ │ ├── ClassicExtension.h │ │ ├── DrumExtension.cpp │ │ ├── DrumExtension.h │ │ ├── ExtensionBase.cpp │ │ ├── ExtensionBase.h │ │ ├── Extensions.h │ │ ├── GuitarExtension.cpp │ │ ├── GuitarExtension.h │ │ ├── NunchuckExtension.cpp │ │ ├── NunchuckExtension.h │ │ ├── TaikoExtension.cpp │ │ ├── TaikoExtension.h │ │ ├── TurntableExtension.cpp │ │ └── TurntableExtension.h ├── httpd │ ├── CMakeLists.txt │ ├── fs.c │ ├── fs.h │ ├── fscustom.h │ └── fsdata.h ├── lwip-port │ ├── CMakeLists.txt │ ├── arch │ │ └── cc.h │ └── lwipopts.h ├── nanopb │ ├── .gitignore │ ├── AUTHORS.txt │ ├── BUILD.bazel │ ├── CHANGELOG.txt │ ├── CMakeLists.txt │ ├── CMakeLists.txt.original │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── Package.swift │ ├── README.md │ ├── WORKSPACE │ ├── build.py │ ├── conan-wrapper │ │ └── CMakeLists.txt │ ├── conanfile.py │ ├── docs │ │ ├── Makefile │ │ ├── bazel_build.md │ │ ├── concepts.md │ │ ├── generator_flow.svg │ │ ├── index.md │ │ ├── logo │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── logo16px.png │ │ │ └── logo48px.png │ │ ├── lsr.css │ │ ├── migration.md │ │ ├── reference.md │ │ ├── security.md │ │ └── whats_new.md │ ├── examples │ │ ├── cmake_relpath │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── proto │ │ │ │ ├── simple.proto │ │ │ │ └── sub │ │ │ │ │ └── unlucky.proto │ │ │ └── simple.c │ │ ├── cmake_simple │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── simple.c │ │ │ └── simple.proto │ │ ├── conan_dependency │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── conanfile.py │ │ │ ├── protos │ │ │ │ └── simple.proto │ │ │ └── src │ │ │ │ └── simple.c │ │ ├── network_server │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── client.c │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── fileproto.options │ │ │ ├── fileproto.proto │ │ │ └── server.c │ │ ├── platformio │ │ │ ├── .gitignore │ │ │ ├── platformio.ini │ │ │ ├── proto │ │ │ │ ├── pio_with_options.options │ │ │ │ ├── pio_with_options.proto │ │ │ │ └── pio_without_options.proto │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── pio_esp32_idf.c │ │ │ │ ├── pio_with_options.c │ │ │ │ ├── pio_without_options.c │ │ │ │ └── test.h │ │ ├── simple │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── simple.c │ │ │ └── simple.proto │ │ └── using_union_messages │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── decode.c │ │ │ ├── encode.c │ │ │ └── unionproto.proto │ ├── extra │ │ ├── FindNanopb.cmake │ │ ├── bazel │ │ │ ├── BUILD.bazel │ │ │ ├── nanopb_cc_proto_library.bzl │ │ │ ├── nanopb_deps.bzl │ │ │ ├── nanopb_workspace.bzl │ │ │ └── python_deps.bzl │ │ ├── nanopb-config-version.cmake.in │ │ ├── nanopb-config.cmake │ │ ├── nanopb.mk │ │ ├── pb_syshdr.h │ │ ├── poetry │ │ │ ├── poetry_build.sh │ │ │ └── pyproject.toml │ │ ├── requirements.txt │ │ └── requirements_lock.txt │ ├── generator │ │ ├── nanopb_generator.py │ │ ├── nanopb_generator.py2 │ │ ├── platformio_generator.py │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── __init__.py │ │ │ ├── _utils.py │ │ │ ├── google │ │ │ │ └── protobuf │ │ │ │ │ └── descriptor.proto │ │ │ └── nanopb.proto │ │ ├── protoc │ │ ├── protoc-gen-nanopb │ │ ├── protoc-gen-nanopb-py2 │ │ ├── protoc-gen-nanopb.bat │ │ └── protoc.bat │ ├── library.json │ ├── pb.h │ ├── pb_common.c │ ├── pb_common.h │ ├── pb_decode.c │ ├── pb_decode.h │ ├── pb_encode.c │ ├── pb_encode.h │ ├── spm-test │ │ ├── objc │ │ │ ├── c-header.c │ │ │ ├── objc-header.m │ │ │ ├── objc-module.m │ │ │ └── objc-qualified.m │ │ └── swift │ │ │ └── main.swift │ ├── spm_headers │ │ ├── nanopb │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ └── pb_encode.h │ │ ├── pb.h │ │ ├── pb_common.h │ │ ├── pb_decode.h │ │ └── pb_encode.h │ ├── tests │ │ ├── Makefile │ │ ├── SConstruct │ │ ├── alltypes │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ ├── alltypes.proto │ │ │ ├── decode_alltypes.c │ │ │ └── encode_alltypes.c │ │ ├── alltypes_callback │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ ├── decode_alltypes_callback.c │ │ │ └── encode_alltypes_callback.c │ │ ├── alltypes_pointer │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ ├── decode_alltypes_pointer.c │ │ │ └── encode_alltypes_pointer.c │ │ ├── alltypes_proto3 │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ ├── alltypes.proto │ │ │ ├── decode_alltypes.c │ │ │ └── encode_alltypes.c │ │ ├── alltypes_proto3_callback │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ ├── decode_alltypes_callback.c │ │ │ └── encode_alltypes_callback.c │ │ ├── anonymous_oneof │ │ │ ├── SConscript │ │ │ ├── decode_oneof.c │ │ │ └── oneof.proto │ │ ├── any_type │ │ │ ├── SConscript │ │ │ ├── anytest.proto │ │ │ ├── decode_any.c │ │ │ ├── encode_any.c │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── any.options │ │ │ │ ├── any.proto │ │ │ │ └── duration.proto │ │ ├── backwards_compatibility │ │ │ ├── SConscript │ │ │ ├── alltypes_legacy.c │ │ │ ├── alltypes_legacy.h │ │ │ ├── alltypes_legacy.options │ │ │ ├── alltypes_legacy.proto │ │ │ ├── decode_legacy.c │ │ │ └── encode_legacy.c │ │ ├── basic_buffer │ │ │ ├── SConscript │ │ │ ├── decode_buffer.c │ │ │ └── encode_buffer.c │ │ ├── basic_stream │ │ │ ├── SConscript │ │ │ ├── decode_stream.c │ │ │ └── encode_stream.c │ │ ├── buffer_only │ │ │ └── SConscript │ │ ├── callbacks │ │ │ ├── SConscript │ │ │ ├── callbacks.proto │ │ │ ├── decode_callbacks.c │ │ │ └── encode_callbacks.c │ │ ├── comments │ │ │ ├── SConscript │ │ │ ├── comments.expected │ │ │ └── comments.proto │ │ ├── common │ │ │ ├── SConscript │ │ │ ├── malloc_wrappers.c │ │ │ ├── malloc_wrappers.h │ │ │ ├── malloc_wrappers_syshdr.h │ │ │ ├── person.proto │ │ │ ├── test_helpers.h │ │ │ ├── unittestproto.proto │ │ │ └── unittests.h │ │ ├── common_unittests │ │ │ ├── SConscript │ │ │ └── common_unittests.c │ │ ├── cxx_callback_datatype │ │ │ ├── SConscript │ │ │ ├── cxx_callback_datatype.cpp │ │ │ └── message.proto │ │ ├── cxx_descriptor │ │ │ ├── SConscript │ │ │ ├── message.proto │ │ │ └── message_descriptor.cc │ │ ├── cxx_main_program │ │ │ └── SConscript │ │ ├── cyclic_messages │ │ │ ├── SConscript │ │ │ ├── cyclic.proto │ │ │ ├── cyclic_callback.options │ │ │ └── encode_cyclic_callback.c │ │ ├── decode_unittests │ │ │ ├── SConscript │ │ │ └── decode_unittests.c │ │ ├── docker_images │ │ │ ├── README.md │ │ │ ├── build_all.sh │ │ │ ├── ubuntu1804 │ │ │ │ └── Dockerfile │ │ │ └── ubuntu2004 │ │ │ │ └── Dockerfile │ │ ├── encode_arrays_unpacked │ │ │ └── SConscript │ │ ├── encode_unittests │ │ │ ├── SConscript │ │ │ └── encode_unittests.c │ │ ├── enum_mapping │ │ │ ├── SConscript │ │ │ ├── enum_mapping.expected │ │ │ └── enum_mapping.proto │ │ ├── enum_minmax │ │ │ ├── SConscript │ │ │ ├── enumminmax.proto │ │ │ └── enumminmax_unittests.c │ │ ├── enum_sizes │ │ │ ├── SConscript │ │ │ ├── enumsizes.proto │ │ │ └── enumsizes_unittests.c │ │ ├── enum_to_string │ │ │ ├── SConscript │ │ │ ├── enum.proto │ │ │ └── enum_to_string.c │ │ ├── extensions │ │ │ ├── SConscript │ │ │ ├── decode_extensions.c │ │ │ ├── encode_extensions.c │ │ │ ├── extensions.options │ │ │ └── extensions.proto │ │ ├── extra_fields │ │ │ ├── SConscript │ │ │ └── person_with_extra_field.expected │ │ ├── fallback_type │ │ │ ├── SConscript │ │ │ ├── fallback_type.expected │ │ │ ├── fallback_type.options │ │ │ └── fallback_type.proto │ │ ├── field_size_16 │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ └── alltypes.proto │ │ ├── field_size_16_proto3 │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ ├── alltypes.proto │ │ │ ├── decode_alltypes.c │ │ │ └── encode_alltypes.c │ │ ├── field_size_32 │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ └── alltypes.proto │ │ ├── fixed_count │ │ │ ├── SConscript │ │ │ ├── fixed_count.proto │ │ │ └── fixed_count_unittests.c │ │ ├── float_double_conversion │ │ │ ├── SConscript │ │ │ ├── doublemsg.proto │ │ │ └── float_double_conversion.c │ │ ├── fuzztest │ │ │ ├── SConscript │ │ │ ├── alltypes_callback.options │ │ │ ├── alltypes_pointer.options │ │ │ ├── alltypes_proto3_pointer.options │ │ │ ├── alltypes_proto3_static.options │ │ │ ├── alltypes_static.options │ │ │ ├── corpus.zip │ │ │ ├── flakystream.c │ │ │ ├── flakystream.h │ │ │ ├── fuzztest.c │ │ │ ├── generate_message.c │ │ │ ├── ossfuzz.sh │ │ │ ├── random_data.c │ │ │ ├── random_data.h │ │ │ ├── regressions.zip │ │ │ ├── update_corpus.sh │ │ │ ├── validation.c │ │ │ └── validation.h │ │ ├── generator_relative_paths │ │ │ ├── SConscript │ │ │ ├── any.expected │ │ │ ├── proto │ │ │ │ ├── protobuf │ │ │ │ │ └── any.proto │ │ │ │ └── simple.proto │ │ │ ├── simple.expected │ │ │ ├── test.expected │ │ │ └── test.proto │ │ ├── infinity_nan │ │ │ ├── SConscript │ │ │ ├── floats.proto │ │ │ └── infinity_nan_test.c │ │ ├── inline │ │ │ ├── SConscript │ │ │ ├── inline.expected │ │ │ ├── inline.proto │ │ │ └── inline_unittests.c │ │ ├── intsizes │ │ │ ├── SConscript │ │ │ ├── intsizes.proto │ │ │ └── intsizes_unittests.c │ │ ├── io_errors │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ └── io_errors.c │ │ ├── io_errors_pointers │ │ │ ├── SConscript │ │ │ └── alltypes.options │ │ ├── map │ │ │ ├── SConscript │ │ │ ├── decode_map.c │ │ │ ├── encode_map.c │ │ │ ├── map.options │ │ │ └── map.proto │ │ ├── mem_release │ │ │ ├── SConscript │ │ │ ├── mem_release.c │ │ │ └── mem_release.proto │ │ ├── message_sizes │ │ │ ├── SConscript │ │ │ ├── dummy.c │ │ │ ├── messages1.proto │ │ │ └── messages2.proto │ │ ├── missing_fields │ │ │ ├── SConscript │ │ │ ├── missing_fields.c │ │ │ └── missing_fields.proto │ │ ├── msgid │ │ │ ├── SConscript │ │ │ ├── decode_msgid.c │ │ │ ├── encode_msgid.c │ │ │ └── msgid_example.proto │ │ ├── multiple_files │ │ │ ├── SConscript │ │ │ ├── multifile1.options │ │ │ ├── multifile1.proto │ │ │ ├── multifile2.proto │ │ │ ├── subdir │ │ │ │ └── multifile2.proto │ │ │ └── test_multiple_files.c │ │ ├── namingstyle │ │ │ ├── SConscript │ │ │ ├── naming_style.options │ │ │ ├── naming_style.proto │ │ │ └── test_naming_style_c.c │ │ ├── no_errmsg │ │ │ └── SConscript │ │ ├── no_messages │ │ │ ├── SConscript │ │ │ └── no_messages.proto │ │ ├── oneof │ │ │ ├── SConscript │ │ │ ├── decode_oneof.c │ │ │ ├── encode_oneof.c │ │ │ └── oneof.proto │ │ ├── oneof_callback │ │ │ ├── SConscript │ │ │ ├── decode_oneof.c │ │ │ ├── encode_oneof.c │ │ │ └── oneof.proto │ │ ├── options │ │ │ ├── SConscript │ │ │ ├── options.c │ │ │ ├── options.proto │ │ │ ├── options_c.expected │ │ │ ├── options_h.expected │ │ │ ├── proto3_options.expected │ │ │ └── proto3_options.proto │ │ ├── package_name │ │ │ └── SConscript │ │ ├── package_name_nanopb │ │ │ └── SConscript │ │ ├── proto3_optional │ │ │ ├── SConscript │ │ │ ├── optional.c │ │ │ └── optional.proto │ │ ├── raw_decode │ │ │ ├── SConscript │ │ │ └── raw_decode.c │ │ ├── regression │ │ │ ├── GHSA-gcx3-7m76-287p │ │ │ │ ├── SConscript │ │ │ │ ├── test.c │ │ │ │ └── test.proto │ │ │ ├── issue_118 │ │ │ │ ├── SConscript │ │ │ │ ├── enumdef.proto │ │ │ │ └── enumuse.proto │ │ │ ├── issue_125 │ │ │ │ ├── SConscript │ │ │ │ ├── extensionbug.expected │ │ │ │ ├── extensionbug.options │ │ │ │ └── extensionbug.proto │ │ │ ├── issue_141 │ │ │ │ ├── SConscript │ │ │ │ ├── testproto.expected │ │ │ │ └── testproto.proto │ │ │ ├── issue_145 │ │ │ │ ├── SConscript │ │ │ │ ├── comments.expected │ │ │ │ ├── comments.options │ │ │ │ └── comments.proto │ │ │ ├── issue_166 │ │ │ │ ├── SConscript │ │ │ │ ├── enum_encoded_size.c │ │ │ │ └── enums.proto │ │ │ ├── issue_172 │ │ │ │ ├── SConscript │ │ │ │ ├── msg_size.c │ │ │ │ ├── submessage │ │ │ │ │ ├── submessage.options │ │ │ │ │ └── submessage.proto │ │ │ │ └── test.proto │ │ │ ├── issue_188 │ │ │ │ ├── SConscript │ │ │ │ └── oneof.proto │ │ │ ├── issue_195 │ │ │ │ ├── SConscript │ │ │ │ ├── test.expected │ │ │ │ └── test.proto │ │ │ ├── issue_203 │ │ │ │ ├── SConscript │ │ │ │ ├── file1.proto │ │ │ │ └── file2.proto │ │ │ ├── issue_205 │ │ │ │ ├── SConscript │ │ │ │ ├── size_corruption.c │ │ │ │ └── size_corruption.proto │ │ │ ├── issue_227 │ │ │ │ ├── SConscript │ │ │ │ ├── unaligned_uint64.c │ │ │ │ └── unaligned_uint64.proto │ │ │ ├── issue_229 │ │ │ │ ├── SConscript │ │ │ │ ├── multiple_oneof.c │ │ │ │ └── multiple_oneof.proto │ │ │ ├── issue_242 │ │ │ │ ├── SConscript │ │ │ │ ├── zero_value.c │ │ │ │ └── zero_value.proto │ │ │ ├── issue_247 │ │ │ │ ├── SConscript │ │ │ │ ├── padding.c │ │ │ │ └── padding.proto │ │ │ ├── issue_249 │ │ │ │ ├── SConscript │ │ │ │ ├── test.c │ │ │ │ └── test.proto │ │ │ ├── issue_253 │ │ │ │ ├── SConscript │ │ │ │ ├── short_array.c │ │ │ │ └── short_array.proto │ │ │ ├── issue_256 │ │ │ │ ├── SConscript │ │ │ │ ├── submsg_array.c │ │ │ │ └── submsg_array.proto │ │ │ ├── issue_259 │ │ │ │ ├── SConscript │ │ │ │ ├── callback_pointer.c │ │ │ │ └── callback_pointer.proto │ │ │ ├── issue_306 │ │ │ │ ├── SConscript │ │ │ │ ├── large_extension.expected │ │ │ │ └── large_extension.proto │ │ │ ├── issue_322 │ │ │ │ ├── SConscript │ │ │ │ ├── defaults.c │ │ │ │ └── defaults.proto │ │ │ ├── issue_338 │ │ │ │ ├── SConscript │ │ │ │ └── bigvalue.proto │ │ │ ├── issue_342 │ │ │ │ ├── SConscript │ │ │ │ ├── extensions.proto │ │ │ │ └── test_extensions.c │ │ │ ├── issue_363 │ │ │ │ ├── SConscript │ │ │ │ ├── oneofmsg.proto │ │ │ │ └── test_oneofmsg.c │ │ │ ├── issue_376 │ │ │ │ ├── SConscript │ │ │ │ ├── fixed_array.options │ │ │ │ ├── fixed_array.proto │ │ │ │ └── test_fixarray.c │ │ │ ├── issue_380 │ │ │ │ ├── SConscript │ │ │ │ ├── manglenames.options │ │ │ │ └── manglenames.proto │ │ │ ├── issue_395 │ │ │ │ ├── SConscript │ │ │ │ ├── test.c │ │ │ │ ├── test.options │ │ │ │ └── test.proto │ │ │ ├── issue_407 │ │ │ │ ├── SConscript │ │ │ │ ├── extensions.proto │ │ │ │ └── test_extensions.c │ │ │ ├── issue_453 │ │ │ │ ├── SConscript │ │ │ │ ├── test.c │ │ │ │ └── test.proto │ │ │ ├── issue_472 │ │ │ │ ├── SConscript │ │ │ │ └── test.proto │ │ │ ├── issue_485 │ │ │ │ ├── SConscript │ │ │ │ └── uint8.expected │ │ │ ├── issue_487 │ │ │ │ ├── SConscript │ │ │ │ └── test.proto │ │ │ ├── issue_493 │ │ │ │ ├── SConscript │ │ │ │ └── test.proto │ │ │ ├── issue_494 │ │ │ │ ├── SConscript │ │ │ │ ├── oneof.proto │ │ │ │ ├── oneof_size.cc │ │ │ │ └── submessage.proto │ │ │ ├── issue_504 │ │ │ │ ├── SConscript │ │ │ │ ├── test.c │ │ │ │ └── test.proto │ │ │ ├── issue_522 │ │ │ │ ├── SConscript │ │ │ │ └── uenum.proto │ │ │ ├── issue_524 │ │ │ │ ├── SConscript │ │ │ │ ├── oneof.expected │ │ │ │ ├── oneof.proto │ │ │ │ └── submessage.proto │ │ │ ├── issue_535 │ │ │ │ ├── SConscript │ │ │ │ └── issue_535.proto │ │ │ ├── issue_544 │ │ │ │ ├── SConscript │ │ │ │ ├── submsg_callback.c │ │ │ │ └── submsg_callback.proto │ │ │ ├── issue_545 │ │ │ │ ├── SConscript │ │ │ │ └── submsg_callback.proto │ │ │ ├── issue_547 │ │ │ │ ├── SConscript │ │ │ │ ├── test.c │ │ │ │ └── test.proto │ │ │ ├── issue_558 │ │ │ │ ├── SConscript │ │ │ │ ├── mixed.c │ │ │ │ └── mixed.proto │ │ │ ├── issue_569 │ │ │ │ ├── SConscript │ │ │ │ ├── a.proto │ │ │ │ └── b.proto │ │ │ ├── issue_610 │ │ │ │ ├── DataPacket.proto │ │ │ │ ├── LogMessage.proto │ │ │ │ ├── SConscript │ │ │ │ ├── first.expected │ │ │ │ └── nanopb_generator_bug │ │ │ │ │ ├── first.proto │ │ │ │ │ └── first │ │ │ │ │ ├── a.proto │ │ │ │ │ ├── a │ │ │ │ │ ├── aa.proto │ │ │ │ │ └── ab.proto │ │ │ │ │ ├── b.proto │ │ │ │ │ └── b │ │ │ │ │ └── ba.proto │ │ │ ├── issue_611 │ │ │ │ ├── SConscript │ │ │ │ ├── uenum.expected │ │ │ │ └── uenum.proto │ │ │ ├── issue_617 │ │ │ │ ├── SConscript │ │ │ │ ├── oneof.options │ │ │ │ ├── oneof.proto │ │ │ │ └── test_oneof.c │ │ │ ├── issue_631 │ │ │ │ ├── SConscript │ │ │ │ ├── submsg_callback.proto │ │ │ │ └── test.c │ │ │ ├── issue_637 │ │ │ │ ├── SConscript │ │ │ │ ├── oneof.proto │ │ │ │ ├── other.proto │ │ │ │ └── test.c │ │ │ ├── issue_644 │ │ │ │ ├── SConscript │ │ │ │ └── int64.proto │ │ │ ├── issue_647 │ │ │ │ ├── SConscript │ │ │ │ ├── repro.c │ │ │ │ └── repro.proto │ │ │ ├── issue_692 │ │ │ │ ├── SConscript │ │ │ │ ├── oneof.proto │ │ │ │ ├── other.proto │ │ │ │ └── test.c │ │ │ ├── issue_746 │ │ │ │ ├── SConscript │ │ │ │ └── test.proto │ │ │ ├── issue_783 │ │ │ │ ├── SConscript │ │ │ │ ├── folder_A │ │ │ │ │ ├── file_A.options │ │ │ │ │ └── file_A.proto │ │ │ │ ├── folder_B │ │ │ │ │ └── file_B.proto │ │ │ │ └── folder_C │ │ │ │ │ └── file_C.proto │ │ │ ├── issue_795 │ │ │ │ ├── SConscript │ │ │ │ ├── test.proto │ │ │ │ ├── test2.proto │ │ │ │ └── test3.proto │ │ │ └── issue_838 │ │ │ │ ├── SConscript │ │ │ │ ├── enum.proto │ │ │ │ └── enum_to_string.cxx │ │ ├── site_scons │ │ │ ├── platforms │ │ │ │ ├── __init__.py │ │ │ │ ├── avr │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── avr.py │ │ │ │ │ ├── avr_io.c │ │ │ │ │ └── run_test.c │ │ │ │ ├── mips │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── mips.py │ │ │ │ ├── mipsel │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── mipsel.py │ │ │ │ ├── riscv64 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── riscv64.py │ │ │ │ └── stm32 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── run_test.sh │ │ │ │ │ ├── stm32.py │ │ │ │ │ ├── stm32_ram.ld │ │ │ │ │ └── vectors.c │ │ │ ├── site_init.py │ │ │ └── site_tools │ │ │ │ └── nanopb.py │ │ ├── sort_by_tag │ │ │ ├── SConscript │ │ │ ├── sort_by_tag.c │ │ │ ├── sort_by_tag.options │ │ │ └── sort_by_tag.proto │ │ ├── special_characters │ │ │ ├── SConscript │ │ │ ├── funny-proto+name has.characters.options │ │ │ ├── funny-proto+name has.characters.proto │ │ │ └── specchars.expected │ │ ├── splint │ │ │ ├── SConscript │ │ │ └── splint.rc │ │ ├── stackusage │ │ │ ├── SConscript │ │ │ ├── stackusage.c │ │ │ ├── stackusage.options │ │ │ └── stackusage.proto │ │ ├── typename_mangling │ │ │ ├── SConscript │ │ │ ├── test_flatten.c │ │ │ ├── test_package_initials.c │ │ │ ├── test_strip_package.c │ │ │ ├── with_package.options │ │ │ └── with_package.proto │ │ ├── validate_utf8 │ │ │ └── SConscript │ │ └── without_64bit │ │ │ ├── SConscript │ │ │ ├── alltypes.options │ │ │ ├── alltypes.proto │ │ │ ├── decode_alltypes.c │ │ │ ├── encode_alltypes.c │ │ │ └── no_64bit_syshdr.h │ └── tools │ │ ├── list_authors.sh │ │ ├── make_linux_package.sh │ │ ├── make_mac_package.sh │ │ ├── make_windows_package.sh │ │ └── set_version.sh └── rndis │ ├── CMakeLists.txt │ ├── rndis.c │ └── rndis.h ├── modules ├── FindNPM.cmake └── FindNodeJS.cmake ├── pico_sdk_import.cmake ├── proto ├── config.proto └── enums.proto ├── src ├── addonmanager.cpp ├── addons │ ├── analog.cpp │ ├── board_led.cpp │ ├── bootsel_button.cpp │ ├── buzzerspeaker.cpp │ ├── display.cpp │ ├── dualdirectional.cpp │ ├── focus_mode.cpp │ ├── i2canalog1219.cpp │ ├── input_macro.cpp │ ├── jslider.cpp │ ├── keyboard_host.cpp │ ├── keyboard_host_listener.cpp │ ├── neopicoleds.cpp │ ├── playerleds.cpp │ ├── playernum.cpp │ ├── reverse.cpp │ ├── rotaryencoder.cpp │ ├── slider_socd.cpp │ ├── snes_input.cpp │ ├── spi_analog_ads1256.cpp │ ├── tilt.cpp │ ├── turbo.cpp │ └── wiiext.cpp ├── config_legacy.cpp ├── config_utils.cpp ├── configmanager.cpp ├── configs │ └── webconfig.cpp ├── display │ ├── GPGFX.cpp │ ├── GPGFX_UI.cpp │ ├── README.md │ └── ui │ │ ├── elements │ │ ├── GPButton.cpp │ │ ├── GPLabel.cpp │ │ ├── GPLever.cpp │ │ ├── GPScreen.cpp │ │ ├── GPShape.cpp │ │ ├── GPSprite.cpp │ │ └── GPWidget.cpp │ │ └── screens │ │ ├── ButtonLayoutScreen.cpp │ │ ├── ConfigScreen.cpp │ │ ├── MainMenuScreen.cpp │ │ └── SplashScreen.cpp ├── drivermanager.cpp ├── drivers │ ├── astro │ │ └── AstroDriver.cpp │ ├── egret │ │ └── EgretDriver.cpp │ ├── hid │ │ └── HIDDriver.cpp │ ├── keyboard │ │ └── KeyboardDriver.cpp │ ├── mdmini │ │ └── MDMiniDriver.cpp │ ├── neogeo │ │ └── NeoGeoDriver.cpp │ ├── net │ │ └── NetDriver.cpp │ ├── pcengine │ │ └── PCEngineDriver.cpp │ ├── ps4 │ │ ├── PS4Auth.cpp │ │ ├── PS4AuthUSBListener.cpp │ │ └── PS4Driver.cpp │ ├── psclassic │ │ └── PSClassicDriver.cpp │ ├── shared │ │ ├── xgip_protocol.cpp │ │ └── xinput_host.cpp │ ├── switch │ │ └── SwitchDriver.cpp │ ├── xbone │ │ ├── XBOneAuth.cpp │ │ ├── XBOneAuthUSBListener.cpp │ │ └── XBOneDriver.cpp │ ├── xboxog │ │ ├── XboxOriginalDriver.cpp │ │ └── xid │ │ │ ├── xid.c │ │ │ ├── xid_driver.c │ │ │ ├── xid_gamepad.c │ │ │ ├── xid_remote.c │ │ │ └── xid_steelbattalion.c │ └── xinput │ │ ├── XInputAuth.cpp │ │ ├── XInputAuthUSBListener.cpp │ │ └── XInputDriver.cpp ├── gamepad.cpp ├── gamepad │ └── GamepadState.cpp ├── gp2040.cpp ├── gp2040aux.cpp ├── interfaces │ └── i2c │ │ └── ssd1306 │ │ ├── obd_ssd1306.cpp │ │ └── tiny_ssd1306.cpp ├── layoutmanager.cpp ├── main.cpp ├── peripheralmanager.cpp ├── storagemanager.cpp ├── system.cpp ├── usbdriver.cpp └── usbhostmanager.cpp └── www ├── .env ├── .eslintrc.yml ├── .gitignore ├── README.md ├── env.d.ts ├── index.html ├── makefsdata.js ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── images │ └── logo.png └── manifest.json ├── server ├── app.js └── docs │ ├── GP2040-CE (Dev).postman_environment.json │ └── GP2040-CE.postman_collection.json ├── src ├── Addons │ ├── Analog.tsx │ ├── Analog1256.tsx │ ├── Bootsel.tsx │ ├── Buzzer.tsx │ ├── DualDirection.tsx │ ├── FocusMode.tsx │ ├── I2CAnalog1219.tsx │ ├── InputHistory.tsx │ ├── Joystick.tsx │ ├── Keyboard.tsx │ ├── OnBoardLed.tsx │ ├── PlayerNumber.tsx │ ├── Reverse.tsx │ ├── Rotary.tsx │ ├── SNES.tsx │ ├── SOCD.tsx │ ├── Tilt.tsx │ ├── Turbo.tsx │ └── Wii.tsx ├── App.jsx ├── App.scss ├── Components │ ├── AnalogPinOptions.tsx │ ├── CaptureButton.tsx │ ├── ColorPicker.jsx │ ├── ColorPicker.scss │ ├── ColorScheme.jsx │ ├── ContextualHelpOverlay.tsx │ ├── CustomSelect.scss │ ├── CustomSelect.tsx │ ├── DangerSection.jsx │ ├── DraggableListGroup.jsx │ ├── DraggableListGroup.scss │ ├── FormCheck.jsx │ ├── FormCheck.scss │ ├── FormControl.tsx │ ├── FormSelect.jsx │ ├── KeyboardMapper.jsx │ ├── LanguageSelector.jsx │ ├── Navigation.jsx │ ├── Navigation.scss │ ├── Section.jsx │ └── Section.scss ├── Contexts │ └── AppContext.jsx ├── Data │ ├── Addons.ts │ ├── Boards.json │ ├── Buttons.js │ ├── Controllers.json │ ├── Keyboard.js │ ├── LEDColors.js │ ├── Peripherals.ts │ └── Pins.ts ├── Icons │ ├── CircleHalf.tsx │ ├── Flags │ │ ├── De.tsx │ │ ├── Us.tsx │ │ ├── ptBR.tsx │ │ └── zhCN.tsx │ ├── Globe.tsx │ ├── InfoCircle.tsx │ ├── MoonStars.tsx │ └── Sun.tsx ├── Locales │ ├── de-DE │ │ ├── Addons │ │ │ └── WiiAddon.jsx │ │ ├── AddonsConfig.jsx │ │ ├── BackupPage.jsx │ │ ├── CaptureButton.jsx │ │ ├── Common.jsx │ │ ├── Components.jsx │ │ ├── CustomTheme.jsx │ │ ├── DisplayConfig.jsx │ │ ├── HomePage.jsx │ │ ├── Index.jsx │ │ ├── InputMacroAddon.jsx │ │ ├── LedConfig.jsx │ │ ├── Navigation.jsx │ │ ├── PeripheralMapping.jsx │ │ ├── PinMapping.jsx │ │ ├── ResetSettings.jsx │ │ └── SettingsPage.jsx │ ├── en │ │ ├── Addons │ │ │ ├── Rotary.jsx │ │ │ └── WiiAddon.jsx │ │ ├── AddonsConfig.jsx │ │ ├── BackupPage.jsx │ │ ├── CaptureButton.jsx │ │ ├── Common.jsx │ │ ├── Components.jsx │ │ ├── CustomTheme.jsx │ │ ├── DisplayConfig.jsx │ │ ├── HomePage.jsx │ │ ├── Index.jsx │ │ ├── InputMacroAddon.jsx │ │ ├── LedConfig.jsx │ │ ├── Navigation.jsx │ │ ├── PeripheralMapping.jsx │ │ ├── PinMapping.jsx │ │ ├── ResetSettings.jsx │ │ └── SettingsPage.jsx │ ├── pt-BR │ │ ├── AddonsConfig.jsx │ │ ├── BackupPage.jsx │ │ ├── Common.jsx │ │ ├── Components.jsx │ │ ├── CustomTheme.jsx │ │ ├── DisplayConfig.jsx │ │ ├── HomePage.jsx │ │ ├── Index.jsx │ │ ├── LedConfig.jsx │ │ ├── Navigation.jsx │ │ ├── PinMapping.jsx │ │ ├── ResetSettings.jsx │ │ └── SettingsPage.jsx │ └── zh-CN │ │ ├── AddonsConfig.jsx │ │ ├── BackupPage.jsx │ │ ├── Common.jsx │ │ ├── Components.jsx │ │ ├── CustomTheme.jsx │ │ ├── DisplayConfig.jsx │ │ ├── HomePage.jsx │ │ ├── Index.jsx │ │ ├── LedConfig.jsx │ │ ├── Navigation.jsx │ │ ├── PinMapping.jsx │ │ ├── ResetSettings.jsx │ │ └── SettingsPage.jsx ├── Pages │ ├── AddonsConfigPage.jsx │ ├── BackupPage.jsx │ ├── CustomThemePage.jsx │ ├── CustomThemePage.scss │ ├── DisplayConfig.jsx │ ├── HomePage.jsx │ ├── InputMacroAddonPage.tsx │ ├── LEDConfigPage.jsx │ ├── PeripheralMappingPage.jsx │ ├── PinMapping.tsx │ ├── PlaygroundPage.jsx │ ├── ResetSettingsPage.jsx │ ├── SettingsPage.jsx │ └── SettingsPage.scss ├── Services │ ├── Storage.js │ ├── Utilities.js │ └── WebApi.js ├── Store │ ├── usePinStore.ts │ └── useProfilesStore.ts ├── i18n.jsx ├── index.jsx └── index.scss └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/hardware-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/.github/ISSUE_TEMPLATE/hardware-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/.github/ISSUE_TEMPLATE/issue---bug-report.md -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/README.md -------------------------------------------------------------------------------- /compile_proto.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/compile_proto.cmake -------------------------------------------------------------------------------- /configs/BentoBox/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/BentoBox/BoardConfig.h -------------------------------------------------------------------------------- /configs/BentoBox/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/BentoBox/Readme.md -------------------------------------------------------------------------------- /configs/BentoBox/assets/ST_BentoBoxV1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/BentoBox/assets/ST_BentoBoxV1.png -------------------------------------------------------------------------------- /configs/BentoBox/assets/ST_BentoBoxV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/BentoBox/assets/ST_BentoBoxV2.png -------------------------------------------------------------------------------- /configs/BentoBox/assets/ST_GGEZStick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/BentoBox/assets/ST_GGEZStick.png -------------------------------------------------------------------------------- /configs/BentoBox/assets/ScrubTier_Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/BentoBox/assets/ScrubTier_Large.png -------------------------------------------------------------------------------- /configs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Pico) -------------------------------------------------------------------------------- /configs/FightboardV3/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FightboardV3/BoardConfig.h -------------------------------------------------------------------------------- /configs/FightboardV3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FightboardV3/README.md -------------------------------------------------------------------------------- /configs/FightboardV3/assets/FightboardV3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FightboardV3/assets/FightboardV3.jpg -------------------------------------------------------------------------------- /configs/FightboardV3Mirrored/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FightboardV3Mirrored/BoardConfig.h -------------------------------------------------------------------------------- /configs/FightboardV3Mirrored/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FightboardV3Mirrored/README.md -------------------------------------------------------------------------------- /configs/FlatboxRev4/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev4/BoardConfig.h -------------------------------------------------------------------------------- /configs/FlatboxRev4/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev4/Readme.md -------------------------------------------------------------------------------- /configs/FlatboxRev4/assets/ButtonMapping.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev4/assets/ButtonMapping.kra -------------------------------------------------------------------------------- /configs/FlatboxRev4/assets/ButtonMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev4/assets/ButtonMapping.png -------------------------------------------------------------------------------- /configs/FlatboxRev4/flatboxrev4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev4/flatboxrev4.h -------------------------------------------------------------------------------- /configs/FlatboxRev5/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5/BoardConfig.h -------------------------------------------------------------------------------- /configs/FlatboxRev5/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5/Readme.md -------------------------------------------------------------------------------- /configs/FlatboxRev5/assets/Flatbox-rev5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5/assets/Flatbox-rev5.jpg -------------------------------------------------------------------------------- /configs/FlatboxRev5/flatboxrev5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5/flatboxrev5.h -------------------------------------------------------------------------------- /configs/FlatboxRev5RGB/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5RGB/BoardConfig.h -------------------------------------------------------------------------------- /configs/FlatboxRev5RGB/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5RGB/Readme.md -------------------------------------------------------------------------------- /configs/FlatboxRev5RGB/flatboxrev5rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5RGB/flatboxrev5rgb.h -------------------------------------------------------------------------------- /configs/FlatboxRev5Southpaw/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5Southpaw/BoardConfig.h -------------------------------------------------------------------------------- /configs/FlatboxRev5Southpaw/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5Southpaw/Readme.md -------------------------------------------------------------------------------- /configs/FlatboxRev5Southpaw/flatboxrev5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/FlatboxRev5Southpaw/flatboxrev5.h -------------------------------------------------------------------------------- /configs/GamePad-LED/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/GamePad-LED/BoardConfig.h -------------------------------------------------------------------------------- /configs/GamePad-LED/assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/GamePad-LED/assets/1.jpg -------------------------------------------------------------------------------- /configs/GamePad-LED/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/GamePad-LED/assets/5.png -------------------------------------------------------------------------------- /configs/GamePad-LED/assets/sch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/GamePad-LED/assets/sch.jpg -------------------------------------------------------------------------------- /configs/Granola/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Granola/BoardConfig.h -------------------------------------------------------------------------------- /configs/Granola/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Granola/Readme.md -------------------------------------------------------------------------------- /configs/Granola/assets/granola-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Granola/assets/granola-logo.png -------------------------------------------------------------------------------- /configs/Haute42COSMOX/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Haute42COSMOX/BoardConfig.h -------------------------------------------------------------------------------- /configs/Haute42COSMOX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Haute42COSMOX/README.md -------------------------------------------------------------------------------- /configs/Haute42COSMOX/assets/Haute42_G12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Haute42COSMOX/assets/Haute42_G12.png -------------------------------------------------------------------------------- /configs/Haute42COSMOX/assets/Haute42_G13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Haute42COSMOX/assets/Haute42_G13.png -------------------------------------------------------------------------------- /configs/Haute42COSMOX/assets/Haute42_G16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Haute42COSMOX/assets/Haute42_G16.png -------------------------------------------------------------------------------- /configs/Haute42COSMOX/assets/Haute42_Mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Haute42COSMOX/assets/Haute42_Mini.png -------------------------------------------------------------------------------- /configs/Haute42COSMOX/assets/Haute42_T13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Haute42COSMOX/assets/Haute42_T13.png -------------------------------------------------------------------------------- /configs/Haute42COSMOX/assets/Haute42_T16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Haute42COSMOX/assets/Haute42_T16.png -------------------------------------------------------------------------------- /configs/Haute42COSMOX/assets/Haute42_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Haute42COSMOX/assets/Haute42_logo.png -------------------------------------------------------------------------------- /configs/KB2040/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/KB2040/BoardConfig.h -------------------------------------------------------------------------------- /configs/KB2040/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/KB2040/README.md -------------------------------------------------------------------------------- /configs/KB2040/assets/PinMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/KB2040/assets/PinMapping.png -------------------------------------------------------------------------------- /configs/KeyboardConverter/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/KeyboardConverter/BoardConfig.h -------------------------------------------------------------------------------- /configs/KeyboardConverter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/KeyboardConverter/README.md -------------------------------------------------------------------------------- /configs/KeyboardConverter/wavesharezero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/KeyboardConverter/wavesharezero.h -------------------------------------------------------------------------------- /configs/Liatris/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Liatris/BoardConfig.h -------------------------------------------------------------------------------- /configs/Liatris/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Liatris/README.md -------------------------------------------------------------------------------- /configs/Liatris/assets/Liatris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Liatris/assets/Liatris.png -------------------------------------------------------------------------------- /configs/Liatris/env.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Liatris/env.ini -------------------------------------------------------------------------------- /configs/Mavercade/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Mavercade/BoardConfig.h -------------------------------------------------------------------------------- /configs/Mavercade/Mavercade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Mavercade/Mavercade.h -------------------------------------------------------------------------------- /configs/Mavercade/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Mavercade/Readme.md -------------------------------------------------------------------------------- /configs/Mavercade/assets/Mavercade-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Mavercade/assets/Mavercade-logo.png -------------------------------------------------------------------------------- /configs/Mavercade/assets/keebfighter-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Mavercade/assets/keebfighter-00.png -------------------------------------------------------------------------------- /configs/Mavercade/assets/keebfighter-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Mavercade/assets/keebfighter-01.png -------------------------------------------------------------------------------- /configs/Mavercade/assets/keebfighter-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Mavercade/assets/keebfighter-02.png -------------------------------------------------------------------------------- /configs/OpenCore0/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/OpenCore0/BoardConfig.h -------------------------------------------------------------------------------- /configs/OpenCore0/Open_Core0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/OpenCore0/Open_Core0.h -------------------------------------------------------------------------------- /configs/OpenCore0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/OpenCore0/README.md -------------------------------------------------------------------------------- /configs/OpenCore0/assets/Open_Core0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/OpenCore0/assets/Open_Core0.jpg -------------------------------------------------------------------------------- /configs/OpenCore0/assets/Open_Core0_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/OpenCore0/assets/Open_Core0_2.jpg -------------------------------------------------------------------------------- /configs/OpenCore0/assets/Open_Core0_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/OpenCore0/assets/Open_Core0_layout.png -------------------------------------------------------------------------------- /configs/OpenCore0WASD/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/OpenCore0WASD/BoardConfig.h -------------------------------------------------------------------------------- /configs/OpenCore0WASD/Open_Core0 WASD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/OpenCore0WASD/Open_Core0 WASD.h -------------------------------------------------------------------------------- /configs/OpenCore0WASD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/OpenCore0WASD/README.md -------------------------------------------------------------------------------- /configs/Pico/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Pico/BoardConfig.h -------------------------------------------------------------------------------- /configs/Pico/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | #add_executable(Pico 2 | #${CMAKE_SOURCE_DIR}/src/main.cpp) 3 | #link_libraries(${PROJECT_NAME}) -------------------------------------------------------------------------------- /configs/Pico/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Pico/README.md -------------------------------------------------------------------------------- /configs/Pico/assets/PinMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Pico/assets/PinMapping.png -------------------------------------------------------------------------------- /configs/Pico/assets/PinMapping.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Pico/assets/PinMapping.xcf -------------------------------------------------------------------------------- /configs/PicoAnn/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoAnn/BoardConfig.h -------------------------------------------------------------------------------- /configs/PicoAnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoAnn/README.md -------------------------------------------------------------------------------- /configs/PicoAnn/assets/PinMapping_PicoAnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoAnn/assets/PinMapping_PicoAnn.png -------------------------------------------------------------------------------- /configs/PicoFightingBoard/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoFightingBoard/BoardConfig.h -------------------------------------------------------------------------------- /configs/PicoFightingBoard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoFightingBoard/README.md -------------------------------------------------------------------------------- /configs/PicoFightingBoard/assets/PinMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoFightingBoard/assets/PinMapping.png -------------------------------------------------------------------------------- /configs/PicoFightingBoard/assets/PinMapping.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoFightingBoard/assets/PinMapping.xcf -------------------------------------------------------------------------------- /configs/PicoW/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoW/BoardConfig.h -------------------------------------------------------------------------------- /configs/PicoW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | #add_executable(Pico 2 | #${CMAKE_SOURCE_DIR}/src/main.cpp) 3 | #link_libraries(${PROJECT_NAME}) -------------------------------------------------------------------------------- /configs/PicoW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoW/README.md -------------------------------------------------------------------------------- /configs/PicoW/assets/PinMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoW/assets/PinMapping.png -------------------------------------------------------------------------------- /configs/PicoW/assets/PinMapping.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/PicoW/assets/PinMapping.xcf -------------------------------------------------------------------------------- /configs/RP2040AdvancedBreakoutBoard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/RP2040AdvancedBreakoutBoard/README.md -------------------------------------------------------------------------------- /configs/RP2040MiniBreakoutBoard/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/RP2040MiniBreakoutBoard/BoardConfig.h -------------------------------------------------------------------------------- /configs/RP2040MiniBreakoutBoard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/RP2040MiniBreakoutBoard/README.md -------------------------------------------------------------------------------- /configs/RanaTadpole/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/RanaTadpole/BoardConfig.h -------------------------------------------------------------------------------- /configs/RanaTadpole/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/RanaTadpole/README.md -------------------------------------------------------------------------------- /configs/RanaTadpole/RanaTadpole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/RanaTadpole/RanaTadpole.h -------------------------------------------------------------------------------- /configs/RanaTadpole/assets/RanaTadpole1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/RanaTadpole/assets/RanaTadpole1.jpg -------------------------------------------------------------------------------- /configs/RanaTadpole/assets/RanaTadpole2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/RanaTadpole/assets/RanaTadpole2.jpg -------------------------------------------------------------------------------- /configs/ReflexCtrlSNES/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/ReflexCtrlSNES/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/ReflexCtrlSNES/BoardConfig.h -------------------------------------------------------------------------------- /configs/ReflexCtrlSNES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/ReflexCtrlSNES/README.md -------------------------------------------------------------------------------- /configs/ReflexEncodeV1.2/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/ReflexEncodeV1.2/BoardConfig.h -------------------------------------------------------------------------------- /configs/ReflexEncodeV1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/ReflexEncodeV1.2/README.md -------------------------------------------------------------------------------- /configs/ReflexEncodeV2.0/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/ReflexEncodeV2.0/BoardConfig.h -------------------------------------------------------------------------------- /configs/ReflexEncodeV2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/ReflexEncodeV2.0/README.md -------------------------------------------------------------------------------- /configs/SGFBridget/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFBridget/BoardConfig.h -------------------------------------------------------------------------------- /configs/SGFBridget/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFBridget/Readme.md -------------------------------------------------------------------------------- /configs/SGFBridget/assets/SGF_Bridget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFBridget/assets/SGF_Bridget.png -------------------------------------------------------------------------------- /configs/SGFBridget/assets/SGF_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFBridget/assets/SGF_Logo.png -------------------------------------------------------------------------------- /configs/SGFBridget/sgfdevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFBridget/sgfdevices.h -------------------------------------------------------------------------------- /configs/SGFFaust/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFFaust/BoardConfig.h -------------------------------------------------------------------------------- /configs/SGFFaust/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFFaust/Readme.md -------------------------------------------------------------------------------- /configs/SGFFaust/assets/SGF_Faust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFFaust/assets/SGF_Faust.png -------------------------------------------------------------------------------- /configs/SGFFaust/assets/SGF_Faust_Layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFFaust/assets/SGF_Faust_Layout.png -------------------------------------------------------------------------------- /configs/SGFFaust/assets/SGF_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFFaust/assets/SGF_Logo.png -------------------------------------------------------------------------------- /configs/SGFFaust/sgfdevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SGFFaust/sgfdevices.h -------------------------------------------------------------------------------- /configs/SparkFunProMicro/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SparkFunProMicro/BoardConfig.h -------------------------------------------------------------------------------- /configs/SparkFunProMicro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/SparkFunProMicro/README.md -------------------------------------------------------------------------------- /configs/Stress/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Stress/BoardConfig.h -------------------------------------------------------------------------------- /configs/Stress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Stress/README.md -------------------------------------------------------------------------------- /configs/Stress/assets/stress-00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Stress/assets/stress-00.jpg -------------------------------------------------------------------------------- /configs/Stress/stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/Stress/stress.h -------------------------------------------------------------------------------- /configs/WaveshareZero/BoardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/WaveshareZero/BoardConfig.h -------------------------------------------------------------------------------- /configs/WaveshareZero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/WaveshareZero/README.md -------------------------------------------------------------------------------- /configs/WaveshareZero/WaveshareRP2040Zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/WaveshareZero/WaveshareRP2040Zero.png -------------------------------------------------------------------------------- /configs/WaveshareZero/wavesharezero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/configs/WaveshareZero/wavesharezero.h -------------------------------------------------------------------------------- /docs/ddi-socd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/docs/ddi-socd.md -------------------------------------------------------------------------------- /headers/addonmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addonmanager.h -------------------------------------------------------------------------------- /headers/addons/analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/analog.h -------------------------------------------------------------------------------- /headers/addons/board_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/board_led.h -------------------------------------------------------------------------------- /headers/addons/bootsel_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/bootsel_button.h -------------------------------------------------------------------------------- /headers/addons/buzzerspeaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/buzzerspeaker.h -------------------------------------------------------------------------------- /headers/addons/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/display.h -------------------------------------------------------------------------------- /headers/addons/dualdirectional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/dualdirectional.h -------------------------------------------------------------------------------- /headers/addons/focus_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/focus_mode.h -------------------------------------------------------------------------------- /headers/addons/i2canalog1219.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/i2canalog1219.h -------------------------------------------------------------------------------- /headers/addons/input_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/input_macro.h -------------------------------------------------------------------------------- /headers/addons/jslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/jslider.h -------------------------------------------------------------------------------- /headers/addons/keyboard_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/keyboard_host.h -------------------------------------------------------------------------------- /headers/addons/keyboard_host_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/keyboard_host_listener.h -------------------------------------------------------------------------------- /headers/addons/neopicoleds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/neopicoleds.h -------------------------------------------------------------------------------- /headers/addons/playernum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/playernum.h -------------------------------------------------------------------------------- /headers/addons/pleds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/pleds.h -------------------------------------------------------------------------------- /headers/addons/reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/reverse.h -------------------------------------------------------------------------------- /headers/addons/rotaryencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/rotaryencoder.h -------------------------------------------------------------------------------- /headers/addons/slider_socd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/slider_socd.h -------------------------------------------------------------------------------- /headers/addons/snes_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/snes_input.h -------------------------------------------------------------------------------- /headers/addons/spi_analog_ads1256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/spi_analog_ads1256.h -------------------------------------------------------------------------------- /headers/addons/tilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/tilt.h -------------------------------------------------------------------------------- /headers/addons/turbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/turbo.h -------------------------------------------------------------------------------- /headers/addons/wiiext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/addons/wiiext.h -------------------------------------------------------------------------------- /headers/bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/bitmaps.h -------------------------------------------------------------------------------- /headers/build_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/build_info.h -------------------------------------------------------------------------------- /headers/buttonlayouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/buttonlayouts.h -------------------------------------------------------------------------------- /headers/config_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/config_utils.h -------------------------------------------------------------------------------- /headers/configmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/configmanager.h -------------------------------------------------------------------------------- /headers/configs/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/configs/base64.h -------------------------------------------------------------------------------- /headers/configs/displayconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/configs/displayconfig.h -------------------------------------------------------------------------------- /headers/configs/serialconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/configs/serialconfig.h -------------------------------------------------------------------------------- /headers/configs/webconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/configs/webconfig.h -------------------------------------------------------------------------------- /headers/display/GPGFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/GPGFX.h -------------------------------------------------------------------------------- /headers/display/GPGFX_UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/GPGFX_UI.h -------------------------------------------------------------------------------- /headers/display/GPGFX_UI_layouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/GPGFX_UI_layouts.h -------------------------------------------------------------------------------- /headers/display/GPGFX_UI_screens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/GPGFX_UI_screens.h -------------------------------------------------------------------------------- /headers/display/GPGFX_UI_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/GPGFX_UI_types.h -------------------------------------------------------------------------------- /headers/display/GPGFX_UI_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/GPGFX_UI_widgets.h -------------------------------------------------------------------------------- /headers/display/GPGFX_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/GPGFX_core.h -------------------------------------------------------------------------------- /headers/display/GPGFX_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/GPGFX_types.h -------------------------------------------------------------------------------- /headers/display/fonts/GP_Font_Basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/fonts/GP_Font_Basic.h -------------------------------------------------------------------------------- /headers/display/fonts/GP_Font_Big.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/fonts/GP_Font_Big.h -------------------------------------------------------------------------------- /headers/display/fonts/GP_Font_Standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/fonts/GP_Font_Standard.h -------------------------------------------------------------------------------- /headers/display/ui/elements/GPButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/elements/GPButton.h -------------------------------------------------------------------------------- /headers/display/ui/elements/GPLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/elements/GPLabel.h -------------------------------------------------------------------------------- /headers/display/ui/elements/GPLever.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/elements/GPLever.h -------------------------------------------------------------------------------- /headers/display/ui/elements/GPScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/elements/GPScreen.h -------------------------------------------------------------------------------- /headers/display/ui/elements/GPShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/elements/GPShape.h -------------------------------------------------------------------------------- /headers/display/ui/elements/GPSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/elements/GPSprite.h -------------------------------------------------------------------------------- /headers/display/ui/elements/GPWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/elements/GPWidget.h -------------------------------------------------------------------------------- /headers/display/ui/screens/ButtonLayoutScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/screens/ButtonLayoutScreen.h -------------------------------------------------------------------------------- /headers/display/ui/screens/ConfigScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/screens/ConfigScreen.h -------------------------------------------------------------------------------- /headers/display/ui/screens/MainMenuScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/screens/MainMenuScreen.h -------------------------------------------------------------------------------- /headers/display/ui/screens/SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/display/ui/screens/SplashScreen.h -------------------------------------------------------------------------------- /headers/drivermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivermanager.h -------------------------------------------------------------------------------- /headers/drivers/astro/AstroDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/astro/AstroDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/astro/AstroDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/astro/AstroDriver.h -------------------------------------------------------------------------------- /headers/drivers/egret/EgretDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/egret/EgretDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/egret/EgretDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/egret/EgretDriver.h -------------------------------------------------------------------------------- /headers/drivers/hid/HIDDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/hid/HIDDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/hid/HIDDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/hid/HIDDriver.h -------------------------------------------------------------------------------- /headers/drivers/keyboard/KeyboardDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/keyboard/KeyboardDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/keyboard/KeyboardDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/keyboard/KeyboardDriver.h -------------------------------------------------------------------------------- /headers/drivers/mdmini/MDMiniDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/mdmini/MDMiniDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/mdmini/MDMiniDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/mdmini/MDMiniDriver.h -------------------------------------------------------------------------------- /headers/drivers/neogeo/NeoGeoDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/neogeo/NeoGeoDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/neogeo/NeoGeoDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/neogeo/NeoGeoDriver.h -------------------------------------------------------------------------------- /headers/drivers/net/NetDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/net/NetDriver.h -------------------------------------------------------------------------------- /headers/drivers/pcengine/PCEngineDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/pcengine/PCEngineDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/pcengine/PCEngineDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/pcengine/PCEngineDriver.h -------------------------------------------------------------------------------- /headers/drivers/ps4/PS4Auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/ps4/PS4Auth.h -------------------------------------------------------------------------------- /headers/drivers/ps4/PS4AuthUSBListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/ps4/PS4AuthUSBListener.h -------------------------------------------------------------------------------- /headers/drivers/ps4/PS4Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/ps4/PS4Descriptors.h -------------------------------------------------------------------------------- /headers/drivers/ps4/PS4Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/ps4/PS4Driver.h -------------------------------------------------------------------------------- /headers/drivers/psclassic/PSClassicDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/psclassic/PSClassicDriver.h -------------------------------------------------------------------------------- /headers/drivers/shared/driverhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/shared/driverhelper.h -------------------------------------------------------------------------------- /headers/drivers/shared/gpauthdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/shared/gpauthdriver.h -------------------------------------------------------------------------------- /headers/drivers/shared/xgip_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/shared/xgip_protocol.h -------------------------------------------------------------------------------- /headers/drivers/shared/xinput_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/shared/xinput_host.h -------------------------------------------------------------------------------- /headers/drivers/switch/SwitchDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/switch/SwitchDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/switch/SwitchDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/switch/SwitchDriver.h -------------------------------------------------------------------------------- /headers/drivers/xbone/XBOneAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xbone/XBOneAuth.h -------------------------------------------------------------------------------- /headers/drivers/xbone/XBOneAuthUSBListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xbone/XBOneAuthUSBListener.h -------------------------------------------------------------------------------- /headers/drivers/xbone/XBOneDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xbone/XBOneDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/xbone/XBOneDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xbone/XBOneDriver.h -------------------------------------------------------------------------------- /headers/drivers/xboxog/XboxOriginalDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xboxog/XboxOriginalDriver.h -------------------------------------------------------------------------------- /headers/drivers/xboxog/xid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xboxog/xid/LICENSE -------------------------------------------------------------------------------- /headers/drivers/xboxog/xid/xid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xboxog/xid/xid.h -------------------------------------------------------------------------------- /headers/drivers/xboxog/xid/xid_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xboxog/xid/xid_driver.h -------------------------------------------------------------------------------- /headers/drivers/xboxog/xid/xid_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xboxog/xid/xid_gamepad.h -------------------------------------------------------------------------------- /headers/drivers/xboxog/xid/xid_remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xboxog/xid/xid_remote.h -------------------------------------------------------------------------------- /headers/drivers/xboxog/xid/xid_steelbattalion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xboxog/xid/xid_steelbattalion.h -------------------------------------------------------------------------------- /headers/drivers/xinput/XInputAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xinput/XInputAuth.h -------------------------------------------------------------------------------- /headers/drivers/xinput/XInputAuthUSBListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xinput/XInputAuthUSBListener.h -------------------------------------------------------------------------------- /headers/drivers/xinput/XInputDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xinput/XInputDescriptors.h -------------------------------------------------------------------------------- /headers/drivers/xinput/XInputDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/drivers/xinput/XInputDriver.h -------------------------------------------------------------------------------- /headers/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/enums.h -------------------------------------------------------------------------------- /headers/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/gamepad.h -------------------------------------------------------------------------------- /headers/gamepad/GamepadConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/gamepad/GamepadConfig.h -------------------------------------------------------------------------------- /headers/gamepad/GamepadEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/gamepad/GamepadEnums.h -------------------------------------------------------------------------------- /headers/gamepad/GamepadState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/gamepad/GamepadState.h -------------------------------------------------------------------------------- /headers/gp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/gp2040.h -------------------------------------------------------------------------------- /headers/gp2040aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/gp2040aux.h -------------------------------------------------------------------------------- /headers/gpaddon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/gpaddon.h -------------------------------------------------------------------------------- /headers/gpconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/gpconfig.h -------------------------------------------------------------------------------- /headers/gpdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/gpdriver.h -------------------------------------------------------------------------------- /headers/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/helper.h -------------------------------------------------------------------------------- /headers/interfaces/i2c/displaybase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/interfaces/i2c/displaybase.h -------------------------------------------------------------------------------- /headers/interfaces/i2c/ssd1306/obd_ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/interfaces/i2c/ssd1306/obd_ssd1306.h -------------------------------------------------------------------------------- /headers/interfaces/i2c/ssd1306/tiny_ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/interfaces/i2c/ssd1306/tiny_ssd1306.h -------------------------------------------------------------------------------- /headers/layoutmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/layoutmanager.h -------------------------------------------------------------------------------- /headers/mbedtls_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/mbedtls_config.h -------------------------------------------------------------------------------- /headers/peripheralmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/peripheralmanager.h -------------------------------------------------------------------------------- /headers/songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/songs.h -------------------------------------------------------------------------------- /headers/storagemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/storagemanager.h -------------------------------------------------------------------------------- /headers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/system.h -------------------------------------------------------------------------------- /headers/themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/themes.h -------------------------------------------------------------------------------- /headers/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/tusb_config.h -------------------------------------------------------------------------------- /headers/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/types.h -------------------------------------------------------------------------------- /headers/usbdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/usbdriver.h -------------------------------------------------------------------------------- /headers/usbhostmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/usbhostmanager.h -------------------------------------------------------------------------------- /headers/usblistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/usblistener.h -------------------------------------------------------------------------------- /headers/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/headers/version.h.in -------------------------------------------------------------------------------- /lib/ADS1219/ADS1219.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/ADS1219/ADS1219.cpp -------------------------------------------------------------------------------- /lib/ADS1219/ADS1219.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/ADS1219/ADS1219.h -------------------------------------------------------------------------------- /lib/ADS1219/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/ADS1219/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ADS1219/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/ADS1219/README.md -------------------------------------------------------------------------------- /lib/ADS1256/ADS1256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/ADS1256/ADS1256.cpp -------------------------------------------------------------------------------- /lib/ADS1256/ADS1256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/ADS1256/ADS1256.h -------------------------------------------------------------------------------- /lib/ADS1256/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/ADS1256/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ADS1256/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/ADS1256/LICENSE -------------------------------------------------------------------------------- /lib/ADS1256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/ADS1256/README.md -------------------------------------------------------------------------------- /lib/AnimationStation/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/.editorconfig -------------------------------------------------------------------------------- /lib/AnimationStation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/CMakeLists.txt -------------------------------------------------------------------------------- /lib/AnimationStation/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/library.json -------------------------------------------------------------------------------- /lib/AnimationStation/src/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/Animation.cpp -------------------------------------------------------------------------------- /lib/AnimationStation/src/Animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/Animation.hpp -------------------------------------------------------------------------------- /lib/AnimationStation/src/AnimationStation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/AnimationStation.cpp -------------------------------------------------------------------------------- /lib/AnimationStation/src/AnimationStation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/AnimationStation.hpp -------------------------------------------------------------------------------- /lib/AnimationStation/src/AnimationStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/AnimationStorage.hpp -------------------------------------------------------------------------------- /lib/AnimationStation/src/Effects/Chase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/Effects/Chase.cpp -------------------------------------------------------------------------------- /lib/AnimationStation/src/Effects/Chase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/Effects/Chase.hpp -------------------------------------------------------------------------------- /lib/AnimationStation/src/Effects/Rainbow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/Effects/Rainbow.cpp -------------------------------------------------------------------------------- /lib/AnimationStation/src/Effects/Rainbow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/Effects/Rainbow.hpp -------------------------------------------------------------------------------- /lib/AnimationStation/src/Pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/AnimationStation/src/Pixel.hpp -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/CRC32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/CRC32/CMakeLists.txt -------------------------------------------------------------------------------- /lib/CRC32/src/CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/CRC32/src/CRC32.cpp -------------------------------------------------------------------------------- /lib/CRC32/src/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/CRC32/src/CRC32.h -------------------------------------------------------------------------------- /lib/FlashPROM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/FlashPROM/CMakeLists.txt -------------------------------------------------------------------------------- /lib/FlashPROM/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/FlashPROM/library.json -------------------------------------------------------------------------------- /lib/FlashPROM/src/FlashPROM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/FlashPROM/src/FlashPROM.cpp -------------------------------------------------------------------------------- /lib/FlashPROM/src/FlashPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/FlashPROM/src/FlashPROM.h -------------------------------------------------------------------------------- /lib/NeoPico/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/NeoPico/.editorconfig -------------------------------------------------------------------------------- /lib/NeoPico/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/NeoPico/CMakeLists.txt -------------------------------------------------------------------------------- /lib/NeoPico/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/NeoPico/library.json -------------------------------------------------------------------------------- /lib/NeoPico/src/NeoPico.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/NeoPico/src/NeoPico.cpp -------------------------------------------------------------------------------- /lib/NeoPico/src/NeoPico.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/NeoPico/src/NeoPico.hpp -------------------------------------------------------------------------------- /lib/NeoPico/src/generated/ws2812.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/NeoPico/src/generated/ws2812.pio.h -------------------------------------------------------------------------------- /lib/NeoPico/src/ws2812.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/NeoPico/src/ws2812.pio -------------------------------------------------------------------------------- /lib/OneBitDisplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/OneBitDisplay/CMakeLists.txt -------------------------------------------------------------------------------- /lib/OneBitDisplay/OneBitDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/OneBitDisplay/OneBitDisplay.cpp -------------------------------------------------------------------------------- /lib/OneBitDisplay/OneBitDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/OneBitDisplay/OneBitDisplay.h -------------------------------------------------------------------------------- /lib/OneBitDisplay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/OneBitDisplay/README.md -------------------------------------------------------------------------------- /lib/OneBitDisplay/fonts/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/OneBitDisplay/fonts/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /lib/OneBitDisplay/obd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/OneBitDisplay/obd.inl -------------------------------------------------------------------------------- /lib/PicoPeripherals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PicoPeripherals/CMakeLists.txt -------------------------------------------------------------------------------- /lib/PicoPeripherals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PicoPeripherals/README.md -------------------------------------------------------------------------------- /lib/PicoPeripherals/peripheral_i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PicoPeripherals/peripheral_i2c.cpp -------------------------------------------------------------------------------- /lib/PicoPeripherals/peripheral_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PicoPeripherals/peripheral_i2c.h -------------------------------------------------------------------------------- /lib/PicoPeripherals/peripheral_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PicoPeripherals/peripheral_spi.cpp -------------------------------------------------------------------------------- /lib/PicoPeripherals/peripheral_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PicoPeripherals/peripheral_spi.h -------------------------------------------------------------------------------- /lib/PicoPeripherals/peripheral_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PicoPeripherals/peripheral_usb.cpp -------------------------------------------------------------------------------- /lib/PicoPeripherals/peripheral_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PicoPeripherals/peripheral_usb.h -------------------------------------------------------------------------------- /lib/PlayerLEDs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PlayerLEDs/CMakeLists.txt -------------------------------------------------------------------------------- /lib/PlayerLEDs/src/PlayerLEDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PlayerLEDs/src/PlayerLEDs.cpp -------------------------------------------------------------------------------- /lib/PlayerLEDs/src/PlayerLEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/PlayerLEDs/src/PlayerLEDs.h -------------------------------------------------------------------------------- /lib/SNESpad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/SNESpad/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SNESpad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/SNESpad/README.md -------------------------------------------------------------------------------- /lib/SNESpad/SNESpad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/SNESpad/SNESpad.cpp -------------------------------------------------------------------------------- /lib/SNESpad/SNESpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/SNESpad/SNESpad.h -------------------------------------------------------------------------------- /lib/WiiExtension/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/CMakeLists.txt -------------------------------------------------------------------------------- /lib/WiiExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/README.md -------------------------------------------------------------------------------- /lib/WiiExtension/WiiExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/WiiExtension.cpp -------------------------------------------------------------------------------- /lib/WiiExtension/WiiExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/WiiExtension.h -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/ClassicExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/ClassicExtension.h -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/DrumExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/DrumExtension.cpp -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/DrumExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/DrumExtension.h -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/ExtensionBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/ExtensionBase.cpp -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/ExtensionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/ExtensionBase.h -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/Extensions.h -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/GuitarExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/GuitarExtension.cpp -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/GuitarExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/GuitarExtension.h -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/NunchuckExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/NunchuckExtension.h -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/TaikoExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/TaikoExtension.cpp -------------------------------------------------------------------------------- /lib/WiiExtension/extensions/TaikoExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/WiiExtension/extensions/TaikoExtension.h -------------------------------------------------------------------------------- /lib/httpd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/httpd/CMakeLists.txt -------------------------------------------------------------------------------- /lib/httpd/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/httpd/fs.c -------------------------------------------------------------------------------- /lib/httpd/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/httpd/fs.h -------------------------------------------------------------------------------- /lib/httpd/fscustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/httpd/fscustom.h -------------------------------------------------------------------------------- /lib/httpd/fsdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/httpd/fsdata.h -------------------------------------------------------------------------------- /lib/lwip-port/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/lwip-port/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lwip-port/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/lwip-port/arch/cc.h -------------------------------------------------------------------------------- /lib/lwip-port/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/lwip-port/lwipopts.h -------------------------------------------------------------------------------- /lib/nanopb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/.gitignore -------------------------------------------------------------------------------- /lib/nanopb/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/AUTHORS.txt -------------------------------------------------------------------------------- /lib/nanopb/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/BUILD.bazel -------------------------------------------------------------------------------- /lib/nanopb/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/CHANGELOG.txt -------------------------------------------------------------------------------- /lib/nanopb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/CMakeLists.txt -------------------------------------------------------------------------------- /lib/nanopb/CMakeLists.txt.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/CMakeLists.txt.original -------------------------------------------------------------------------------- /lib/nanopb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /lib/nanopb/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/Package.swift -------------------------------------------------------------------------------- /lib/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/README.md -------------------------------------------------------------------------------- /lib/nanopb/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/WORKSPACE -------------------------------------------------------------------------------- /lib/nanopb/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/build.py -------------------------------------------------------------------------------- /lib/nanopb/conan-wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/conan-wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /lib/nanopb/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/conanfile.py -------------------------------------------------------------------------------- /lib/nanopb/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/Makefile -------------------------------------------------------------------------------- /lib/nanopb/docs/bazel_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/bazel_build.md -------------------------------------------------------------------------------- /lib/nanopb/docs/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/concepts.md -------------------------------------------------------------------------------- /lib/nanopb/docs/generator_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/generator_flow.svg -------------------------------------------------------------------------------- /lib/nanopb/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/index.md -------------------------------------------------------------------------------- /lib/nanopb/docs/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/logo/logo.png -------------------------------------------------------------------------------- /lib/nanopb/docs/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/logo/logo.svg -------------------------------------------------------------------------------- /lib/nanopb/docs/logo/logo16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/logo/logo16px.png -------------------------------------------------------------------------------- /lib/nanopb/docs/logo/logo48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/logo/logo48px.png -------------------------------------------------------------------------------- /lib/nanopb/docs/lsr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/lsr.css -------------------------------------------------------------------------------- /lib/nanopb/docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/migration.md -------------------------------------------------------------------------------- /lib/nanopb/docs/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/reference.md -------------------------------------------------------------------------------- /lib/nanopb/docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/security.md -------------------------------------------------------------------------------- /lib/nanopb/docs/whats_new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/docs/whats_new.md -------------------------------------------------------------------------------- /lib/nanopb/examples/cmake_relpath/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/cmake_relpath/README.txt -------------------------------------------------------------------------------- /lib/nanopb/examples/cmake_relpath/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/cmake_relpath/simple.c -------------------------------------------------------------------------------- /lib/nanopb/examples/cmake_simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/cmake_simple/CMakeLists.txt -------------------------------------------------------------------------------- /lib/nanopb/examples/cmake_simple/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/cmake_simple/README.txt -------------------------------------------------------------------------------- /lib/nanopb/examples/cmake_simple/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/cmake_simple/simple.c -------------------------------------------------------------------------------- /lib/nanopb/examples/cmake_simple/simple.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/cmake_simple/simple.proto -------------------------------------------------------------------------------- /lib/nanopb/examples/conan_dependency/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /lib/nanopb/examples/conan_dependency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/conan_dependency/README.md -------------------------------------------------------------------------------- /lib/nanopb/examples/network_server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/network_server/Makefile -------------------------------------------------------------------------------- /lib/nanopb/examples/network_server/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/network_server/README.txt -------------------------------------------------------------------------------- /lib/nanopb/examples/network_server/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/network_server/client.c -------------------------------------------------------------------------------- /lib/nanopb/examples/network_server/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/network_server/common.c -------------------------------------------------------------------------------- /lib/nanopb/examples/network_server/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/network_server/common.h -------------------------------------------------------------------------------- /lib/nanopb/examples/network_server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/network_server/server.c -------------------------------------------------------------------------------- /lib/nanopb/examples/platformio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/platformio/.gitignore -------------------------------------------------------------------------------- /lib/nanopb/examples/platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/platformio/platformio.ini -------------------------------------------------------------------------------- /lib/nanopb/examples/platformio/proto/pio_with_options.options: -------------------------------------------------------------------------------- 1 | TestMessageWithOptions.str max_size:16 2 | -------------------------------------------------------------------------------- /lib/nanopb/examples/platformio/src/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/platformio/src/test.h -------------------------------------------------------------------------------- /lib/nanopb/examples/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/simple/Makefile -------------------------------------------------------------------------------- /lib/nanopb/examples/simple/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/simple/README.txt -------------------------------------------------------------------------------- /lib/nanopb/examples/simple/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/simple/simple.c -------------------------------------------------------------------------------- /lib/nanopb/examples/simple/simple.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/examples/simple/simple.proto -------------------------------------------------------------------------------- /lib/nanopb/extra/FindNanopb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/FindNanopb.cmake -------------------------------------------------------------------------------- /lib/nanopb/extra/bazel/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nanopb/extra/bazel/nanopb_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/bazel/nanopb_deps.bzl -------------------------------------------------------------------------------- /lib/nanopb/extra/bazel/nanopb_workspace.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/bazel/nanopb_workspace.bzl -------------------------------------------------------------------------------- /lib/nanopb/extra/bazel/python_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/bazel/python_deps.bzl -------------------------------------------------------------------------------- /lib/nanopb/extra/nanopb-config-version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/nanopb-config-version.cmake.in -------------------------------------------------------------------------------- /lib/nanopb/extra/nanopb-config.cmake: -------------------------------------------------------------------------------- 1 | include(${CMAKE_CURRENT_LIST_DIR}/nanopb-targets.cmake) 2 | -------------------------------------------------------------------------------- /lib/nanopb/extra/nanopb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/nanopb.mk -------------------------------------------------------------------------------- /lib/nanopb/extra/pb_syshdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/pb_syshdr.h -------------------------------------------------------------------------------- /lib/nanopb/extra/poetry/poetry_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/poetry/poetry_build.sh -------------------------------------------------------------------------------- /lib/nanopb/extra/poetry/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/poetry/pyproject.toml -------------------------------------------------------------------------------- /lib/nanopb/extra/requirements.txt: -------------------------------------------------------------------------------- 1 | protobuf>=3.19 2 | grpcio-tools>=1.47.0 3 | -------------------------------------------------------------------------------- /lib/nanopb/extra/requirements_lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/extra/requirements_lock.txt -------------------------------------------------------------------------------- /lib/nanopb/generator/nanopb_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/nanopb_generator.py -------------------------------------------------------------------------------- /lib/nanopb/generator/nanopb_generator.py2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/nanopb_generator.py2 -------------------------------------------------------------------------------- /lib/nanopb/generator/platformio_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/platformio_generator.py -------------------------------------------------------------------------------- /lib/nanopb/generator/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/proto/Makefile -------------------------------------------------------------------------------- /lib/nanopb/generator/proto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/proto/__init__.py -------------------------------------------------------------------------------- /lib/nanopb/generator/proto/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/proto/_utils.py -------------------------------------------------------------------------------- /lib/nanopb/generator/proto/nanopb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/proto/nanopb.proto -------------------------------------------------------------------------------- /lib/nanopb/generator/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/protoc -------------------------------------------------------------------------------- /lib/nanopb/generator/protoc-gen-nanopb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/protoc-gen-nanopb -------------------------------------------------------------------------------- /lib/nanopb/generator/protoc-gen-nanopb-py2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/protoc-gen-nanopb-py2 -------------------------------------------------------------------------------- /lib/nanopb/generator/protoc-gen-nanopb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/protoc-gen-nanopb.bat -------------------------------------------------------------------------------- /lib/nanopb/generator/protoc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/generator/protoc.bat -------------------------------------------------------------------------------- /lib/nanopb/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/library.json -------------------------------------------------------------------------------- /lib/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/pb.h -------------------------------------------------------------------------------- /lib/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/pb_common.c -------------------------------------------------------------------------------- /lib/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/pb_common.h -------------------------------------------------------------------------------- /lib/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/pb_decode.c -------------------------------------------------------------------------------- /lib/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/pb_decode.h -------------------------------------------------------------------------------- /lib/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/pb_encode.c -------------------------------------------------------------------------------- /lib/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/pb_encode.h -------------------------------------------------------------------------------- /lib/nanopb/spm-test/objc/c-header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/spm-test/objc/c-header.c -------------------------------------------------------------------------------- /lib/nanopb/spm-test/objc/objc-header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/spm-test/objc/objc-header.m -------------------------------------------------------------------------------- /lib/nanopb/spm-test/objc/objc-module.m: -------------------------------------------------------------------------------- 1 | @import nanopb; 2 | -------------------------------------------------------------------------------- /lib/nanopb/spm-test/objc/objc-qualified.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/spm-test/objc/objc-qualified.m -------------------------------------------------------------------------------- /lib/nanopb/spm-test/swift/main.swift: -------------------------------------------------------------------------------- 1 | import nanopb 2 | -------------------------------------------------------------------------------- /lib/nanopb/spm_headers/nanopb/pb.h: -------------------------------------------------------------------------------- 1 | ../../pb.h -------------------------------------------------------------------------------- /lib/nanopb/spm_headers/nanopb/pb_common.h: -------------------------------------------------------------------------------- 1 | ../../pb_common.h -------------------------------------------------------------------------------- /lib/nanopb/spm_headers/nanopb/pb_decode.h: -------------------------------------------------------------------------------- 1 | ../../pb_decode.h -------------------------------------------------------------------------------- /lib/nanopb/spm_headers/nanopb/pb_encode.h: -------------------------------------------------------------------------------- 1 | ../../pb_encode.h -------------------------------------------------------------------------------- /lib/nanopb/spm_headers/pb.h: -------------------------------------------------------------------------------- 1 | #include "nanopb/pb.h" 2 | -------------------------------------------------------------------------------- /lib/nanopb/spm_headers/pb_common.h: -------------------------------------------------------------------------------- 1 | #include "nanopb/pb_common.h" 2 | -------------------------------------------------------------------------------- /lib/nanopb/spm_headers/pb_decode.h: -------------------------------------------------------------------------------- 1 | #include "nanopb/pb_decode.h" 2 | -------------------------------------------------------------------------------- /lib/nanopb/spm_headers/pb_encode.h: -------------------------------------------------------------------------------- 1 | #include "nanopb/pb_encode.h" 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/Makefile -------------------------------------------------------------------------------- /lib/nanopb/tests/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/SConstruct -------------------------------------------------------------------------------- /lib/nanopb/tests/alltypes/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/alltypes/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/alltypes/alltypes.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/alltypes/alltypes.options -------------------------------------------------------------------------------- /lib/nanopb/tests/alltypes/alltypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/alltypes/alltypes.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/alltypes/decode_alltypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/alltypes/decode_alltypes.c -------------------------------------------------------------------------------- /lib/nanopb/tests/alltypes/encode_alltypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/alltypes/encode_alltypes.c -------------------------------------------------------------------------------- /lib/nanopb/tests/alltypes_callback/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/alltypes_callback/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/alltypes_pointer/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/alltypes_pointer/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/alltypes_proto3/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/alltypes_proto3/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/alltypes_proto3/alltypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/alltypes_proto3/alltypes.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/anonymous_oneof/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/anonymous_oneof/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/anonymous_oneof/decode_oneof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/anonymous_oneof/decode_oneof.c -------------------------------------------------------------------------------- /lib/nanopb/tests/anonymous_oneof/oneof.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/anonymous_oneof/oneof.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/any_type/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/any_type/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/any_type/anytest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/any_type/anytest.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/any_type/decode_any.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/any_type/decode_any.c -------------------------------------------------------------------------------- /lib/nanopb/tests/any_type/encode_any.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/any_type/encode_any.c -------------------------------------------------------------------------------- /lib/nanopb/tests/basic_buffer/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/basic_buffer/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/basic_buffer/decode_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/basic_buffer/decode_buffer.c -------------------------------------------------------------------------------- /lib/nanopb/tests/basic_buffer/encode_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/basic_buffer/encode_buffer.c -------------------------------------------------------------------------------- /lib/nanopb/tests/basic_stream/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/basic_stream/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/basic_stream/decode_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/basic_stream/decode_stream.c -------------------------------------------------------------------------------- /lib/nanopb/tests/basic_stream/encode_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/basic_stream/encode_stream.c -------------------------------------------------------------------------------- /lib/nanopb/tests/buffer_only/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/buffer_only/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/callbacks/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/callbacks/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/callbacks/callbacks.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/callbacks/callbacks.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/callbacks/decode_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/callbacks/decode_callbacks.c -------------------------------------------------------------------------------- /lib/nanopb/tests/comments/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/comments/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/comments/comments.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/comments/comments.expected -------------------------------------------------------------------------------- /lib/nanopb/tests/comments/comments.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/comments/comments.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/common/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/common/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/common/malloc_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/common/malloc_wrappers.c -------------------------------------------------------------------------------- /lib/nanopb/tests/common/malloc_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/common/malloc_wrappers.h -------------------------------------------------------------------------------- /lib/nanopb/tests/common/person.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/common/person.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/common/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/common/test_helpers.h -------------------------------------------------------------------------------- /lib/nanopb/tests/common/unittestproto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/common/unittestproto.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/common/unittests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/common/unittests.h -------------------------------------------------------------------------------- /lib/nanopb/tests/common_unittests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/common_unittests/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/cxx_descriptor/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/cxx_descriptor/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/cxx_main_program/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/cxx_main_program/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/cyclic_messages/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/cyclic_messages/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/decode_unittests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/decode_unittests/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/docker_images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/docker_images/README.md -------------------------------------------------------------------------------- /lib/nanopb/tests/docker_images/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/docker_images/build_all.sh -------------------------------------------------------------------------------- /lib/nanopb/tests/encode_unittests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/encode_unittests/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/enum_mapping/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/enum_mapping/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/enum_minmax/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/enum_minmax/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/enum_sizes/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/enum_sizes/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/enum_sizes/enumsizes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/enum_sizes/enumsizes.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/enum_to_string/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/enum_to_string/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/enum_to_string/enum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/enum_to_string/enum.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/extensions/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/extensions/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/extensions/extensions.options: -------------------------------------------------------------------------------- 1 | * max_size:16 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/extensions/extensions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/extensions/extensions.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/extra_fields/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/extra_fields/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/fallback_type/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fallback_type/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/fallback_type/fallback_type.options: -------------------------------------------------------------------------------- 1 | Message1.member2 fallback_type:FT_POINTER 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/field_size_16/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/field_size_16/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/field_size_32/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/field_size_32/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/fixed_count/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fixed_count/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/corpus.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/corpus.zip -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/flakystream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/flakystream.c -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/flakystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/flakystream.h -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/fuzztest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/fuzztest.c -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/generate_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/generate_message.c -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/ossfuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/ossfuzz.sh -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/random_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/random_data.c -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/random_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/random_data.h -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/regressions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/regressions.zip -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/update_corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/update_corpus.sh -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/validation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/validation.c -------------------------------------------------------------------------------- /lib/nanopb/tests/fuzztest/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/fuzztest/validation.h -------------------------------------------------------------------------------- /lib/nanopb/tests/generator_relative_paths/any.expected: -------------------------------------------------------------------------------- 1 | Any 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/generator_relative_paths/simple.expected: -------------------------------------------------------------------------------- 1 | SimpleMessage 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/generator_relative_paths/test.expected: -------------------------------------------------------------------------------- 1 | TestMessage 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/infinity_nan/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/infinity_nan/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/infinity_nan/floats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/infinity_nan/floats.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/inline/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/inline/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/inline/inline.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/inline/inline.expected -------------------------------------------------------------------------------- /lib/nanopb/tests/inline/inline.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/inline/inline.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/inline/inline_unittests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/inline/inline_unittests.c -------------------------------------------------------------------------------- /lib/nanopb/tests/intsizes/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/intsizes/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/intsizes/intsizes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/intsizes/intsizes.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/io_errors/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/io_errors/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/io_errors/alltypes.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/io_errors/alltypes.options -------------------------------------------------------------------------------- /lib/nanopb/tests/io_errors/io_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/io_errors/io_errors.c -------------------------------------------------------------------------------- /lib/nanopb/tests/map/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/map/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/map/decode_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/map/decode_map.c -------------------------------------------------------------------------------- /lib/nanopb/tests/map/encode_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/map/encode_map.c -------------------------------------------------------------------------------- /lib/nanopb/tests/map/map.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/map/map.options -------------------------------------------------------------------------------- /lib/nanopb/tests/map/map.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/map/map.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/mem_release/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/mem_release/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/mem_release/mem_release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/mem_release/mem_release.c -------------------------------------------------------------------------------- /lib/nanopb/tests/message_sizes/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/message_sizes/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/message_sizes/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/message_sizes/dummy.c -------------------------------------------------------------------------------- /lib/nanopb/tests/missing_fields/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/missing_fields/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/msgid/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/msgid/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/msgid/decode_msgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/msgid/decode_msgid.c -------------------------------------------------------------------------------- /lib/nanopb/tests/msgid/encode_msgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/msgid/encode_msgid.c -------------------------------------------------------------------------------- /lib/nanopb/tests/msgid/msgid_example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/msgid/msgid_example.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/multiple_files/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/multiple_files/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/multiple_files/multifile1.options: -------------------------------------------------------------------------------- 1 | StaticMessage.repint32 max_count:5 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/namingstyle/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/namingstyle/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/no_errmsg/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/no_errmsg/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/no_messages/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/no_messages/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/oneof/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/oneof/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/oneof/decode_oneof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/oneof/decode_oneof.c -------------------------------------------------------------------------------- /lib/nanopb/tests/oneof/encode_oneof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/oneof/encode_oneof.c -------------------------------------------------------------------------------- /lib/nanopb/tests/oneof/oneof.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/oneof/oneof.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/oneof_callback/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/oneof_callback/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/oneof_callback/oneof.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/oneof_callback/oneof.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/options/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/options/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/options/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/options/options.c -------------------------------------------------------------------------------- /lib/nanopb/tests/options/options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/options/options.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/options/options_c.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/options/options_c.expected -------------------------------------------------------------------------------- /lib/nanopb/tests/options/options_h.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/options/options_h.expected -------------------------------------------------------------------------------- /lib/nanopb/tests/package_name/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/package_name/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/proto3_optional/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/proto3_optional/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/proto3_optional/optional.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/proto3_optional/optional.c -------------------------------------------------------------------------------- /lib/nanopb/tests/raw_decode/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/raw_decode/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/raw_decode/raw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/raw_decode/raw_decode.c -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_172/submessage/submessage.options: -------------------------------------------------------------------------------- 1 | submessage.data max_size: 16 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_195/test.expected: -------------------------------------------------------------------------------- 1 | /\* TestMessage_size depends 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_249/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/regression/issue_249/test.c -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_380/manglenames.options: -------------------------------------------------------------------------------- 1 | * mangle_names:M_STRIP_PACKAGE 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_395/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/regression/issue_395/test.c -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_453/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/regression/issue_453/test.c -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_504/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/regression/issue_504/test.c -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_547/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/regression/issue_547/test.c -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_610/first.expected: -------------------------------------------------------------------------------- 1 | define First_size\s*4 2 | 3 | -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_631/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/regression/issue_631/test.c -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_637/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/regression/issue_637/test.c -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_692/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/regression/issue_692/test.c -------------------------------------------------------------------------------- /lib/nanopb/tests/regression/issue_783/folder_A/file_A.options: -------------------------------------------------------------------------------- 1 | * mangle_names:M_STRIP_PACKAGE 2 | -------------------------------------------------------------------------------- /lib/nanopb/tests/site_scons/platforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nanopb/tests/site_scons/platforms/avr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nanopb/tests/site_scons/platforms/mips/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nanopb/tests/site_scons/platforms/mipsel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nanopb/tests/site_scons/platforms/riscv64/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nanopb/tests/site_scons/platforms/stm32/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nanopb/tests/site_scons/site_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/site_scons/site_init.py -------------------------------------------------------------------------------- /lib/nanopb/tests/sort_by_tag/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/sort_by_tag/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/sort_by_tag/sort_by_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/sort_by_tag/sort_by_tag.c -------------------------------------------------------------------------------- /lib/nanopb/tests/special_characters/funny-proto+name has.characters.options: -------------------------------------------------------------------------------- 1 | // Unicode comment эмйÅÄÖ 2 | * max_count:10 3 | 4 | -------------------------------------------------------------------------------- /lib/nanopb/tests/special_characters/specchars.expected: -------------------------------------------------------------------------------- 1 | int32_t x\[10\]; 2 | Unicode comment эмйÅÄÖ 3 | 4 | -------------------------------------------------------------------------------- /lib/nanopb/tests/splint/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/splint/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/splint/splint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/splint/splint.rc -------------------------------------------------------------------------------- /lib/nanopb/tests/stackusage/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/stackusage/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/stackusage/stackusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/stackusage/stackusage.c -------------------------------------------------------------------------------- /lib/nanopb/tests/stackusage/stackusage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/stackusage/stackusage.proto -------------------------------------------------------------------------------- /lib/nanopb/tests/validate_utf8/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/validate_utf8/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tests/without_64bit/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tests/without_64bit/SConscript -------------------------------------------------------------------------------- /lib/nanopb/tools/list_authors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tools/list_authors.sh -------------------------------------------------------------------------------- /lib/nanopb/tools/make_linux_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tools/make_linux_package.sh -------------------------------------------------------------------------------- /lib/nanopb/tools/make_mac_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tools/make_mac_package.sh -------------------------------------------------------------------------------- /lib/nanopb/tools/make_windows_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tools/make_windows_package.sh -------------------------------------------------------------------------------- /lib/nanopb/tools/set_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/nanopb/tools/set_version.sh -------------------------------------------------------------------------------- /lib/rndis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/rndis/CMakeLists.txt -------------------------------------------------------------------------------- /lib/rndis/rndis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/rndis/rndis.c -------------------------------------------------------------------------------- /lib/rndis/rndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/lib/rndis/rndis.h -------------------------------------------------------------------------------- /modules/FindNPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/modules/FindNPM.cmake -------------------------------------------------------------------------------- /modules/FindNodeJS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/modules/FindNodeJS.cmake -------------------------------------------------------------------------------- /pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/pico_sdk_import.cmake -------------------------------------------------------------------------------- /proto/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/proto/config.proto -------------------------------------------------------------------------------- /proto/enums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/proto/enums.proto -------------------------------------------------------------------------------- /src/addonmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addonmanager.cpp -------------------------------------------------------------------------------- /src/addons/analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/analog.cpp -------------------------------------------------------------------------------- /src/addons/board_led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/board_led.cpp -------------------------------------------------------------------------------- /src/addons/bootsel_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/bootsel_button.cpp -------------------------------------------------------------------------------- /src/addons/buzzerspeaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/buzzerspeaker.cpp -------------------------------------------------------------------------------- /src/addons/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/display.cpp -------------------------------------------------------------------------------- /src/addons/dualdirectional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/dualdirectional.cpp -------------------------------------------------------------------------------- /src/addons/focus_mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/focus_mode.cpp -------------------------------------------------------------------------------- /src/addons/i2canalog1219.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/i2canalog1219.cpp -------------------------------------------------------------------------------- /src/addons/input_macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/input_macro.cpp -------------------------------------------------------------------------------- /src/addons/jslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/jslider.cpp -------------------------------------------------------------------------------- /src/addons/keyboard_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/keyboard_host.cpp -------------------------------------------------------------------------------- /src/addons/keyboard_host_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/keyboard_host_listener.cpp -------------------------------------------------------------------------------- /src/addons/neopicoleds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/neopicoleds.cpp -------------------------------------------------------------------------------- /src/addons/playerleds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/playerleds.cpp -------------------------------------------------------------------------------- /src/addons/playernum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/playernum.cpp -------------------------------------------------------------------------------- /src/addons/reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/reverse.cpp -------------------------------------------------------------------------------- /src/addons/rotaryencoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/rotaryencoder.cpp -------------------------------------------------------------------------------- /src/addons/slider_socd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/slider_socd.cpp -------------------------------------------------------------------------------- /src/addons/snes_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/snes_input.cpp -------------------------------------------------------------------------------- /src/addons/spi_analog_ads1256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/spi_analog_ads1256.cpp -------------------------------------------------------------------------------- /src/addons/tilt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/tilt.cpp -------------------------------------------------------------------------------- /src/addons/turbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/turbo.cpp -------------------------------------------------------------------------------- /src/addons/wiiext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/addons/wiiext.cpp -------------------------------------------------------------------------------- /src/config_legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/config_legacy.cpp -------------------------------------------------------------------------------- /src/config_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/config_utils.cpp -------------------------------------------------------------------------------- /src/configmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/configmanager.cpp -------------------------------------------------------------------------------- /src/configs/webconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/configs/webconfig.cpp -------------------------------------------------------------------------------- /src/display/GPGFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/GPGFX.cpp -------------------------------------------------------------------------------- /src/display/GPGFX_UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/GPGFX_UI.cpp -------------------------------------------------------------------------------- /src/display/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/README.md -------------------------------------------------------------------------------- /src/display/ui/elements/GPButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/ui/elements/GPButton.cpp -------------------------------------------------------------------------------- /src/display/ui/elements/GPLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/ui/elements/GPLabel.cpp -------------------------------------------------------------------------------- /src/display/ui/elements/GPLever.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/ui/elements/GPLever.cpp -------------------------------------------------------------------------------- /src/display/ui/elements/GPScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/ui/elements/GPScreen.cpp -------------------------------------------------------------------------------- /src/display/ui/elements/GPShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/ui/elements/GPShape.cpp -------------------------------------------------------------------------------- /src/display/ui/elements/GPSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/ui/elements/GPSprite.cpp -------------------------------------------------------------------------------- /src/display/ui/elements/GPWidget.cpp: -------------------------------------------------------------------------------- 1 | #include "GPWidget.h" 2 | 3 | -------------------------------------------------------------------------------- /src/display/ui/screens/ConfigScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/ui/screens/ConfigScreen.cpp -------------------------------------------------------------------------------- /src/display/ui/screens/MainMenuScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/ui/screens/MainMenuScreen.cpp -------------------------------------------------------------------------------- /src/display/ui/screens/SplashScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/display/ui/screens/SplashScreen.cpp -------------------------------------------------------------------------------- /src/drivermanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivermanager.cpp -------------------------------------------------------------------------------- /src/drivers/astro/AstroDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/astro/AstroDriver.cpp -------------------------------------------------------------------------------- /src/drivers/egret/EgretDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/egret/EgretDriver.cpp -------------------------------------------------------------------------------- /src/drivers/hid/HIDDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/hid/HIDDriver.cpp -------------------------------------------------------------------------------- /src/drivers/keyboard/KeyboardDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/keyboard/KeyboardDriver.cpp -------------------------------------------------------------------------------- /src/drivers/mdmini/MDMiniDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/mdmini/MDMiniDriver.cpp -------------------------------------------------------------------------------- /src/drivers/neogeo/NeoGeoDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/neogeo/NeoGeoDriver.cpp -------------------------------------------------------------------------------- /src/drivers/net/NetDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/net/NetDriver.cpp -------------------------------------------------------------------------------- /src/drivers/pcengine/PCEngineDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/pcengine/PCEngineDriver.cpp -------------------------------------------------------------------------------- /src/drivers/ps4/PS4Auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/ps4/PS4Auth.cpp -------------------------------------------------------------------------------- /src/drivers/ps4/PS4AuthUSBListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/ps4/PS4AuthUSBListener.cpp -------------------------------------------------------------------------------- /src/drivers/ps4/PS4Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/ps4/PS4Driver.cpp -------------------------------------------------------------------------------- /src/drivers/psclassic/PSClassicDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/psclassic/PSClassicDriver.cpp -------------------------------------------------------------------------------- /src/drivers/shared/xgip_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/shared/xgip_protocol.cpp -------------------------------------------------------------------------------- /src/drivers/shared/xinput_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/shared/xinput_host.cpp -------------------------------------------------------------------------------- /src/drivers/switch/SwitchDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/switch/SwitchDriver.cpp -------------------------------------------------------------------------------- /src/drivers/xbone/XBOneAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xbone/XBOneAuth.cpp -------------------------------------------------------------------------------- /src/drivers/xbone/XBOneAuthUSBListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xbone/XBOneAuthUSBListener.cpp -------------------------------------------------------------------------------- /src/drivers/xbone/XBOneDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xbone/XBOneDriver.cpp -------------------------------------------------------------------------------- /src/drivers/xboxog/XboxOriginalDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xboxog/XboxOriginalDriver.cpp -------------------------------------------------------------------------------- /src/drivers/xboxog/xid/xid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xboxog/xid/xid.c -------------------------------------------------------------------------------- /src/drivers/xboxog/xid/xid_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xboxog/xid/xid_driver.c -------------------------------------------------------------------------------- /src/drivers/xboxog/xid/xid_gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xboxog/xid/xid_gamepad.c -------------------------------------------------------------------------------- /src/drivers/xboxog/xid/xid_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xboxog/xid/xid_remote.c -------------------------------------------------------------------------------- /src/drivers/xboxog/xid/xid_steelbattalion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xboxog/xid/xid_steelbattalion.c -------------------------------------------------------------------------------- /src/drivers/xinput/XInputAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xinput/XInputAuth.cpp -------------------------------------------------------------------------------- /src/drivers/xinput/XInputAuthUSBListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xinput/XInputAuthUSBListener.cpp -------------------------------------------------------------------------------- /src/drivers/xinput/XInputDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/drivers/xinput/XInputDriver.cpp -------------------------------------------------------------------------------- /src/gamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/gamepad.cpp -------------------------------------------------------------------------------- /src/gamepad/GamepadState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/gamepad/GamepadState.cpp -------------------------------------------------------------------------------- /src/gp2040.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/gp2040.cpp -------------------------------------------------------------------------------- /src/gp2040aux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/gp2040aux.cpp -------------------------------------------------------------------------------- /src/interfaces/i2c/ssd1306/obd_ssd1306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/interfaces/i2c/ssd1306/obd_ssd1306.cpp -------------------------------------------------------------------------------- /src/interfaces/i2c/ssd1306/tiny_ssd1306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/interfaces/i2c/ssd1306/tiny_ssd1306.cpp -------------------------------------------------------------------------------- /src/layoutmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/layoutmanager.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/peripheralmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/peripheralmanager.cpp -------------------------------------------------------------------------------- /src/storagemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/storagemanager.cpp -------------------------------------------------------------------------------- /src/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/system.cpp -------------------------------------------------------------------------------- /src/usbdriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/usbdriver.cpp -------------------------------------------------------------------------------- /src/usbhostmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/src/usbhostmanager.cpp -------------------------------------------------------------------------------- /www/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/.env -------------------------------------------------------------------------------- /www/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/.eslintrc.yml -------------------------------------------------------------------------------- /www/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/.gitignore -------------------------------------------------------------------------------- /www/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/README.md -------------------------------------------------------------------------------- /www/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/env.d.ts -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/index.html -------------------------------------------------------------------------------- /www/makefsdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/makefsdata.js -------------------------------------------------------------------------------- /www/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/package-lock.json -------------------------------------------------------------------------------- /www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/package.json -------------------------------------------------------------------------------- /www/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/public/favicon.ico -------------------------------------------------------------------------------- /www/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/public/images/logo.png -------------------------------------------------------------------------------- /www/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/public/manifest.json -------------------------------------------------------------------------------- /www/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/server/app.js -------------------------------------------------------------------------------- /www/src/Addons/Analog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Analog.tsx -------------------------------------------------------------------------------- /www/src/Addons/Analog1256.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Analog1256.tsx -------------------------------------------------------------------------------- /www/src/Addons/Bootsel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Bootsel.tsx -------------------------------------------------------------------------------- /www/src/Addons/Buzzer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Buzzer.tsx -------------------------------------------------------------------------------- /www/src/Addons/DualDirection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/DualDirection.tsx -------------------------------------------------------------------------------- /www/src/Addons/FocusMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/FocusMode.tsx -------------------------------------------------------------------------------- /www/src/Addons/I2CAnalog1219.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/I2CAnalog1219.tsx -------------------------------------------------------------------------------- /www/src/Addons/InputHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/InputHistory.tsx -------------------------------------------------------------------------------- /www/src/Addons/Joystick.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Joystick.tsx -------------------------------------------------------------------------------- /www/src/Addons/Keyboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Keyboard.tsx -------------------------------------------------------------------------------- /www/src/Addons/OnBoardLed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/OnBoardLed.tsx -------------------------------------------------------------------------------- /www/src/Addons/PlayerNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/PlayerNumber.tsx -------------------------------------------------------------------------------- /www/src/Addons/Reverse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Reverse.tsx -------------------------------------------------------------------------------- /www/src/Addons/Rotary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Rotary.tsx -------------------------------------------------------------------------------- /www/src/Addons/SNES.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/SNES.tsx -------------------------------------------------------------------------------- /www/src/Addons/SOCD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/SOCD.tsx -------------------------------------------------------------------------------- /www/src/Addons/Tilt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Tilt.tsx -------------------------------------------------------------------------------- /www/src/Addons/Turbo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Turbo.tsx -------------------------------------------------------------------------------- /www/src/Addons/Wii.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Addons/Wii.tsx -------------------------------------------------------------------------------- /www/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/App.jsx -------------------------------------------------------------------------------- /www/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/App.scss -------------------------------------------------------------------------------- /www/src/Components/AnalogPinOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/AnalogPinOptions.tsx -------------------------------------------------------------------------------- /www/src/Components/CaptureButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/CaptureButton.tsx -------------------------------------------------------------------------------- /www/src/Components/ColorPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/ColorPicker.jsx -------------------------------------------------------------------------------- /www/src/Components/ColorPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/ColorPicker.scss -------------------------------------------------------------------------------- /www/src/Components/ColorScheme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/ColorScheme.jsx -------------------------------------------------------------------------------- /www/src/Components/ContextualHelpOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/ContextualHelpOverlay.tsx -------------------------------------------------------------------------------- /www/src/Components/CustomSelect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/CustomSelect.scss -------------------------------------------------------------------------------- /www/src/Components/CustomSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/CustomSelect.tsx -------------------------------------------------------------------------------- /www/src/Components/DangerSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/DangerSection.jsx -------------------------------------------------------------------------------- /www/src/Components/DraggableListGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/DraggableListGroup.jsx -------------------------------------------------------------------------------- /www/src/Components/DraggableListGroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/DraggableListGroup.scss -------------------------------------------------------------------------------- /www/src/Components/FormCheck.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/FormCheck.jsx -------------------------------------------------------------------------------- /www/src/Components/FormCheck.scss: -------------------------------------------------------------------------------- 1 | .form-check-input { 2 | margin-top: 0; 3 | } 4 | -------------------------------------------------------------------------------- /www/src/Components/FormControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/FormControl.tsx -------------------------------------------------------------------------------- /www/src/Components/FormSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/FormSelect.jsx -------------------------------------------------------------------------------- /www/src/Components/KeyboardMapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/KeyboardMapper.jsx -------------------------------------------------------------------------------- /www/src/Components/LanguageSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/LanguageSelector.jsx -------------------------------------------------------------------------------- /www/src/Components/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/Navigation.jsx -------------------------------------------------------------------------------- /www/src/Components/Navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/Navigation.scss -------------------------------------------------------------------------------- /www/src/Components/Section.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/Section.jsx -------------------------------------------------------------------------------- /www/src/Components/Section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Components/Section.scss -------------------------------------------------------------------------------- /www/src/Contexts/AppContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Contexts/AppContext.jsx -------------------------------------------------------------------------------- /www/src/Data/Addons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Data/Addons.ts -------------------------------------------------------------------------------- /www/src/Data/Boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Data/Boards.json -------------------------------------------------------------------------------- /www/src/Data/Buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Data/Buttons.js -------------------------------------------------------------------------------- /www/src/Data/Controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Data/Controllers.json -------------------------------------------------------------------------------- /www/src/Data/Keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Data/Keyboard.js -------------------------------------------------------------------------------- /www/src/Data/LEDColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Data/LEDColors.js -------------------------------------------------------------------------------- /www/src/Data/Peripherals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Data/Peripherals.ts -------------------------------------------------------------------------------- /www/src/Data/Pins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Data/Pins.ts -------------------------------------------------------------------------------- /www/src/Icons/CircleHalf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Icons/CircleHalf.tsx -------------------------------------------------------------------------------- /www/src/Icons/Flags/De.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Icons/Flags/De.tsx -------------------------------------------------------------------------------- /www/src/Icons/Flags/Us.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Icons/Flags/Us.tsx -------------------------------------------------------------------------------- /www/src/Icons/Flags/ptBR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Icons/Flags/ptBR.tsx -------------------------------------------------------------------------------- /www/src/Icons/Flags/zhCN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Icons/Flags/zhCN.tsx -------------------------------------------------------------------------------- /www/src/Icons/Globe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Icons/Globe.tsx -------------------------------------------------------------------------------- /www/src/Icons/InfoCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Icons/InfoCircle.tsx -------------------------------------------------------------------------------- /www/src/Icons/MoonStars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Icons/MoonStars.tsx -------------------------------------------------------------------------------- /www/src/Icons/Sun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Icons/Sun.tsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/Addons/WiiAddon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/Addons/WiiAddon.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/AddonsConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/AddonsConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/BackupPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/BackupPage.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/CaptureButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/CaptureButton.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/Common.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/Common.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/Components.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/Components.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/CustomTheme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/CustomTheme.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/DisplayConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/DisplayConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/HomePage.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/Index.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/InputMacroAddon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/InputMacroAddon.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/LedConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/LedConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/Navigation.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/PeripheralMapping.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/PeripheralMapping.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/PinMapping.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/PinMapping.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/ResetSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/ResetSettings.jsx -------------------------------------------------------------------------------- /www/src/Locales/de-DE/SettingsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/de-DE/SettingsPage.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/Addons/Rotary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/Addons/Rotary.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/Addons/WiiAddon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/Addons/WiiAddon.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/AddonsConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/AddonsConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/BackupPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/BackupPage.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/CaptureButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/CaptureButton.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/Common.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/Common.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/Components.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/Components.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/CustomTheme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/CustomTheme.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/DisplayConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/DisplayConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/HomePage.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/Index.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/InputMacroAddon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/InputMacroAddon.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/LedConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/LedConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/Navigation.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/PeripheralMapping.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/PeripheralMapping.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/PinMapping.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/PinMapping.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/ResetSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/ResetSettings.jsx -------------------------------------------------------------------------------- /www/src/Locales/en/SettingsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/en/SettingsPage.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/AddonsConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/AddonsConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/BackupPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/BackupPage.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/Common.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/Common.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/Components.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/Components.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/CustomTheme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/CustomTheme.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/DisplayConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/DisplayConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/HomePage.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/Index.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/LedConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/LedConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/Navigation.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/PinMapping.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/PinMapping.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/ResetSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/ResetSettings.jsx -------------------------------------------------------------------------------- /www/src/Locales/pt-BR/SettingsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/pt-BR/SettingsPage.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/AddonsConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/AddonsConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/BackupPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/BackupPage.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/Common.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/Common.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/Components.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/Components.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/CustomTheme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/CustomTheme.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/DisplayConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/DisplayConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/HomePage.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/Index.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/LedConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/LedConfig.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/Navigation.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/PinMapping.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/PinMapping.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/ResetSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/ResetSettings.jsx -------------------------------------------------------------------------------- /www/src/Locales/zh-CN/SettingsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Locales/zh-CN/SettingsPage.jsx -------------------------------------------------------------------------------- /www/src/Pages/AddonsConfigPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/AddonsConfigPage.jsx -------------------------------------------------------------------------------- /www/src/Pages/BackupPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/BackupPage.jsx -------------------------------------------------------------------------------- /www/src/Pages/CustomThemePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/CustomThemePage.jsx -------------------------------------------------------------------------------- /www/src/Pages/CustomThemePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/CustomThemePage.scss -------------------------------------------------------------------------------- /www/src/Pages/DisplayConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/DisplayConfig.jsx -------------------------------------------------------------------------------- /www/src/Pages/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/HomePage.jsx -------------------------------------------------------------------------------- /www/src/Pages/InputMacroAddonPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/InputMacroAddonPage.tsx -------------------------------------------------------------------------------- /www/src/Pages/LEDConfigPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/LEDConfigPage.jsx -------------------------------------------------------------------------------- /www/src/Pages/PeripheralMappingPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/PeripheralMappingPage.jsx -------------------------------------------------------------------------------- /www/src/Pages/PinMapping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/PinMapping.tsx -------------------------------------------------------------------------------- /www/src/Pages/PlaygroundPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/PlaygroundPage.jsx -------------------------------------------------------------------------------- /www/src/Pages/ResetSettingsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/ResetSettingsPage.jsx -------------------------------------------------------------------------------- /www/src/Pages/SettingsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/SettingsPage.jsx -------------------------------------------------------------------------------- /www/src/Pages/SettingsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Pages/SettingsPage.scss -------------------------------------------------------------------------------- /www/src/Services/Storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Services/Storage.js -------------------------------------------------------------------------------- /www/src/Services/Utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Services/Utilities.js -------------------------------------------------------------------------------- /www/src/Services/WebApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Services/WebApi.js -------------------------------------------------------------------------------- /www/src/Store/usePinStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Store/usePinStore.ts -------------------------------------------------------------------------------- /www/src/Store/useProfilesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/Store/useProfilesStore.ts -------------------------------------------------------------------------------- /www/src/i18n.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/i18n.jsx -------------------------------------------------------------------------------- /www/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/index.jsx -------------------------------------------------------------------------------- /www/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/src/index.scss -------------------------------------------------------------------------------- /www/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fightingbox/Gamepad-LED/HEAD/www/vite.config.ts --------------------------------------------------------------------------------