├── .clang-format ├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── extra ├── ALL.NET_aqua-0.0.33a-RELEASE.zip ├── CH341SER.EXE ├── PCB_ProProject_Chunithm_KEYS_2022-06-20.zip ├── README.md ├── SegaTools_bin_canboot.zip └── esp-12k文档.pdf ├── include └── README ├── lib ├── Adafruit_BusIO │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── Adafruit_BusIO_Register.cpp │ ├── Adafruit_BusIO_Register.h │ ├── Adafruit_I2CDevice.cpp │ ├── Adafruit_I2CDevice.h │ ├── Adafruit_I2CRegister.h │ ├── Adafruit_SPIDevice.cpp │ ├── Adafruit_SPIDevice.h │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── component.mk │ ├── examples │ │ ├── i2c_address_detect │ │ │ └── i2c_address_detect.ino │ │ ├── i2c_readwrite │ │ │ └── i2c_readwrite.ino │ │ ├── i2c_registers │ │ │ └── i2c_registers.ino │ │ ├── i2corspi_register │ │ │ └── i2corspi_register.ino │ │ ├── spi_modetest │ │ │ └── spi_modetest.ino │ │ ├── spi_readwrite │ │ │ └── spi_readwrite.ino │ │ ├── spi_register_bits │ │ │ └── spi_register_bits.ino │ │ └── spi_registers │ │ │ └── spi_registers.ino │ └── library.properties ├── Adafruit_MPR121 │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── .gitignore │ ├── Adafruit_MPR121.cpp │ ├── Adafruit_MPR121.h │ ├── README.md │ ├── examples │ │ └── MPR121test │ │ │ └── MPR121test.ino │ ├── keywords.txt │ └── library.properties ├── FastLED │ ├── .github │ │ └── workflows │ │ │ └── build.yml │ ├── .gitignore │ ├── LICENSE │ ├── PORTING.md │ ├── README.md │ ├── ci │ │ ├── ci-compile │ │ └── ci-flags.py │ ├── code_of_conduct.md │ ├── component.mk │ ├── docs │ │ ├── Doxyfile │ │ └── mainpage.dox │ ├── examples │ │ ├── AnalogOutput │ │ │ └── AnalogOutput.ino │ │ ├── Blink │ │ │ └── Blink.ino │ │ ├── ColorPalette │ │ │ └── ColorPalette.ino │ │ ├── ColorTemperature │ │ │ └── ColorTemperature.ino │ │ ├── Cylon │ │ │ └── Cylon.ino │ │ ├── DemoReel100 │ │ │ └── DemoReel100.ino │ │ ├── Fire2012 │ │ │ └── Fire2012.ino │ │ ├── Fire2012WithPalette │ │ │ └── Fire2012WithPalette.ino │ │ ├── FirstLight │ │ │ └── FirstLight.ino │ │ ├── Multiple │ │ │ ├── ArrayOfLedArrays │ │ │ │ └── ArrayOfLedArrays.ino │ │ │ ├── MirroringSample │ │ │ │ └── MirroringSample.ino │ │ │ ├── MultiArrays │ │ │ │ └── MultiArrays.ino │ │ │ ├── MultipleStripsInOneArray │ │ │ │ └── MultipleStripsInOneArray.ino │ │ │ ├── OctoWS2811Demo │ │ │ │ └── OctoWS2811Demo.ino │ │ │ └── ParallelOutputDemo │ │ │ │ └── ParallelOutputDemo.ino │ │ ├── Noise │ │ │ └── Noise.ino │ │ ├── NoisePlayground │ │ │ └── NoisePlayground.ino │ │ ├── NoisePlusPalette │ │ │ └── NoisePlusPalette.ino │ │ ├── Pacifica │ │ │ └── Pacifica.ino │ │ ├── Pintest │ │ │ └── Pintest.ino │ │ ├── Ports │ │ │ └── PJRCSpectrumAnalyzer │ │ │ │ └── PJRCSpectrumAnalyzer.ino │ │ ├── Pride2015 │ │ │ └── Pride2015.ino │ │ ├── RGBCalibrate │ │ │ └── RGBCalibrate.ino │ │ ├── RGBSetDemo │ │ │ └── RGBSetDemo.ino │ │ ├── SmartMatrix │ │ │ └── SmartMatrix.ino │ │ ├── TwinkleFox │ │ │ └── TwinkleFox.ino │ │ └── XYMatrix │ │ │ └── XYMatrix.ino │ ├── extras │ │ ├── AppleII.s65 │ │ ├── FastLED6502.s65 │ │ ├── RainbowDemo.bin.zip │ │ └── RainbowDemo.s65 │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── release_notes.md │ ├── src │ │ ├── FastLED.cpp │ │ ├── FastLED.h │ │ ├── bitswap.cpp │ │ ├── bitswap.h │ │ ├── chipsets.h │ │ ├── color.h │ │ ├── colorpalettes.cpp │ │ ├── colorpalettes.h │ │ ├── colorutils.cpp │ │ ├── colorutils.h │ │ ├── controller.h │ │ ├── cpp_compat.h │ │ ├── dmx.h │ │ ├── fastled_config.h │ │ ├── fastled_delay.h │ │ ├── fastled_progmem.h │ │ ├── fastpin.h │ │ ├── fastspi.h │ │ ├── fastspi_bitbang.h │ │ ├── fastspi_dma.h │ │ ├── fastspi_nop.h │ │ ├── fastspi_ref.h │ │ ├── fastspi_types.h │ │ ├── hsv2rgb.cpp │ │ ├── hsv2rgb.h │ │ ├── led_sysdefs.h │ │ ├── lib8tion.cpp │ │ ├── lib8tion.h │ │ ├── lib8tion │ │ │ ├── math8.h │ │ │ ├── random8.h │ │ │ ├── scale8.h │ │ │ └── trig8.h │ │ ├── noise.cpp │ │ ├── noise.h │ │ ├── pixelset.h │ │ ├── pixeltypes.h │ │ ├── platforms.cpp │ │ ├── platforms.h │ │ ├── platforms │ │ │ ├── apollo3 │ │ │ │ ├── clockless_apollo3.h │ │ │ │ ├── fastled_apollo3.h │ │ │ │ ├── fastpin_apollo3.h │ │ │ │ ├── fastspi_apollo3.h │ │ │ │ └── led_sysdefs_apollo3.h │ │ │ ├── arm │ │ │ │ ├── common │ │ │ │ │ └── m0clockless.h │ │ │ │ ├── d21 │ │ │ │ │ ├── clockless_arm_d21.h │ │ │ │ │ ├── fastled_arm_d21.h │ │ │ │ │ ├── fastpin_arm_d21.h │ │ │ │ │ └── led_sysdefs_arm_d21.h │ │ │ │ ├── d51 │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── clockless_arm_d51.h │ │ │ │ │ ├── fastled_arm_d51.h │ │ │ │ │ ├── fastpin_arm_d51.h │ │ │ │ │ └── led_sysdefs_arm_d51.h │ │ │ │ ├── k20 │ │ │ │ │ ├── clockless_arm_k20.h │ │ │ │ │ ├── clockless_block_arm_k20.h │ │ │ │ │ ├── fastled_arm_k20.h │ │ │ │ │ ├── fastpin_arm_k20.h │ │ │ │ │ ├── fastspi_arm_k20.h │ │ │ │ │ ├── led_sysdefs_arm_k20.h │ │ │ │ │ ├── octows2811_controller.h │ │ │ │ │ ├── smartmatrix_t3.h │ │ │ │ │ └── ws2812serial_controller.h │ │ │ │ ├── k66 │ │ │ │ │ ├── clockless_arm_k66.h │ │ │ │ │ ├── clockless_block_arm_k66.h │ │ │ │ │ ├── fastled_arm_k66.h │ │ │ │ │ ├── fastpin_arm_k66.h │ │ │ │ │ ├── fastspi_arm_k66.h │ │ │ │ │ └── led_sysdefs_arm_k66.h │ │ │ │ ├── kl26 │ │ │ │ │ ├── clockless_arm_kl26.h │ │ │ │ │ ├── fastled_arm_kl26.h │ │ │ │ │ ├── fastpin_arm_kl26.h │ │ │ │ │ ├── fastspi_arm_kl26.h │ │ │ │ │ └── led_sysdefs_arm_kl26.h │ │ │ │ ├── mxrt1062 │ │ │ │ │ ├── block_clockless_arm_mxrt1062.h │ │ │ │ │ ├── clockless_arm_mxrt1062.h │ │ │ │ │ ├── fastled_arm_mxrt1062.h │ │ │ │ │ ├── fastpin_arm_mxrt1062.h │ │ │ │ │ ├── fastspi_arm_mxrt1062.h │ │ │ │ │ ├── led_sysdefs_arm_mxrt1062.h │ │ │ │ │ └── octows2811_controller.h │ │ │ │ ├── nrf51 │ │ │ │ │ ├── clockless_arm_nrf51.h │ │ │ │ │ ├── fastled_arm_nrf51.h │ │ │ │ │ ├── fastpin_arm_nrf51.h │ │ │ │ │ ├── fastspi_arm_nrf51.h │ │ │ │ │ └── led_sysdefs_arm_nrf51.h │ │ │ │ ├── nrf52 │ │ │ │ │ ├── arbiter_nrf52.h │ │ │ │ │ ├── clockless_arm_nrf52.h │ │ │ │ │ ├── fastled_arm_nrf52.h │ │ │ │ │ ├── fastpin_arm_nrf52.h │ │ │ │ │ ├── fastpin_arm_nrf52_variants.h │ │ │ │ │ ├── fastspi_arm_nrf52.h │ │ │ │ │ └── led_sysdefs_arm_nrf52.h │ │ │ │ ├── sam │ │ │ │ │ ├── clockless_arm_sam.h │ │ │ │ │ ├── clockless_block_arm_sam.h │ │ │ │ │ ├── fastled_arm_sam.h │ │ │ │ │ ├── fastpin_arm_sam.h │ │ │ │ │ ├── fastspi_arm_sam.h │ │ │ │ │ └── led_sysdefs_arm_sam.h │ │ │ │ └── stm32 │ │ │ │ │ ├── clockless_arm_stm32.h │ │ │ │ │ ├── cm3_regs.h │ │ │ │ │ ├── fastled_arm_stm32.h │ │ │ │ │ ├── fastpin_arm_stm32.h │ │ │ │ │ └── led_sysdefs_arm_stm32.h │ │ │ ├── avr │ │ │ │ ├── clockless_trinket.h │ │ │ │ ├── fastled_avr.h │ │ │ │ ├── fastpin_avr.h │ │ │ │ ├── fastspi_avr.h │ │ │ │ └── led_sysdefs_avr.h │ │ │ ├── esp │ │ │ │ ├── 32 │ │ │ │ │ ├── clockless_block_esp32.h │ │ │ │ │ ├── clockless_i2s_esp32.h │ │ │ │ │ ├── clockless_rmt_esp32.cpp │ │ │ │ │ ├── clockless_rmt_esp32.h │ │ │ │ │ ├── fastled_esp32.h │ │ │ │ │ ├── fastpin_esp32.h │ │ │ │ │ ├── fastspi_esp32.h │ │ │ │ │ └── led_sysdefs_esp32.h │ │ │ │ └── 8266 │ │ │ │ │ ├── clockless_block_esp8266.h │ │ │ │ │ ├── clockless_esp8266.h │ │ │ │ │ ├── fastled_esp8266.h │ │ │ │ │ ├── fastpin_esp8266.h │ │ │ │ │ ├── fastspi_esp8266.h │ │ │ │ │ └── led_sysdefs_esp8266.h │ │ │ └── fastspi_ardunio_core.h │ │ ├── power_mgt.cpp │ │ ├── power_mgt.h │ │ └── wiring.cpp │ └── workspace.code-workspace ├── README └── SimpleKalmanFilter │ ├── LICENSE │ ├── README.md │ ├── examples │ ├── AltitudeKalmanFilterExample │ │ └── AltitudeKalmanFilterExample.ino │ └── BasicKalmanFilterExample │ │ └── BasicKalmanFilterExample.ino │ ├── images │ └── kalman_filter_example_1.png │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ ├── SimpleKalmanFilter.cpp │ └── SimpleKalmanFilter.h ├── platformio.ini ├── src ├── config.h ├── key.cpp ├── key.h ├── keyboardMultiple.cpp ├── keyboardMultiple.h ├── main.cpp ├── vendor.cpp └── vendor.h └── test └── README /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.sourceDirectory": "${workspaceFolder}/lib/Adafruit_BusIO" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/README.md -------------------------------------------------------------------------------- /extra/ALL.NET_aqua-0.0.33a-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/extra/ALL.NET_aqua-0.0.33a-RELEASE.zip -------------------------------------------------------------------------------- /extra/CH341SER.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/extra/CH341SER.EXE -------------------------------------------------------------------------------- /extra/PCB_ProProject_Chunithm_KEYS_2022-06-20.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/extra/PCB_ProProject_Chunithm_KEYS_2022-06-20.zip -------------------------------------------------------------------------------- /extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/extra/README.md -------------------------------------------------------------------------------- /extra/SegaTools_bin_canboot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/extra/SegaTools_bin_canboot.zip -------------------------------------------------------------------------------- /extra/esp-12k文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/extra/esp-12k文档.pdf -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/include/README -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_BusIO_Register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/Adafruit_BusIO_Register.cpp -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_BusIO_Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/Adafruit_BusIO_Register.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_I2CDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/Adafruit_I2CDevice.cpp -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_I2CDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/Adafruit_I2CDevice.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_I2CRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/Adafruit_I2CRegister.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_SPIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/Adafruit_SPIDevice.cpp -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/Adafruit_SPIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/Adafruit_SPIDevice.h -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/LICENSE -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/README.md -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS = . 2 | -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/examples/i2c_address_detect/i2c_address_detect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/examples/i2c_address_detect/i2c_address_detect.ino -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/examples/i2c_readwrite/i2c_readwrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/examples/i2c_readwrite/i2c_readwrite.ino -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/examples/i2c_registers/i2c_registers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/examples/i2c_registers/i2c_registers.ino -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/examples/i2corspi_register/i2corspi_register.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/examples/i2corspi_register/i2corspi_register.ino -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/examples/spi_modetest/spi_modetest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/examples/spi_modetest/spi_modetest.ino -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/examples/spi_readwrite/spi_readwrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/examples/spi_readwrite/spi_readwrite.ino -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/examples/spi_register_bits/spi_register_bits.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/examples/spi_register_bits/spi_register_bits.ino -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/examples/spi_registers/spi_registers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/examples/spi_registers/spi_registers.ino -------------------------------------------------------------------------------- /lib/Adafruit_BusIO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_BusIO/library.properties -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/.gitignore -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/Adafruit_MPR121.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/Adafruit_MPR121.cpp -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/Adafruit_MPR121.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/Adafruit_MPR121.h -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/README.md -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/examples/MPR121test/MPR121test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/examples/MPR121test/MPR121test.ino -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/keywords.txt -------------------------------------------------------------------------------- /lib/Adafruit_MPR121/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/Adafruit_MPR121/library.properties -------------------------------------------------------------------------------- /lib/FastLED/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/.github/workflows/build.yml -------------------------------------------------------------------------------- /lib/FastLED/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/.gitignore -------------------------------------------------------------------------------- /lib/FastLED/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/LICENSE -------------------------------------------------------------------------------- /lib/FastLED/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/PORTING.md -------------------------------------------------------------------------------- /lib/FastLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/README.md -------------------------------------------------------------------------------- /lib/FastLED/ci/ci-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/ci/ci-compile -------------------------------------------------------------------------------- /lib/FastLED/ci/ci-flags.py: -------------------------------------------------------------------------------- 1 | Import("env") 2 | 3 | env.Append(CXXFLAGS=["-Wno-register"]) 4 | -------------------------------------------------------------------------------- /lib/FastLED/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/code_of_conduct.md -------------------------------------------------------------------------------- /lib/FastLED/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/component.mk -------------------------------------------------------------------------------- /lib/FastLED/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/docs/Doxyfile -------------------------------------------------------------------------------- /lib/FastLED/docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/docs/mainpage.dox -------------------------------------------------------------------------------- /lib/FastLED/examples/AnalogOutput/AnalogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/AnalogOutput/AnalogOutput.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/ColorPalette/ColorPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/ColorPalette/ColorPalette.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/ColorTemperature/ColorTemperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/ColorTemperature/ColorTemperature.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/DemoReel100/DemoReel100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/DemoReel100/DemoReel100.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/FirstLight/FirstLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/FirstLight/FirstLight.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/NoisePlayground/NoisePlayground.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/NoisePlayground/NoisePlayground.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Pacifica/Pacifica.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Pacifica/Pacifica.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/Pride2015/Pride2015.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/Pride2015/Pride2015.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/RGBCalibrate/RGBCalibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/RGBCalibrate/RGBCalibrate.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/RGBSetDemo/RGBSetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/RGBSetDemo/RGBSetDemo.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/SmartMatrix/SmartMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/SmartMatrix/SmartMatrix.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/TwinkleFox/TwinkleFox.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/TwinkleFox/TwinkleFox.ino -------------------------------------------------------------------------------- /lib/FastLED/examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /lib/FastLED/extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/extras/AppleII.s65 -------------------------------------------------------------------------------- /lib/FastLED/extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /lib/FastLED/extras/RainbowDemo.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/extras/RainbowDemo.bin.zip -------------------------------------------------------------------------------- /lib/FastLED/extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /lib/FastLED/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/keywords.txt -------------------------------------------------------------------------------- /lib/FastLED/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/library.json -------------------------------------------------------------------------------- /lib/FastLED/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/library.properties -------------------------------------------------------------------------------- /lib/FastLED/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/release_notes.md -------------------------------------------------------------------------------- /lib/FastLED/src/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/FastLED.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/FastLED.h -------------------------------------------------------------------------------- /lib/FastLED/src/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/bitswap.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/bitswap.h -------------------------------------------------------------------------------- /lib/FastLED/src/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/chipsets.h -------------------------------------------------------------------------------- /lib/FastLED/src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/color.h -------------------------------------------------------------------------------- /lib/FastLED/src/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/colorpalettes.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/colorpalettes.h -------------------------------------------------------------------------------- /lib/FastLED/src/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/colorutils.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/colorutils.h -------------------------------------------------------------------------------- /lib/FastLED/src/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/controller.h -------------------------------------------------------------------------------- /lib/FastLED/src/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/cpp_compat.h -------------------------------------------------------------------------------- /lib/FastLED/src/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/dmx.h -------------------------------------------------------------------------------- /lib/FastLED/src/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/fastled_config.h -------------------------------------------------------------------------------- /lib/FastLED/src/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/fastled_delay.h -------------------------------------------------------------------------------- /lib/FastLED/src/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/fastled_progmem.h -------------------------------------------------------------------------------- /lib/FastLED/src/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/fastpin.h -------------------------------------------------------------------------------- /lib/FastLED/src/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/fastspi.h -------------------------------------------------------------------------------- /lib/FastLED/src/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/fastspi_bitbang.h -------------------------------------------------------------------------------- /lib/FastLED/src/fastspi_dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/FastLED/src/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/fastspi_nop.h -------------------------------------------------------------------------------- /lib/FastLED/src/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/fastspi_ref.h -------------------------------------------------------------------------------- /lib/FastLED/src/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/fastspi_types.h -------------------------------------------------------------------------------- /lib/FastLED/src/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/hsv2rgb.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/hsv2rgb.h -------------------------------------------------------------------------------- /lib/FastLED/src/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/led_sysdefs.h -------------------------------------------------------------------------------- /lib/FastLED/src/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/lib8tion.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/lib8tion.h -------------------------------------------------------------------------------- /lib/FastLED/src/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/lib8tion/math8.h -------------------------------------------------------------------------------- /lib/FastLED/src/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/lib8tion/random8.h -------------------------------------------------------------------------------- /lib/FastLED/src/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/lib8tion/scale8.h -------------------------------------------------------------------------------- /lib/FastLED/src/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/lib8tion/trig8.h -------------------------------------------------------------------------------- /lib/FastLED/src/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/noise.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/noise.h -------------------------------------------------------------------------------- /lib/FastLED/src/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/pixelset.h -------------------------------------------------------------------------------- /lib/FastLED/src/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/pixeltypes.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/apollo3/clockless_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/apollo3/clockless_apollo3.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/apollo3/fastled_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/apollo3/fastled_apollo3.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/apollo3/fastpin_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/apollo3/fastpin_apollo3.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/apollo3/fastspi_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/apollo3/fastspi_apollo3.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/apollo3/led_sysdefs_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/apollo3/led_sysdefs_apollo3.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/common/m0clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/common/m0clockless.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/d21/clockless_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/d21/clockless_arm_d21.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/d21/fastled_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/d21/fastled_arm_d21.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/d21/fastpin_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/d21/fastpin_arm_d21.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/d21/led_sysdefs_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/d21/led_sysdefs_arm_d21.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/d51/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/d51/README.txt -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/d51/clockless_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/d51/clockless_arm_d51.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/d51/fastled_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/d51/fastled_arm_d51.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/d51/fastpin_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/d51/fastpin_arm_d51.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/d51/led_sysdefs_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/d51/led_sysdefs_arm_d51.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k20/clockless_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k20/clockless_arm_k20.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k20/clockless_block_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k20/clockless_block_arm_k20.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k20/fastled_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k20/fastled_arm_k20.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k20/fastpin_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k20/fastpin_arm_k20.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k20/fastspi_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k20/fastspi_arm_k20.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k20/led_sysdefs_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k20/led_sysdefs_arm_k20.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k20/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k20/octows2811_controller.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k20/smartmatrix_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k20/smartmatrix_t3.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k20/ws2812serial_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k20/ws2812serial_controller.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k66/clockless_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k66/clockless_arm_k66.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k66/clockless_block_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k66/clockless_block_arm_k66.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k66/fastled_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k66/fastled_arm_k66.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k66/fastpin_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k66/fastpin_arm_k66.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k66/fastspi_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k66/fastspi_arm_k66.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/k66/led_sysdefs_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/k66/led_sysdefs_arm_k66.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/kl26/clockless_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/kl26/clockless_arm_kl26.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/kl26/fastled_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/kl26/fastled_arm_kl26.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/kl26/fastpin_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/kl26/fastpin_arm_kl26.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/kl26/fastspi_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/kl26/fastspi_arm_kl26.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/kl26/led_sysdefs_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/kl26/led_sysdefs_arm_kl26.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/mxrt1062/block_clockless_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/mxrt1062/block_clockless_arm_mxrt1062.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/mxrt1062/clockless_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/mxrt1062/clockless_arm_mxrt1062.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/mxrt1062/fastled_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/mxrt1062/fastled_arm_mxrt1062.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/mxrt1062/fastpin_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/mxrt1062/fastpin_arm_mxrt1062.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/mxrt1062/fastspi_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/mxrt1062/fastspi_arm_mxrt1062.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/mxrt1062/led_sysdefs_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/mxrt1062/led_sysdefs_arm_mxrt1062.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/mxrt1062/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/mxrt1062/octows2811_controller.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf51/clockless_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf51/clockless_arm_nrf51.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf51/fastled_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf51/fastled_arm_nrf51.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf51/fastpin_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf51/fastpin_arm_nrf51.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf51/fastspi_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf51/fastspi_arm_nrf51.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf52/arbiter_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf52/arbiter_nrf52.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf52/clockless_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf52/clockless_arm_nrf52.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf52/fastled_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf52/fastled_arm_nrf52.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52_variants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52_variants.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf52/fastspi_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf52/fastspi_arm_nrf52.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/sam/clockless_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/sam/clockless_arm_sam.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/sam/clockless_block_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/sam/clockless_block_arm_sam.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/sam/fastled_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/sam/fastled_arm_sam.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/sam/fastpin_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/sam/fastpin_arm_sam.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/sam/fastspi_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/sam/fastspi_arm_sam.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/sam/led_sysdefs_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/sam/led_sysdefs_arm_sam.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/stm32/clockless_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/stm32/clockless_arm_stm32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/stm32/cm3_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/stm32/cm3_regs.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/stm32/fastled_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/stm32/fastled_arm_stm32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/stm32/fastpin_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/stm32/fastpin_arm_stm32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/arm/stm32/led_sysdefs_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/arm/stm32/led_sysdefs_arm_stm32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/avr/clockless_trinket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/avr/clockless_trinket.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/avr/led_sysdefs_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/avr/led_sysdefs_avr.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/32/clockless_block_esp32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/32/clockless_i2s_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/32/clockless_i2s_esp32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/32/clockless_rmt_esp32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/32/clockless_rmt_esp32.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/32/clockless_rmt_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/32/clockless_rmt_esp32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/32/fastled_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/32/fastspi_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/32/fastspi_esp32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/32/led_sysdefs_esp32.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/8266/clockless_block_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/8266/clockless_block_esp8266.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/8266/clockless_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/8266/clockless_esp8266.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/8266/fastled_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/8266/fastled_esp8266.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/8266/fastpin_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/8266/fastpin_esp8266.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/8266/fastspi_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/8266/fastspi_esp8266.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/esp/8266/led_sysdefs_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/esp/8266/led_sysdefs_esp8266.h -------------------------------------------------------------------------------- /lib/FastLED/src/platforms/fastspi_ardunio_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/platforms/fastspi_ardunio_core.h -------------------------------------------------------------------------------- /lib/FastLED/src/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/power_mgt.cpp -------------------------------------------------------------------------------- /lib/FastLED/src/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/power_mgt.h -------------------------------------------------------------------------------- /lib/FastLED/src/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/src/wiring.cpp -------------------------------------------------------------------------------- /lib/FastLED/workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/FastLED/workspace.code-workspace -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/README -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/LICENSE -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/README.md -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/examples/AltitudeKalmanFilterExample/AltitudeKalmanFilterExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/examples/AltitudeKalmanFilterExample/AltitudeKalmanFilterExample.ino -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/examples/BasicKalmanFilterExample/BasicKalmanFilterExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/examples/BasicKalmanFilterExample/BasicKalmanFilterExample.ino -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/images/kalman_filter_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/images/kalman_filter_example_1.png -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/keywords.txt -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/library.json -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/library.properties -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/src/SimpleKalmanFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/src/SimpleKalmanFilter.cpp -------------------------------------------------------------------------------- /lib/SimpleKalmanFilter/src/SimpleKalmanFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/lib/SimpleKalmanFilter/src/SimpleKalmanFilter.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/src/config.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/src/key.h -------------------------------------------------------------------------------- /src/keyboardMultiple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/src/keyboardMultiple.cpp -------------------------------------------------------------------------------- /src/keyboardMultiple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/src/keyboardMultiple.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/vendor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/src/vendor.cpp -------------------------------------------------------------------------------- /src/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/src/vendor.h -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangxx3863/ChunithmControllerReversion/HEAD/test/README --------------------------------------------------------------------------------