gitextract_ayibu_de/ ├── .gitattributes ├── Android/ │ ├── GyverLamp2.aia │ ├── GyverLamp2.apk │ └── Исходник собран в App Inventor.txt ├── README.md ├── docs/ │ └── Протокол/ │ ├── GyverLamp2_UDP.txt │ └── GyverLamp_UDP.xlsx ├── firmware/ │ ├── GyverLamp2/ │ │ ├── 0_func.ino │ │ ├── Button.h │ │ ├── Clap.h │ │ ├── FFT_C.h │ │ ├── FastFilter.h │ │ ├── GyverLamp2.ino │ │ ├── NTPClient-Gyver.cpp │ │ ├── NTPClient-Gyver.h │ │ ├── Time.h │ │ ├── VolAnalyzer.h │ │ ├── analog.ino │ │ ├── button.ino │ │ ├── data.h │ │ ├── eeprom.ino │ │ ├── effects.ino │ │ ├── fastRandom.h │ │ ├── fire2020.ino │ │ ├── fire2D.ino │ │ ├── mString.h │ │ ├── palettes.h │ │ ├── parsing.ino │ │ ├── presetManager.ino │ │ ├── startup.ino │ │ ├── time.ino │ │ ├── timeRandom.h │ │ └── timerMillis.h │ └── PlatformIO/ │ ├── .gitignore │ ├── .vscode/ │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── include/ │ │ └── README │ ├── lib/ │ │ └── README │ ├── platformio.ini │ └── test/ │ └── README └── libraries/ └── FastLED-3.4.0/ ├── .gitignore ├── LICENSE ├── PORTING.md ├── README.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.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/ │ ├── math8.h │ ├── random8.h │ ├── scale8.h │ └── trig8.h ├── lib8tion.cpp ├── lib8tion.h ├── noise.cpp ├── noise.h ├── pixelset.h ├── pixeltypes.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 │ │ ├── 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 │ │ └── led_sysdefs_esp32.h │ └── 8266/ │ ├── clockless_block_esp8266.h │ ├── clockless_esp8266.h │ ├── fastled_esp8266.h │ ├── fastpin_esp8266.h │ └── led_sysdefs_esp8266.h ├── platforms.cpp ├── platforms.h ├── power_mgt.cpp ├── power_mgt.h └── wiring.cpp