├── .gitattributes ├── Android └── gyvertwink.apk ├── LICENSE ├── README.md ├── docs └── UDP_protocol.txt ├── firmware └── GyverTwink_v1.2 │ ├── GyverTwink_v1.2.ino │ ├── Timer.h │ ├── button.ino │ ├── effects.ino │ ├── faders.ino │ ├── palettes.h │ ├── parsing.ino │ ├── startup.ino │ └── switcher.ino ├── libraries ├── EEManager │ ├── .gitattributes │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── demo │ │ │ └── demo.ino │ │ └── manyBlocks │ │ │ └── manyBlocks.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ └── EEManager.h ├── EncButton │ ├── .gitattributes │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── enc.png │ │ └── encAli.png │ ├── examples │ │ ├── EucButton2 │ │ │ └── EucButton2.ino │ │ ├── EucButton2_array │ │ │ └── EucButton2_array.ino │ │ ├── callbackISR │ │ │ └── callbackISR.ino │ │ ├── callbackMode │ │ │ └── callbackMode.ino │ │ ├── isr │ │ │ └── isr.ino │ │ ├── optimisation │ │ │ └── optimisation.ino │ │ ├── pcint │ │ │ └── pcint.ino │ │ ├── tickMode │ │ │ └── tickMode.ino │ │ └── virtual │ │ │ └── virtual.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── EncButton.h │ │ └── EncButton2.h ├── FastLED │ ├── 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.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 │ │ │ ├── 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 │ │ ├── power_mgt.cpp │ │ ├── power_mgt.h │ │ └── wiring.cpp ├── SimplePortal │ ├── .gitattributes │ ├── LICENSE │ ├── README.md │ ├── doc │ │ └── demo.png │ ├── examples │ │ ├── portalAsync │ │ │ └── portalAsync.ino │ │ └── portalRun │ │ │ └── portalRun.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SimplePortal.cpp │ │ └── SimplePortal.h └── библиотеки можно скачать через встроенный менеджер библиотек.txt ├── processing └── GyverTwink │ ├── AndroidManifest.xml │ ├── CV.pde │ ├── GyverTwink.pde │ ├── UI.pde │ ├── camera.pde │ ├── cards_ui.pde │ ├── code │ └── sketch.properties │ ├── data │ ├── adjust.svg │ ├── camera.svg │ ├── power-off.svg │ ├── sync.svg │ └── wrench.svg │ ├── func.pde │ ├── icon-144.png │ ├── icon-192.png │ ├── icon-36.png │ ├── icon-48.png │ ├── icon-72.png │ ├── icon-96.png │ ├── parsing.pde │ └── subnet.txt └── schemes ├── scheme1.jpg ├── scheme2.jpg └── scheme3.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/.gitattributes -------------------------------------------------------------------------------- /Android/gyvertwink.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/Android/gyvertwink.apk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/README.md -------------------------------------------------------------------------------- /docs/UDP_protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/docs/UDP_protocol.txt -------------------------------------------------------------------------------- /firmware/GyverTwink_v1.2/GyverTwink_v1.2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/firmware/GyverTwink_v1.2/GyverTwink_v1.2.ino -------------------------------------------------------------------------------- /firmware/GyverTwink_v1.2/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/firmware/GyverTwink_v1.2/Timer.h -------------------------------------------------------------------------------- /firmware/GyverTwink_v1.2/button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/firmware/GyverTwink_v1.2/button.ino -------------------------------------------------------------------------------- /firmware/GyverTwink_v1.2/effects.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/firmware/GyverTwink_v1.2/effects.ino -------------------------------------------------------------------------------- /firmware/GyverTwink_v1.2/faders.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/firmware/GyverTwink_v1.2/faders.ino -------------------------------------------------------------------------------- /firmware/GyverTwink_v1.2/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/firmware/GyverTwink_v1.2/palettes.h -------------------------------------------------------------------------------- /firmware/GyverTwink_v1.2/parsing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/firmware/GyverTwink_v1.2/parsing.ino -------------------------------------------------------------------------------- /firmware/GyverTwink_v1.2/startup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/firmware/GyverTwink_v1.2/startup.ino -------------------------------------------------------------------------------- /firmware/GyverTwink_v1.2/switcher.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/firmware/GyverTwink_v1.2/switcher.ino -------------------------------------------------------------------------------- /libraries/EEManager/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EEManager/.gitattributes -------------------------------------------------------------------------------- /libraries/EEManager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EEManager/LICENSE -------------------------------------------------------------------------------- /libraries/EEManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EEManager/README.md -------------------------------------------------------------------------------- /libraries/EEManager/examples/demo/demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EEManager/examples/demo/demo.ino -------------------------------------------------------------------------------- /libraries/EEManager/examples/manyBlocks/manyBlocks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EEManager/examples/manyBlocks/manyBlocks.ino -------------------------------------------------------------------------------- /libraries/EEManager/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EEManager/keywords.txt -------------------------------------------------------------------------------- /libraries/EEManager/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EEManager/library.properties -------------------------------------------------------------------------------- /libraries/EEManager/src/EEManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EEManager/src/EEManager.h -------------------------------------------------------------------------------- /libraries/EncButton/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/.gitattributes -------------------------------------------------------------------------------- /libraries/EncButton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/LICENSE -------------------------------------------------------------------------------- /libraries/EncButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/README.md -------------------------------------------------------------------------------- /libraries/EncButton/doc/enc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/doc/enc.png -------------------------------------------------------------------------------- /libraries/EncButton/doc/encAli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/doc/encAli.png -------------------------------------------------------------------------------- /libraries/EncButton/examples/EucButton2/EucButton2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/examples/EucButton2/EucButton2.ino -------------------------------------------------------------------------------- /libraries/EncButton/examples/EucButton2_array/EucButton2_array.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/examples/EucButton2_array/EucButton2_array.ino -------------------------------------------------------------------------------- /libraries/EncButton/examples/callbackISR/callbackISR.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/examples/callbackISR/callbackISR.ino -------------------------------------------------------------------------------- /libraries/EncButton/examples/callbackMode/callbackMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/examples/callbackMode/callbackMode.ino -------------------------------------------------------------------------------- /libraries/EncButton/examples/isr/isr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/examples/isr/isr.ino -------------------------------------------------------------------------------- /libraries/EncButton/examples/optimisation/optimisation.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/examples/optimisation/optimisation.ino -------------------------------------------------------------------------------- /libraries/EncButton/examples/pcint/pcint.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/examples/pcint/pcint.ino -------------------------------------------------------------------------------- /libraries/EncButton/examples/tickMode/tickMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/examples/tickMode/tickMode.ino -------------------------------------------------------------------------------- /libraries/EncButton/examples/virtual/virtual.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/examples/virtual/virtual.ino -------------------------------------------------------------------------------- /libraries/EncButton/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/keywords.txt -------------------------------------------------------------------------------- /libraries/EncButton/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/library.properties -------------------------------------------------------------------------------- /libraries/EncButton/src/EncButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/src/EncButton.h -------------------------------------------------------------------------------- /libraries/EncButton/src/EncButton2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/EncButton/src/EncButton2.h -------------------------------------------------------------------------------- /libraries/FastLED/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/LICENSE -------------------------------------------------------------------------------- /libraries/FastLED/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/PORTING.md -------------------------------------------------------------------------------- /libraries/FastLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/README.md -------------------------------------------------------------------------------- /libraries/FastLED/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/component.mk -------------------------------------------------------------------------------- /libraries/FastLED/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/docs/Doxyfile -------------------------------------------------------------------------------- /libraries/FastLED/docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/docs/mainpage.dox -------------------------------------------------------------------------------- /libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/ColorPalette/ColorPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/ColorPalette/ColorPalette.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/DemoReel100/DemoReel100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/DemoReel100/DemoReel100.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/FirstLight/FirstLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/FirstLight/FirstLight.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Pacifica/Pacifica.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Pacifica/Pacifica.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Pride2015/Pride2015.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/Pride2015/Pride2015.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/TwinkleFox/TwinkleFox.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/TwinkleFox/TwinkleFox.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /libraries/FastLED/extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/extras/AppleII.s65 -------------------------------------------------------------------------------- /libraries/FastLED/extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /libraries/FastLED/extras/RainbowDemo.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/extras/RainbowDemo.bin.zip -------------------------------------------------------------------------------- /libraries/FastLED/extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /libraries/FastLED/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/keywords.txt -------------------------------------------------------------------------------- /libraries/FastLED/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/library.json -------------------------------------------------------------------------------- /libraries/FastLED/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/library.properties -------------------------------------------------------------------------------- /libraries/FastLED/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/release_notes.md -------------------------------------------------------------------------------- /libraries/FastLED/src/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/FastLED.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/FastLED.h -------------------------------------------------------------------------------- /libraries/FastLED/src/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/bitswap.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/bitswap.h -------------------------------------------------------------------------------- /libraries/FastLED/src/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/chipsets.h -------------------------------------------------------------------------------- /libraries/FastLED/src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/color.h -------------------------------------------------------------------------------- /libraries/FastLED/src/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/colorpalettes.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/colorpalettes.h -------------------------------------------------------------------------------- /libraries/FastLED/src/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/colorutils.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/colorutils.h -------------------------------------------------------------------------------- /libraries/FastLED/src/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/controller.h -------------------------------------------------------------------------------- /libraries/FastLED/src/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/cpp_compat.h -------------------------------------------------------------------------------- /libraries/FastLED/src/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/dmx.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/fastled_config.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/fastled_delay.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/fastled_progmem.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/fastpin.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/fastspi.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/fastspi_bitbang.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/fastspi_nop.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/fastspi_ref.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/fastspi_types.h -------------------------------------------------------------------------------- /libraries/FastLED/src/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/hsv2rgb.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/hsv2rgb.h -------------------------------------------------------------------------------- /libraries/FastLED/src/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/led_sysdefs.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/lib8tion.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/lib8tion.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/lib8tion/math8.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/lib8tion/random8.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/lib8tion/scale8.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/lib8tion/trig8.h -------------------------------------------------------------------------------- /libraries/FastLED/src/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/noise.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/noise.h -------------------------------------------------------------------------------- /libraries/FastLED/src/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/pixelset.h -------------------------------------------------------------------------------- /libraries/FastLED/src/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/pixeltypes.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/clockless_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/apollo3/clockless_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/fastled_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/apollo3/fastled_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/fastpin_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/apollo3/fastpin_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/fastspi_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/apollo3/fastspi_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/led_sysdefs_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/apollo3/led_sysdefs_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/common/m0clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/common/m0clockless.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d21/clockless_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/d21/clockless_arm_d21.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d21/fastled_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/d21/fastled_arm_d21.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d21/fastpin_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/d21/fastpin_arm_d21.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d21/led_sysdefs_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/d21/led_sysdefs_arm_d21.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d51/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/d51/README.txt -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d51/clockless_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/d51/clockless_arm_d51.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d51/fastled_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/d51/fastled_arm_d51.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d51/fastpin_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/d51/fastpin_arm_d51.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d51/led_sysdefs_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/d51/led_sysdefs_arm_d51.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/clockless_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k20/clockless_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/clockless_block_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k20/clockless_block_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/fastled_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k20/fastled_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/fastpin_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k20/fastpin_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/fastspi_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k20/fastspi_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/led_sysdefs_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k20/led_sysdefs_arm_k20.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k20/octows2811_controller.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/smartmatrix_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k20/smartmatrix_t3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/ws2812serial_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k20/ws2812serial_controller.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k66/clockless_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k66/clockless_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k66/clockless_block_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k66/clockless_block_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k66/fastled_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k66/fastled_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k66/fastpin_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k66/fastpin_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k66/fastspi_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k66/fastspi_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k66/led_sysdefs_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/k66/led_sysdefs_arm_k66.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/kl26/clockless_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/kl26/clockless_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/kl26/fastled_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/kl26/fastled_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/kl26/fastpin_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/kl26/fastpin_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/kl26/fastspi_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/kl26/fastspi_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/kl26/led_sysdefs_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/kl26/led_sysdefs_arm_kl26.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/mxrt1062/block_clockless_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/mxrt1062/block_clockless_arm_mxrt1062.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/mxrt1062/clockless_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/mxrt1062/clockless_arm_mxrt1062.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/mxrt1062/fastled_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/mxrt1062/fastled_arm_mxrt1062.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/mxrt1062/fastpin_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/mxrt1062/fastpin_arm_mxrt1062.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/mxrt1062/fastspi_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/mxrt1062/fastspi_arm_mxrt1062.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/mxrt1062/led_sysdefs_arm_mxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/mxrt1062/led_sysdefs_arm_mxrt1062.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf51/clockless_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf51/clockless_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf51/fastled_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf51/fastled_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf51/fastpin_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf51/fastpin_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf51/fastspi_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf51/fastspi_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf52/arbiter_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf52/arbiter_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf52/clockless_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf52/clockless_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf52/fastled_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf52/fastled_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52_variants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf52/fastpin_arm_nrf52_variants.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf52/fastspi_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf52/fastspi_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/sam/clockless_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/sam/clockless_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/sam/clockless_block_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/sam/clockless_block_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/sam/fastled_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/sam/fastled_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/sam/fastpin_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/sam/fastpin_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/sam/fastspi_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/sam/fastspi_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/sam/led_sysdefs_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/sam/led_sysdefs_arm_sam.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/stm32/clockless_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/stm32/clockless_arm_stm32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/stm32/cm3_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/stm32/cm3_regs.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/stm32/fastled_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/stm32/fastled_arm_stm32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/stm32/fastpin_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/stm32/fastpin_arm_stm32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/stm32/led_sysdefs_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/arm/stm32/led_sysdefs_arm_stm32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/avr/clockless_trinket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/avr/clockless_trinket.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/avr/led_sysdefs_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/avr/led_sysdefs_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/32/clockless_block_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/clockless_i2s_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/32/clockless_i2s_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/clockless_rmt_esp32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/32/clockless_rmt_esp32.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/clockless_rmt_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/32/clockless_rmt_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/fastled_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/32/led_sysdefs_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/8266/clockless_block_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/8266/clockless_block_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/8266/clockless_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/8266/clockless_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/8266/fastled_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/8266/fastled_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/8266/fastpin_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/8266/fastpin_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/8266/led_sysdefs_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/platforms/esp/8266/led_sysdefs_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/power_mgt.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/power_mgt.h -------------------------------------------------------------------------------- /libraries/FastLED/src/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/FastLED/src/wiring.cpp -------------------------------------------------------------------------------- /libraries/SimplePortal/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/.gitattributes -------------------------------------------------------------------------------- /libraries/SimplePortal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/LICENSE -------------------------------------------------------------------------------- /libraries/SimplePortal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/README.md -------------------------------------------------------------------------------- /libraries/SimplePortal/doc/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/doc/demo.png -------------------------------------------------------------------------------- /libraries/SimplePortal/examples/portalAsync/portalAsync.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/examples/portalAsync/portalAsync.ino -------------------------------------------------------------------------------- /libraries/SimplePortal/examples/portalRun/portalRun.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/examples/portalRun/portalRun.ino -------------------------------------------------------------------------------- /libraries/SimplePortal/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/keywords.txt -------------------------------------------------------------------------------- /libraries/SimplePortal/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/library.properties -------------------------------------------------------------------------------- /libraries/SimplePortal/src/SimplePortal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/src/SimplePortal.cpp -------------------------------------------------------------------------------- /libraries/SimplePortal/src/SimplePortal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/libraries/SimplePortal/src/SimplePortal.h -------------------------------------------------------------------------------- /libraries/библиотеки можно скачать через встроенный менеджер библиотек.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /processing/GyverTwink/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/AndroidManifest.xml -------------------------------------------------------------------------------- /processing/GyverTwink/CV.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/CV.pde -------------------------------------------------------------------------------- /processing/GyverTwink/GyverTwink.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/GyverTwink.pde -------------------------------------------------------------------------------- /processing/GyverTwink/UI.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/UI.pde -------------------------------------------------------------------------------- /processing/GyverTwink/camera.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/camera.pde -------------------------------------------------------------------------------- /processing/GyverTwink/cards_ui.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/cards_ui.pde -------------------------------------------------------------------------------- /processing/GyverTwink/code/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/code/sketch.properties -------------------------------------------------------------------------------- /processing/GyverTwink/data/adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/data/adjust.svg -------------------------------------------------------------------------------- /processing/GyverTwink/data/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/data/camera.svg -------------------------------------------------------------------------------- /processing/GyverTwink/data/power-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/data/power-off.svg -------------------------------------------------------------------------------- /processing/GyverTwink/data/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/data/sync.svg -------------------------------------------------------------------------------- /processing/GyverTwink/data/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/data/wrench.svg -------------------------------------------------------------------------------- /processing/GyverTwink/func.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/func.pde -------------------------------------------------------------------------------- /processing/GyverTwink/icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/icon-144.png -------------------------------------------------------------------------------- /processing/GyverTwink/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/icon-192.png -------------------------------------------------------------------------------- /processing/GyverTwink/icon-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/icon-36.png -------------------------------------------------------------------------------- /processing/GyverTwink/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/icon-48.png -------------------------------------------------------------------------------- /processing/GyverTwink/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/icon-72.png -------------------------------------------------------------------------------- /processing/GyverTwink/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/icon-96.png -------------------------------------------------------------------------------- /processing/GyverTwink/parsing.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/parsing.pde -------------------------------------------------------------------------------- /processing/GyverTwink/subnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/processing/GyverTwink/subnet.txt -------------------------------------------------------------------------------- /schemes/scheme1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/schemes/scheme1.jpg -------------------------------------------------------------------------------- /schemes/scheme2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/schemes/scheme2.jpg -------------------------------------------------------------------------------- /schemes/scheme3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/GyverTwink/HEAD/schemes/scheme3.jpg --------------------------------------------------------------------------------