├── .gitattributes ├── BallClockGen.html ├── LICENSE ├── bin └── firmware.bin ├── firmware ├── .gitignore ├── .vscode │ └── extensions.json ├── BallClock.ino ├── lib │ └── GyverGFX-dev │ │ ├── LICENSE │ │ ├── README.md │ │ ├── keywords.txt │ │ ├── library.properties │ │ ├── src │ │ ├── BufferGFX.h │ │ ├── FontGFX.h │ │ ├── GyverGFX.h │ │ ├── RunningGFX.h │ │ ├── StreamDisplay.h │ │ ├── core │ │ │ ├── buffer.h │ │ │ ├── core.h │ │ │ ├── decoder.h │ │ │ ├── reader.h │ │ │ ├── sizes.cpp │ │ │ ├── sizes.h │ │ │ ├── unpacker.h │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ └── default │ │ │ ├── font3x5.h │ │ │ ├── font4x6.h │ │ │ ├── font5x8.h │ │ │ └── icons8x8.h │ │ └── utils │ │ ├── Bitmaper.html │ │ ├── FontConvert.html │ │ ├── FontEditor.html │ │ ├── IconEditor.html │ │ ├── fontgen │ │ ├── fontgen.py │ │ └── readme.md │ │ └── script.js ├── platformio.ini ├── src │ ├── adcf.h │ ├── brezline.cpp │ ├── brezline.h │ ├── config.h │ ├── font_3x5_diag.h │ ├── font_4x5.h │ ├── main.cpp │ ├── matrix.cpp │ ├── matrix.h │ ├── matrix_strip.cpp │ ├── palettes.cpp │ ├── palettes.h │ ├── redraw.cpp │ ├── redraw.h │ ├── settings.cpp │ └── settings.h └── прочти меня.txt ├── fusion └── BallClock v30.f3d ├── libraries ├── Adafruit NeoPixel │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── githubci.yml │ ├── .gitignore │ ├── Adafruit_NeoPixel.cpp │ ├── Adafruit_NeoPixel.h │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── README.md │ ├── esp.c │ ├── esp8266.c │ ├── examples │ │ ├── RGBWstrandtest │ │ │ ├── .esp8266.test.skip │ │ │ ├── .trinket.test.skip │ │ │ └── RGBWstrandtest.ino │ │ ├── StrandtestArduinoBLE │ │ │ ├── .none.test.only │ │ │ └── StrandtestArduinoBLE.ino │ │ ├── StrandtestArduinoBLECallback │ │ │ ├── .none.test.only │ │ │ └── StrandtestArduinoBLECallback.ino │ │ ├── StrandtestBLE │ │ │ ├── .none.test.only │ │ │ ├── BLESerial.cpp │ │ │ ├── BLESerial.h │ │ │ └── StrandtestBLE.ino │ │ ├── StrandtestBLE_nodelay │ │ │ ├── .none.test.only │ │ │ ├── BLESerial.cpp │ │ │ ├── BLESerial.h │ │ │ └── StrandtestBLE_nodelay.ino │ │ ├── buttoncycler │ │ │ ├── .esp8266.test.skip │ │ │ └── buttoncycler.ino │ │ ├── simple │ │ │ ├── .esp8266.test.skip │ │ │ └── simple.ino │ │ ├── simple_new_operator │ │ │ ├── .esp8266.test.skip │ │ │ └── simple_new_operator.ino │ │ ├── strandtest │ │ │ ├── .esp8266.test.skip │ │ │ └── strandtest.ino │ │ ├── strandtest_nodelay │ │ │ ├── .esp8266.test.skip │ │ │ └── strandtest_nodelay.ino │ │ └── strandtest_wheel │ │ │ ├── .esp8266.test.skip │ │ │ └── strandtest_wheel.ino │ ├── kendyte_k210.c │ ├── keywords.txt │ ├── library.properties │ └── rp2040_pio.h ├── AutoOTA │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .piopm │ ├── AutoOTA.h │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ └── test │ │ │ └── test.ino │ ├── keywords.txt │ ├── library.properties │ └── project.json ├── FOR_MACRO │ ├── .gitattributes │ ├── .piopm │ ├── FOR_MACRO.h │ ├── LICENSE │ ├── README.md │ ├── generate.py │ ├── keywords.txt │ └── library.properties ├── FastLED │ ├── .clang-format │ ├── .github │ │ └── workflows │ │ │ ├── arduino_library_lint.yml │ │ │ ├── build.yml │ │ │ ├── build_adafruit_feather_nrf52840_sense.yml │ │ │ ├── build_adafruit_xiaoblesense.yml │ │ │ ├── build_default.yml │ │ │ ├── build_digix.yml │ │ │ ├── build_esp32_i2s_ws2812.yml │ │ │ ├── build_esp32c2.yml │ │ │ ├── build_esp32c3.yml │ │ │ ├── build_esp32c6.yml │ │ │ ├── build_esp32dev.yml │ │ │ ├── build_esp32dev_idf4.4.yml │ │ │ ├── build_esp32h2.yml │ │ │ ├── build_esp32rmt.yml │ │ │ ├── build_esp32s2.yml │ │ │ ├── build_esp32s3.yml │ │ │ ├── build_esp32wroom.yml │ │ │ ├── build_esp8622.yml │ │ │ ├── build_linux.yml │ │ │ ├── build_nano_every.yml │ │ │ ├── build_rgbw.yml │ │ │ ├── build_rp2040.yml │ │ │ ├── build_rp2040_earle.yml │ │ │ ├── build_rp2350.yml │ │ │ ├── build_teensy30.yml │ │ │ ├── build_teensy31.yml │ │ │ ├── build_teensy40.yml │ │ │ ├── build_teensy41.yml │ │ │ ├── build_teensyLC.yml │ │ │ ├── build_teensy_octo.yml │ │ │ ├── build_template.yml │ │ │ ├── build_template_binary_size.yml │ │ │ ├── build_template_custom_board.yml │ │ │ ├── build_uno.yml │ │ │ ├── build_uno_r4_wifif.yml │ │ │ ├── build_yun.yml │ │ │ ├── check_esp32_size.yml │ │ │ ├── check_teensy41_size.yml │ │ │ ├── check_uno_size.yml │ │ │ └── docs.yml │ ├── .gitignore │ ├── .piopm │ ├── CMakeLists.txt │ ├── LICENSE │ ├── PORTING.md │ ├── README.md │ ├── RELEASE.md │ ├── TODO.md │ ├── ci │ │ ├── README.md │ │ ├── boards │ │ │ ├── esp32-c2-devkitm-1.json │ │ │ ├── esp32-c6-devkitc-1.json │ │ │ ├── esp32-h2-devkitm-1.json │ │ │ ├── rpipico.json │ │ │ ├── rpipico2.json │ │ │ └── rpipicow.json │ │ ├── ci-compile │ │ ├── ci-compile-native.py │ │ ├── ci-compile.py │ │ ├── ci-flags.py │ │ ├── ci │ │ │ ├── __init__.py │ │ │ ├── boards.py │ │ │ ├── compile_for_board.py │ │ │ ├── concurrent_run.py │ │ │ ├── cpu_count.py │ │ │ ├── create_build_dir.py │ │ │ └── locked_print.py │ │ ├── compiled_size.py │ │ ├── native │ │ │ └── platformio.ini │ │ └── run-clang-format.py │ ├── clean │ ├── code_of_conduct.md │ ├── compile │ ├── compile.bat │ ├── component.mk │ ├── cool_projects.md │ ├── dev │ │ └── dev.ino │ ├── examples │ │ ├── AnalogOutput │ │ │ └── AnalogOutput.ino │ │ ├── Apa102HD │ │ │ └── Apa102HD.ino │ │ ├── Apa102HDOverride │ │ │ └── Apa102HDOverride.ino │ │ ├── Blink │ │ │ └── Blink.ino │ │ ├── ColorPalette │ │ │ └── ColorPalette.ino │ │ ├── ColorTemperature │ │ │ └── ColorTemperature.ino │ │ ├── Cylon │ │ │ └── Cylon.ino │ │ ├── DemoReel100 │ │ │ └── DemoReel100.ino │ │ ├── Esp32Rmt51 │ │ │ └── Esp32Rmt51.ino │ │ ├── EspI2SDemo │ │ │ └── EspI2SDemo.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 │ │ ├── OctoWS2811 │ │ │ └── OctoWS2811.ino │ │ ├── Pacifica │ │ │ └── Pacifica.ino │ │ ├── Pintest │ │ │ └── Pintest.ino │ │ ├── Ports │ │ │ └── PJRCSpectrumAnalyzer │ │ │ │ └── PJRCSpectrumAnalyzer.ino │ │ ├── Pride2015 │ │ │ └── Pride2015.ino │ │ ├── RGBCalibrate │ │ │ └── RGBCalibrate.ino │ │ ├── RGBSetDemo │ │ │ └── RGBSetDemo.ino │ │ ├── RGBW │ │ │ └── RGBW.ino │ │ ├── RGBWEmulated │ │ │ └── RGBWEmulated.ino │ │ ├── SmartMatrix │ │ │ └── SmartMatrix.ino │ │ ├── TwinkleFox │ │ │ └── TwinkleFox.ino │ │ ├── XYMatrix │ │ │ └── XYMatrix.ino │ │ └── _bugs │ │ │ └── 1653_S3_Apa102_Hardware_Pins │ │ │ └── 1653_S3_Apa102_Hardware_Pins.ino │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ ├── lint │ ├── platformio.ini │ ├── pyproject.toml │ ├── release_notes.md │ ├── src │ │ ├── FastLED.cpp │ │ ├── FastLED.h │ │ ├── bitswap.cpp │ │ ├── bitswap.h │ │ ├── chipsets.h │ │ ├── chsv.h │ │ ├── color.h │ │ ├── colorpalettes.cpp │ │ ├── colorpalettes.h │ │ ├── colorutils.cpp │ │ ├── colorutils.h │ │ ├── controller.h │ │ ├── cpp_compat.h │ │ ├── crgb.h │ │ ├── crgb.hpp │ │ ├── dither_mode.h │ │ ├── dmx.h │ │ ├── eorder.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 │ │ ├── five_bit_hd_gamma.cpp │ │ ├── five_bit_hd_gamma.h │ │ ├── force_inline.h │ │ ├── hsv2rgb.cpp │ │ ├── hsv2rgb.h │ │ ├── led_sysdefs.h │ │ ├── lib8tion.cpp │ │ ├── lib8tion.h │ │ ├── lib8tion │ │ │ ├── math8.h │ │ │ ├── random8.h │ │ │ ├── scale8.h │ │ │ ├── trig8.h │ │ │ └── types.h │ │ ├── namespace.h │ │ ├── noise.cpp │ │ ├── noise.h │ │ ├── pixel_controller.h │ │ ├── pixel_iterator.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 │ │ │ │ ├── renesas │ │ │ │ │ ├── clockless_arm_renesas.h │ │ │ │ │ ├── fastled_arm_renesas.h │ │ │ │ │ ├── fastpin_arm_renesas.h │ │ │ │ │ └── led_sysdef_arm_renesas.h │ │ │ │ ├── rp2040 │ │ │ │ │ ├── clockless_arm_rp2040.h │ │ │ │ │ ├── fastled_arm_rp2040.h │ │ │ │ │ ├── fastpin_arm_rp2040.h │ │ │ │ │ ├── led_sysdefs_arm_rp2040.h │ │ │ │ │ ├── pio_asm.h │ │ │ │ │ └── pio_gen.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 │ │ │ │ │ ├── clock_cycles.h │ │ │ │ │ ├── clockless_block_esp32.h │ │ │ │ │ ├── clockless_i2s_esp32.h │ │ │ │ │ ├── clockless_rmt_esp32.h │ │ │ │ │ ├── fastled_esp32.h │ │ │ │ │ ├── fastpin_esp32.h │ │ │ │ │ ├── fastspi_esp32.h │ │ │ │ │ ├── i2s.cpp │ │ │ │ │ ├── i2s.h │ │ │ │ │ ├── idf4_clockless_rmt_esp32.h │ │ │ │ │ ├── idf4_rmt.cpp │ │ │ │ │ ├── idf4_rmt.h │ │ │ │ │ ├── idf4_rmt_impl.cpp │ │ │ │ │ ├── idf4_rmt_impl.h │ │ │ │ │ ├── idf5_clockless_rmt_esp32.h │ │ │ │ │ ├── led_strip │ │ │ │ │ │ ├── enabled.h │ │ │ │ │ │ ├── led_strip.h │ │ │ │ │ │ ├── led_strip_api.cpp │ │ │ │ │ │ ├── led_strip_interface.h │ │ │ │ │ │ ├── led_strip_rmt.h │ │ │ │ │ │ ├── led_strip_rmt_dev.cpp │ │ │ │ │ │ ├── led_strip_rmt_dev_idf4.cpp │ │ │ │ │ │ ├── led_strip_rmt_encoder.cpp │ │ │ │ │ │ ├── led_strip_rmt_encoder.h │ │ │ │ │ │ ├── led_strip_spi.h │ │ │ │ │ │ ├── led_strip_spi_dev.cpp │ │ │ │ │ │ ├── led_strip_types.h │ │ │ │ │ │ ├── readme │ │ │ │ │ │ ├── rmt_demo.cpp │ │ │ │ │ │ └── rmt_demo.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 │ │ │ └── stub │ │ │ │ ├── clockless_stub.h │ │ │ │ ├── fastled_stub.h │ │ │ │ ├── fastspi_stub.h │ │ │ │ ├── led_sysdefs_stub.cpp │ │ │ │ └── led_sysdefs_stub.h │ │ ├── power_mgt.cpp │ │ ├── power_mgt.h │ │ ├── rgbw.cpp │ │ ├── rgbw.h │ │ ├── simplex.cpp │ │ ├── stub_main.cpp │ │ ├── transpose8x1_noinline.cpp │ │ ├── transpose8x1_noinline.h │ │ ├── types.h │ │ └── wiring.cpp │ ├── test │ └── workspace.code-workspace ├── GSON │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ ├── parseTo │ │ │ └── parseTo.ino │ │ └── test │ │ │ └── test.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── GSON.h │ │ └── utils │ │ ├── bson.h │ │ ├── entry.h │ │ ├── entry_stack.h │ │ ├── entry_t.h │ │ ├── parser.h │ │ ├── parser_stream.h │ │ ├── string.h │ │ └── types.h ├── GTL │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ └── list │ │ │ └── list.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── GTL.h │ │ ├── array │ │ ├── array_copy.h │ │ ├── array_shared.h │ │ └── array_uniq.h │ │ ├── fifo │ │ ├── fifo_ext.h │ │ └── fifo_static.h │ │ ├── list │ │ ├── linked_list.h │ │ └── list_node.h │ │ ├── ptr │ │ ├── ptr_shared.h │ │ └── ptr_uniq.h │ │ └── stack │ │ ├── stack.h │ │ ├── stack_ext.h │ │ └── stack_static.h ├── GyverDB │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ ├── connector │ │ │ └── connector.ino │ │ └── test │ │ │ └── test.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── DBConnector.h │ │ ├── GyverDB.h │ │ ├── GyverDBFile.h │ │ └── utils │ │ ├── access.h │ │ ├── anytype.h │ │ ├── block.h │ │ ├── entry.h │ │ └── types.h ├── GyverGFX-dev │ ├── LICENSE │ ├── README.md │ ├── keywords.txt │ ├── library.properties │ ├── src │ │ ├── BufferGFX.h │ │ ├── FontGFX.h │ │ ├── GyverGFX.h │ │ ├── RunningGFX.h │ │ ├── StreamDisplay.h │ │ ├── core │ │ │ ├── buffer.h │ │ │ ├── core.h │ │ │ ├── decoder.h │ │ │ ├── reader.h │ │ │ ├── sizes.cpp │ │ │ ├── sizes.h │ │ │ ├── unpacker.h │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ └── default │ │ │ ├── font3x5.h │ │ │ ├── font4x6.h │ │ │ ├── font5x8.h │ │ │ └── icons8x8.h │ └── utils │ │ ├── Bitmaper.html │ │ ├── FontConvert.html │ │ ├── FontEditor.html │ │ ├── IconEditor.html │ │ ├── fontgen │ │ ├── fontgen.py │ │ └── readme.md │ │ └── script.js ├── GyverHTTP │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ ├── captive_portal │ │ │ └── captive_portal.ino │ │ ├── client_get_async │ │ │ └── client_get_async.ino │ │ ├── client_get_async2 │ │ │ └── client_get_async2.ino │ │ ├── client_get_sync │ │ │ └── client_get_sync.ino │ │ └── server │ │ │ └── server.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── GyverHTTP.h │ │ ├── StreamReader.h │ │ ├── StreamWriter.h │ │ └── utils │ │ ├── Client.h │ │ ├── EspClient.h │ │ ├── HeadersParser.h │ │ ├── Server.h │ │ ├── ServerBase.h │ │ └── cfg.h ├── GyverNTP │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ ├── customClient │ │ │ └── customClient.ino │ │ └── testBlink │ │ │ └── testBlink.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── GyverNTP.cpp │ │ ├── GyverNTP.h │ │ └── GyverNTPClient.h ├── Looper │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ ├── advancedTimerData │ │ │ └── advancedTimerData.ino │ │ ├── customButton │ │ │ └── customButton.ino │ │ ├── customTimer │ │ │ └── customTimer.ino │ │ ├── looperEvents │ │ │ └── looperEvents.ino │ │ ├── minTimer │ │ │ └── minTimer.ino │ │ ├── threads │ │ │ └── threads.ino │ │ ├── ticker │ │ │ └── ticker.ino │ │ ├── timeout │ │ │ └── timeout.ino │ │ └── timerControl │ │ │ └── timerControl.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Looper.h │ │ ├── LooperClass.cpp │ │ ├── LooperClass.h │ │ ├── nodes │ │ ├── CallbackData.h │ │ ├── Listener.h │ │ ├── LoopTask.cpp │ │ ├── LoopTask.h │ │ ├── Thread.h │ │ ├── Ticker.h │ │ └── Timer.h │ │ ├── platform.cpp │ │ ├── platform.h │ │ └── utils │ │ ├── SimpleTimer.cpp │ │ ├── SimpleTimer.h │ │ ├── flags.h │ │ ├── hash.h │ │ ├── list.h │ │ ├── macro.h │ │ └── stack.h ├── Settings │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .gitignore │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ ├── demo_data │ │ │ └── demo_data.ino │ │ ├── test │ │ │ └── test.ino │ │ ├── wificonnect │ │ │ └── wificonnect.ino │ │ └── wificonnector │ │ │ └── wificonnector.ino │ ├── img │ │ └── promo.png │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SettingsAsync.h │ │ ├── SettingsBase.h │ │ ├── SettingsESP.h │ │ ├── SettingsGyver.h │ │ ├── core │ │ ├── AnyPtr.h │ │ ├── DnsWrapper.h │ │ ├── SettingsBase_class.cpp │ │ ├── SettingsBase_class.h │ │ ├── build.h │ │ ├── builder.h │ │ ├── codes.h │ │ ├── colors.h │ │ ├── containers.h │ │ ├── containers_class.h │ │ ├── fs.cpp │ │ ├── fs.h │ │ ├── ota.cpp │ │ ├── ota.h │ │ ├── packet.h │ │ ├── timer.h │ │ └── updater.h │ │ └── web │ │ └── settings.h ├── Stamp │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ ├── dayIndex │ │ │ └── index.h │ │ ├── demo │ │ │ └── demo.ino │ │ ├── sync │ │ │ └── sync.ino │ │ ├── test │ │ │ └── test.ino │ │ └── ticker │ │ │ └── ticker.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Stamp.h │ │ ├── StampSync.h │ │ ├── StampTicker.h │ │ └── core │ │ ├── Datime.h │ │ ├── DaySeconds.h │ │ ├── StampCore.h │ │ ├── StampUtils.cpp │ │ ├── StampUtils.h │ │ ├── buildStamp.h │ │ ├── stamp_zone.cpp │ │ └── stamp_zone.h ├── StreamIO │ ├── .gitattributes │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Reader.h │ │ ├── StreamIO.h │ │ └── Writer.h ├── StringUtils │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── tg-send.yml │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── README_EN.md │ ├── examples │ │ ├── parse │ │ │ └── parse.ino │ │ ├── test │ │ │ └── test.ino │ │ └── unitTest │ │ │ └── unitTest.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── StringUtils.h │ │ └── utils │ │ ├── PrintString.h │ │ ├── String.h │ │ ├── Text.h │ │ ├── TextList.h │ │ ├── TextParser.h │ │ ├── Value.h │ │ ├── convert │ │ ├── b64.cpp │ │ ├── b64.h │ │ ├── convert.cpp │ │ ├── convert.h │ │ ├── qwerty.cpp │ │ ├── qwerty.h │ │ ├── unicode.cpp │ │ ├── unicode.h │ │ ├── url.cpp │ │ └── url.h │ │ ├── hash.cpp │ │ ├── hash.h │ │ ├── list.cpp │ │ ├── list.h │ │ ├── parser.h │ │ └── splitter.h └── WiFiConnector │ ├── .gitattributes │ ├── .piopm │ ├── LICENSE │ ├── README.md │ ├── examples │ └── demo │ │ └── demo.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ ├── WiFiConnector.cpp │ └── WiFiConnector.h ├── project.json └── schemes └── scheme.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/.gitattributes -------------------------------------------------------------------------------- /BallClockGen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/BallClockGen.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/bin/firmware.bin -------------------------------------------------------------------------------- /firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/.gitignore -------------------------------------------------------------------------------- /firmware/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/.vscode/extensions.json -------------------------------------------------------------------------------- /firmware/BallClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/BallClock.ino -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/LICENSE -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/README.md -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/keywords.txt -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/library.properties -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/BufferGFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/BufferGFX.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/FontGFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/FontGFX.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/GyverGFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/GyverGFX.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/RunningGFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/RunningGFX.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/StreamDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/StreamDisplay.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/core/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/core/buffer.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/core/core.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/core/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/core/decoder.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/core/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/core/reader.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/core/sizes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/core/sizes.cpp -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/core/sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/core/sizes.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/core/unpacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/core/unpacker.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/core/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/core/utils.cpp -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/core/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/core/utils.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/default/font3x5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/default/font3x5.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/default/font4x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/default/font4x6.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/default/font5x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/default/font5x8.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/src/default/icons8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/src/default/icons8x8.h -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/utils/Bitmaper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/utils/Bitmaper.html -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/utils/FontConvert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/utils/FontConvert.html -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/utils/FontEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/utils/FontEditor.html -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/utils/IconEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/utils/IconEditor.html -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/utils/fontgen/fontgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/utils/fontgen/fontgen.py -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/utils/fontgen/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/utils/fontgen/readme.md -------------------------------------------------------------------------------- /firmware/lib/GyverGFX-dev/utils/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/lib/GyverGFX-dev/utils/script.js -------------------------------------------------------------------------------- /firmware/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/platformio.ini -------------------------------------------------------------------------------- /firmware/src/adcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/adcf.h -------------------------------------------------------------------------------- /firmware/src/brezline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/brezline.cpp -------------------------------------------------------------------------------- /firmware/src/brezline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/brezline.h -------------------------------------------------------------------------------- /firmware/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/config.h -------------------------------------------------------------------------------- /firmware/src/font_3x5_diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/font_3x5_diag.h -------------------------------------------------------------------------------- /firmware/src/font_4x5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/font_4x5.h -------------------------------------------------------------------------------- /firmware/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/main.cpp -------------------------------------------------------------------------------- /firmware/src/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/matrix.cpp -------------------------------------------------------------------------------- /firmware/src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/matrix.h -------------------------------------------------------------------------------- /firmware/src/matrix_strip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/matrix_strip.cpp -------------------------------------------------------------------------------- /firmware/src/palettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/palettes.cpp -------------------------------------------------------------------------------- /firmware/src/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/palettes.h -------------------------------------------------------------------------------- /firmware/src/redraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/redraw.cpp -------------------------------------------------------------------------------- /firmware/src/redraw.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "adcf.h" 3 | 4 | extern ADCFilt photo; -------------------------------------------------------------------------------- /firmware/src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/settings.cpp -------------------------------------------------------------------------------- /firmware/src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/src/settings.h -------------------------------------------------------------------------------- /firmware/прочти меня.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/firmware/прочти меня.txt -------------------------------------------------------------------------------- /fusion/BallClock v30.f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/fusion/BallClock v30.f3d -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/Adafruit_NeoPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/Adafruit_NeoPixel.cpp -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/Adafruit_NeoPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/Adafruit_NeoPixel.h -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/CONTRIBUTING.md -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/COPYING -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/README.md -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/esp.c -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/esp8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/esp8266.c -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/RGBWstrandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/RGBWstrandtest/.trinket.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/RGBWstrandtest/RGBWstrandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/RGBWstrandtest/RGBWstrandtest.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestArduinoBLE/.none.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestArduinoBLE/StrandtestArduinoBLE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/StrandtestArduinoBLE/StrandtestArduinoBLE.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestArduinoBLECallback/.none.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestArduinoBLECallback/StrandtestArduinoBLECallback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/StrandtestArduinoBLECallback/StrandtestArduinoBLECallback.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestBLE/.none.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestBLE/BLESerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/StrandtestBLE/BLESerial.cpp -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestBLE/BLESerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/StrandtestBLE/BLESerial.h -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestBLE/StrandtestBLE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/StrandtestBLE/StrandtestBLE.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestBLE_nodelay/.none.test.only: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestBLE_nodelay/BLESerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/StrandtestBLE_nodelay/BLESerial.cpp -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestBLE_nodelay/BLESerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/StrandtestBLE_nodelay/BLESerial.h -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/StrandtestBLE_nodelay/StrandtestBLE_nodelay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/StrandtestBLE_nodelay/StrandtestBLE_nodelay.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/buttoncycler/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/buttoncycler/buttoncycler.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/buttoncycler/buttoncycler.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/simple/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/simple/simple.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/simple_new_operator/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/simple_new_operator/simple_new_operator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/simple_new_operator/simple_new_operator.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/strandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/strandtest/strandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/strandtest/strandtest.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/strandtest_nodelay/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/strandtest_nodelay/strandtest_nodelay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/strandtest_nodelay/strandtest_nodelay.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/strandtest_wheel/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/examples/strandtest_wheel/strandtest_wheel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/examples/strandtest_wheel/strandtest_wheel.ino -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/kendyte_k210.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/kendyte_k210.c -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/keywords.txt -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/library.properties -------------------------------------------------------------------------------- /libraries/Adafruit NeoPixel/rp2040_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Adafruit NeoPixel/rp2040_pio.h -------------------------------------------------------------------------------- /libraries/AutoOTA/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/.gitattributes -------------------------------------------------------------------------------- /libraries/AutoOTA/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/AutoOTA/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/.piopm -------------------------------------------------------------------------------- /libraries/AutoOTA/AutoOTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/AutoOTA.h -------------------------------------------------------------------------------- /libraries/AutoOTA/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/LICENSE -------------------------------------------------------------------------------- /libraries/AutoOTA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/README.md -------------------------------------------------------------------------------- /libraries/AutoOTA/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/README_EN.md -------------------------------------------------------------------------------- /libraries/AutoOTA/examples/test/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/examples/test/test.ino -------------------------------------------------------------------------------- /libraries/AutoOTA/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/keywords.txt -------------------------------------------------------------------------------- /libraries/AutoOTA/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/library.properties -------------------------------------------------------------------------------- /libraries/AutoOTA/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/AutoOTA/project.json -------------------------------------------------------------------------------- /libraries/FOR_MACRO/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FOR_MACRO/.gitattributes -------------------------------------------------------------------------------- /libraries/FOR_MACRO/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FOR_MACRO/.piopm -------------------------------------------------------------------------------- /libraries/FOR_MACRO/FOR_MACRO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FOR_MACRO/FOR_MACRO.h -------------------------------------------------------------------------------- /libraries/FOR_MACRO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FOR_MACRO/LICENSE -------------------------------------------------------------------------------- /libraries/FOR_MACRO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FOR_MACRO/README.md -------------------------------------------------------------------------------- /libraries/FOR_MACRO/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FOR_MACRO/generate.py -------------------------------------------------------------------------------- /libraries/FOR_MACRO/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FOR_MACRO/keywords.txt -------------------------------------------------------------------------------- /libraries/FOR_MACRO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FOR_MACRO/library.properties -------------------------------------------------------------------------------- /libraries/FastLED/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | UseTab: Never -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/arduino_library_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/arduino_library_lint.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_adafruit_feather_nrf52840_sense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_adafruit_feather_nrf52840_sense.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_adafruit_xiaoblesense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_adafruit_xiaoblesense.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_default.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_digix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_digix.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32_i2s_ws2812.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32_i2s_ws2812.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32c2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32c2.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32c3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32c3.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32c6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32c6.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32dev.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32dev_idf4.4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32dev_idf4.4.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32h2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32h2.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32rmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32rmt.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32s2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32s2.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32s3.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp32wroom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp32wroom.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_esp8622.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_esp8622.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_linux.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_nano_every.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_nano_every.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_rgbw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_rgbw.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_rp2040.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_rp2040.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_rp2040_earle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_rp2040_earle.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_rp2350.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_rp2350.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_teensy30.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_teensy30.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_teensy31.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_teensy31.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_teensy40.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_teensy40.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_teensy41.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_teensy41.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_teensyLC.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_teensyLC.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_teensy_octo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_teensy_octo.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_template.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_template_binary_size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_template_binary_size.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_template_custom_board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_template_custom_board.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_uno.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_uno.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_uno_r4_wifif.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_uno_r4_wifif.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/build_yun.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/build_yun.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/check_esp32_size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/check_esp32_size.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/check_teensy41_size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/check_teensy41_size.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/check_uno_size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/check_uno_size.yml -------------------------------------------------------------------------------- /libraries/FastLED/.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.github/workflows/docs.yml -------------------------------------------------------------------------------- /libraries/FastLED/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.gitignore -------------------------------------------------------------------------------- /libraries/FastLED/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/.piopm -------------------------------------------------------------------------------- /libraries/FastLED/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/FastLED/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/LICENSE -------------------------------------------------------------------------------- /libraries/FastLED/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/PORTING.md -------------------------------------------------------------------------------- /libraries/FastLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/README.md -------------------------------------------------------------------------------- /libraries/FastLED/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/RELEASE.md -------------------------------------------------------------------------------- /libraries/FastLED/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/TODO.md -------------------------------------------------------------------------------- /libraries/FastLED/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/README.md -------------------------------------------------------------------------------- /libraries/FastLED/ci/boards/esp32-c2-devkitm-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/boards/esp32-c2-devkitm-1.json -------------------------------------------------------------------------------- /libraries/FastLED/ci/boards/esp32-c6-devkitc-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/boards/esp32-c6-devkitc-1.json -------------------------------------------------------------------------------- /libraries/FastLED/ci/boards/esp32-h2-devkitm-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/boards/esp32-h2-devkitm-1.json -------------------------------------------------------------------------------- /libraries/FastLED/ci/boards/rpipico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/boards/rpipico.json -------------------------------------------------------------------------------- /libraries/FastLED/ci/boards/rpipico2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/boards/rpipico2.json -------------------------------------------------------------------------------- /libraries/FastLED/ci/boards/rpipicow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/boards/rpipicow.json -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci-compile -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci-compile-native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci-compile-native.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci-compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci-compile.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci-flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci-flags.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci/boards.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci/compile_for_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci/compile_for_board.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci/concurrent_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci/concurrent_run.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci/cpu_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci/cpu_count.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci/create_build_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci/create_build_dir.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/ci/locked_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/ci/locked_print.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/compiled_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/compiled_size.py -------------------------------------------------------------------------------- /libraries/FastLED/ci/native/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/native/platformio.ini -------------------------------------------------------------------------------- /libraries/FastLED/ci/run-clang-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/ci/run-clang-format.py -------------------------------------------------------------------------------- /libraries/FastLED/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/clean -------------------------------------------------------------------------------- /libraries/FastLED/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/code_of_conduct.md -------------------------------------------------------------------------------- /libraries/FastLED/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/compile -------------------------------------------------------------------------------- /libraries/FastLED/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/compile.bat -------------------------------------------------------------------------------- /libraries/FastLED/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/component.mk -------------------------------------------------------------------------------- /libraries/FastLED/cool_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/cool_projects.md -------------------------------------------------------------------------------- /libraries/FastLED/dev/dev.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/dev/dev.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Apa102HD/Apa102HD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Apa102HD/Apa102HD.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Apa102HDOverride/Apa102HDOverride.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Apa102HDOverride/Apa102HDOverride.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/ColorPalette/ColorPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/ColorPalette/ColorPalette.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/DemoReel100/DemoReel100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/DemoReel100/DemoReel100.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Esp32Rmt51/Esp32Rmt51.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Esp32Rmt51/Esp32Rmt51.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/EspI2SDemo/EspI2SDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/EspI2SDemo/EspI2SDemo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/FirstLight/FirstLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/FirstLight/FirstLight.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/OctoWS2811/OctoWS2811.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/OctoWS2811/OctoWS2811.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Pacifica/Pacifica.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Pacifica/Pacifica.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/Pride2015/Pride2015.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/Pride2015/Pride2015.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/RGBW/RGBW.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/RGBW/RGBW.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/RGBWEmulated/RGBWEmulated.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/RGBWEmulated/RGBWEmulated.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/TwinkleFox/TwinkleFox.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/TwinkleFox/TwinkleFox.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /libraries/FastLED/examples/_bugs/1653_S3_Apa102_Hardware_Pins/1653_S3_Apa102_Hardware_Pins.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/examples/_bugs/1653_S3_Apa102_Hardware_Pins/1653_S3_Apa102_Hardware_Pins.ino -------------------------------------------------------------------------------- /libraries/FastLED/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/keywords.txt -------------------------------------------------------------------------------- /libraries/FastLED/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/library.json -------------------------------------------------------------------------------- /libraries/FastLED/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/library.properties -------------------------------------------------------------------------------- /libraries/FastLED/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/lint -------------------------------------------------------------------------------- /libraries/FastLED/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/platformio.ini -------------------------------------------------------------------------------- /libraries/FastLED/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/pyproject.toml -------------------------------------------------------------------------------- /libraries/FastLED/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/release_notes.md -------------------------------------------------------------------------------- /libraries/FastLED/src/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/FastLED.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/FastLED.h -------------------------------------------------------------------------------- /libraries/FastLED/src/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/bitswap.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/bitswap.h -------------------------------------------------------------------------------- /libraries/FastLED/src/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/chipsets.h -------------------------------------------------------------------------------- /libraries/FastLED/src/chsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/chsv.h -------------------------------------------------------------------------------- /libraries/FastLED/src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/color.h -------------------------------------------------------------------------------- /libraries/FastLED/src/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/colorpalettes.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/colorpalettes.h -------------------------------------------------------------------------------- /libraries/FastLED/src/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/colorutils.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/colorutils.h -------------------------------------------------------------------------------- /libraries/FastLED/src/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/controller.h -------------------------------------------------------------------------------- /libraries/FastLED/src/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/cpp_compat.h -------------------------------------------------------------------------------- /libraries/FastLED/src/crgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/crgb.h -------------------------------------------------------------------------------- /libraries/FastLED/src/crgb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/crgb.hpp -------------------------------------------------------------------------------- /libraries/FastLED/src/dither_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/dither_mode.h -------------------------------------------------------------------------------- /libraries/FastLED/src/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/dmx.h -------------------------------------------------------------------------------- /libraries/FastLED/src/eorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/eorder.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastled_config.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastled_delay.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastled_progmem.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastpin.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastspi.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastspi_bitbang.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastspi_dma.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastspi_nop.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastspi_ref.h -------------------------------------------------------------------------------- /libraries/FastLED/src/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/fastspi_types.h -------------------------------------------------------------------------------- /libraries/FastLED/src/five_bit_hd_gamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/five_bit_hd_gamma.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/five_bit_hd_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/five_bit_hd_gamma.h -------------------------------------------------------------------------------- /libraries/FastLED/src/force_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/force_inline.h -------------------------------------------------------------------------------- /libraries/FastLED/src/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/hsv2rgb.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/hsv2rgb.h -------------------------------------------------------------------------------- /libraries/FastLED/src/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/led_sysdefs.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/lib8tion.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/lib8tion.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/lib8tion/math8.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/lib8tion/random8.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/lib8tion/scale8.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/lib8tion/trig8.h -------------------------------------------------------------------------------- /libraries/FastLED/src/lib8tion/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/lib8tion/types.h -------------------------------------------------------------------------------- /libraries/FastLED/src/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/namespace.h -------------------------------------------------------------------------------- /libraries/FastLED/src/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/noise.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/noise.h -------------------------------------------------------------------------------- /libraries/FastLED/src/pixel_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/pixel_controller.h -------------------------------------------------------------------------------- /libraries/FastLED/src/pixel_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/pixel_iterator.h -------------------------------------------------------------------------------- /libraries/FastLED/src/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/pixelset.h -------------------------------------------------------------------------------- /libraries/FastLED/src/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/pixeltypes.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/clockless_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/apollo3/clockless_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/fastled_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/apollo3/fastled_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/fastpin_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/apollo3/fastpin_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/fastspi_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/apollo3/fastspi_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/apollo3/led_sysdefs_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/apollo3/led_sysdefs_apollo3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/common/m0clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/common/m0clockless.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d21/clockless_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/HEAD/libraries/FastLED/src/platforms/arm/d51/README.txt -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/d51/clockless_arm_d51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/HEAD/libraries/FastLED/src/platforms/arm/k20/octows2811_controller.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/smartmatrix_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/k20/smartmatrix_t3.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/k20/ws2812serial_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/HEAD/libraries/FastLED/src/platforms/arm/mxrt1062/led_sysdefs_arm_mxrt1062.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/mxrt1062/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/mxrt1062/octows2811_controller.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/nrf51/clockless_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/HEAD/libraries/FastLED/src/platforms/arm/nrf52/led_sysdefs_arm_nrf52.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/renesas/clockless_arm_renesas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/renesas/clockless_arm_renesas.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/renesas/fastled_arm_renesas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/renesas/fastled_arm_renesas.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/renesas/fastpin_arm_renesas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/renesas/fastpin_arm_renesas.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/renesas/led_sysdef_arm_renesas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/renesas/led_sysdef_arm_renesas.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/rp2040/clockless_arm_rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/rp2040/clockless_arm_rp2040.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/rp2040/fastled_arm_rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/rp2040/fastled_arm_rp2040.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/rp2040/fastpin_arm_rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/rp2040/fastpin_arm_rp2040.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/rp2040/led_sysdefs_arm_rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/rp2040/led_sysdefs_arm_rp2040.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/rp2040/pio_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/rp2040/pio_asm.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/rp2040/pio_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/arm/rp2040/pio_gen.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/arm/sam/clockless_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/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/BallClock/HEAD/libraries/FastLED/src/platforms/avr/clockless_trinket.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/avr/led_sysdefs_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/avr/led_sysdefs_avr.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/clock_cycles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/clock_cycles.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/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/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/clockless_i2s_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/clockless_rmt_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/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/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/fastspi_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/fastspi_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/i2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/i2s.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/i2s.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/idf4_clockless_rmt_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/idf4_clockless_rmt_esp32.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/idf4_rmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/idf4_rmt.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/idf4_rmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/idf4_rmt.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/idf4_rmt_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/idf4_rmt_impl.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/idf4_rmt_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/idf4_rmt_impl.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/idf5_clockless_rmt_esp32.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "idf4_clockless_rmt_esp32.h" -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/enabled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/enabled.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_api.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_interface.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt_dev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt_dev.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt_dev_idf4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt_dev_idf4.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt_encoder.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_rmt_encoder.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_spi.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_spi_dev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_spi_dev.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/led_strip_types.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/readme -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/rmt_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/rmt_demo.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_strip/rmt_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/32/led_strip/rmt_demo.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/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/BallClock/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/BallClock/HEAD/libraries/FastLED/src/platforms/esp/8266/clockless_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/8266/fastled_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/8266/fastled_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/8266/fastpin_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/8266/fastpin_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/8266/fastspi_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/8266/fastspi_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/esp/8266/led_sysdefs_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/esp/8266/led_sysdefs_esp8266.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/fastspi_ardunio_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/fastspi_ardunio_core.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/stub/clockless_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/stub/clockless_stub.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/stub/fastled_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/stub/fastled_stub.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/stub/fastspi_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/stub/fastspi_stub.h -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/stub/led_sysdefs_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/stub/led_sysdefs_stub.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/platforms/stub/led_sysdefs_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/platforms/stub/led_sysdefs_stub.h -------------------------------------------------------------------------------- /libraries/FastLED/src/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/power_mgt.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/power_mgt.h -------------------------------------------------------------------------------- /libraries/FastLED/src/rgbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/rgbw.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/rgbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/rgbw.h -------------------------------------------------------------------------------- /libraries/FastLED/src/simplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/simplex.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/stub_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/stub_main.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/transpose8x1_noinline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/transpose8x1_noinline.cpp -------------------------------------------------------------------------------- /libraries/FastLED/src/transpose8x1_noinline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/transpose8x1_noinline.h -------------------------------------------------------------------------------- /libraries/FastLED/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/types.h -------------------------------------------------------------------------------- /libraries/FastLED/src/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/src/wiring.cpp -------------------------------------------------------------------------------- /libraries/FastLED/test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | uv run ci/ci-compile-native.py -------------------------------------------------------------------------------- /libraries/FastLED/workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/FastLED/workspace.code-workspace -------------------------------------------------------------------------------- /libraries/GSON/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/.gitattributes -------------------------------------------------------------------------------- /libraries/GSON/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/GSON/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/.piopm -------------------------------------------------------------------------------- /libraries/GSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/LICENSE -------------------------------------------------------------------------------- /libraries/GSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/README.md -------------------------------------------------------------------------------- /libraries/GSON/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/README_EN.md -------------------------------------------------------------------------------- /libraries/GSON/examples/parseTo/parseTo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/examples/parseTo/parseTo.ino -------------------------------------------------------------------------------- /libraries/GSON/examples/test/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/examples/test/test.ino -------------------------------------------------------------------------------- /libraries/GSON/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/keywords.txt -------------------------------------------------------------------------------- /libraries/GSON/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/library.properties -------------------------------------------------------------------------------- /libraries/GSON/src/GSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/src/GSON.h -------------------------------------------------------------------------------- /libraries/GSON/src/utils/bson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/src/utils/bson.h -------------------------------------------------------------------------------- /libraries/GSON/src/utils/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/src/utils/entry.h -------------------------------------------------------------------------------- /libraries/GSON/src/utils/entry_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/src/utils/entry_stack.h -------------------------------------------------------------------------------- /libraries/GSON/src/utils/entry_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/src/utils/entry_t.h -------------------------------------------------------------------------------- /libraries/GSON/src/utils/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/src/utils/parser.h -------------------------------------------------------------------------------- /libraries/GSON/src/utils/parser_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/src/utils/parser_stream.h -------------------------------------------------------------------------------- /libraries/GSON/src/utils/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/src/utils/string.h -------------------------------------------------------------------------------- /libraries/GSON/src/utils/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GSON/src/utils/types.h -------------------------------------------------------------------------------- /libraries/GTL/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/.gitattributes -------------------------------------------------------------------------------- /libraries/GTL/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/GTL/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/.piopm -------------------------------------------------------------------------------- /libraries/GTL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/LICENSE -------------------------------------------------------------------------------- /libraries/GTL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/README.md -------------------------------------------------------------------------------- /libraries/GTL/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/README_EN.md -------------------------------------------------------------------------------- /libraries/GTL/examples/list/list.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/examples/list/list.ino -------------------------------------------------------------------------------- /libraries/GTL/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/keywords.txt -------------------------------------------------------------------------------- /libraries/GTL/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/library.properties -------------------------------------------------------------------------------- /libraries/GTL/src/GTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/GTL.h -------------------------------------------------------------------------------- /libraries/GTL/src/array/array_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/array/array_copy.h -------------------------------------------------------------------------------- /libraries/GTL/src/array/array_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/array/array_shared.h -------------------------------------------------------------------------------- /libraries/GTL/src/array/array_uniq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/array/array_uniq.h -------------------------------------------------------------------------------- /libraries/GTL/src/fifo/fifo_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/fifo/fifo_ext.h -------------------------------------------------------------------------------- /libraries/GTL/src/fifo/fifo_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/fifo/fifo_static.h -------------------------------------------------------------------------------- /libraries/GTL/src/list/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/list/linked_list.h -------------------------------------------------------------------------------- /libraries/GTL/src/list/list_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/list/list_node.h -------------------------------------------------------------------------------- /libraries/GTL/src/ptr/ptr_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/ptr/ptr_shared.h -------------------------------------------------------------------------------- /libraries/GTL/src/ptr/ptr_uniq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/ptr/ptr_uniq.h -------------------------------------------------------------------------------- /libraries/GTL/src/stack/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/stack/stack.h -------------------------------------------------------------------------------- /libraries/GTL/src/stack/stack_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/stack/stack_ext.h -------------------------------------------------------------------------------- /libraries/GTL/src/stack/stack_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GTL/src/stack/stack_static.h -------------------------------------------------------------------------------- /libraries/GyverDB/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/.gitattributes -------------------------------------------------------------------------------- /libraries/GyverDB/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/GyverDB/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/.piopm -------------------------------------------------------------------------------- /libraries/GyverDB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/LICENSE -------------------------------------------------------------------------------- /libraries/GyverDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/README.md -------------------------------------------------------------------------------- /libraries/GyverDB/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/README_EN.md -------------------------------------------------------------------------------- /libraries/GyverDB/examples/connector/connector.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/examples/connector/connector.ino -------------------------------------------------------------------------------- /libraries/GyverDB/examples/test/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/examples/test/test.ino -------------------------------------------------------------------------------- /libraries/GyverDB/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/keywords.txt -------------------------------------------------------------------------------- /libraries/GyverDB/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/library.properties -------------------------------------------------------------------------------- /libraries/GyverDB/src/DBConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/src/DBConnector.h -------------------------------------------------------------------------------- /libraries/GyverDB/src/GyverDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/src/GyverDB.h -------------------------------------------------------------------------------- /libraries/GyverDB/src/GyverDBFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/src/GyverDBFile.h -------------------------------------------------------------------------------- /libraries/GyverDB/src/utils/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/src/utils/access.h -------------------------------------------------------------------------------- /libraries/GyverDB/src/utils/anytype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/src/utils/anytype.h -------------------------------------------------------------------------------- /libraries/GyverDB/src/utils/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/src/utils/block.h -------------------------------------------------------------------------------- /libraries/GyverDB/src/utils/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/src/utils/entry.h -------------------------------------------------------------------------------- /libraries/GyverDB/src/utils/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverDB/src/utils/types.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/LICENSE -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/README.md -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/keywords.txt -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/library.properties -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/BufferGFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/BufferGFX.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/FontGFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/FontGFX.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/GyverGFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/GyverGFX.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/RunningGFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/RunningGFX.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/StreamDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/StreamDisplay.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/core/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/core/buffer.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/core/core.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/core/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/core/decoder.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/core/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/core/reader.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/core/sizes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/core/sizes.cpp -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/core/sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/core/sizes.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/core/unpacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/core/unpacker.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/core/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/core/utils.cpp -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/core/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/core/utils.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/default/font3x5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/default/font3x5.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/default/font4x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/default/font4x6.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/default/font5x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/default/font5x8.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/src/default/icons8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/src/default/icons8x8.h -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/utils/Bitmaper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/utils/Bitmaper.html -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/utils/FontConvert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/utils/FontConvert.html -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/utils/FontEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/utils/FontEditor.html -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/utils/IconEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/utils/IconEditor.html -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/utils/fontgen/fontgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/utils/fontgen/fontgen.py -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/utils/fontgen/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/utils/fontgen/readme.md -------------------------------------------------------------------------------- /libraries/GyverGFX-dev/utils/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverGFX-dev/utils/script.js -------------------------------------------------------------------------------- /libraries/GyverHTTP/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/.gitattributes -------------------------------------------------------------------------------- /libraries/GyverHTTP/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/GyverHTTP/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/.piopm -------------------------------------------------------------------------------- /libraries/GyverHTTP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/LICENSE -------------------------------------------------------------------------------- /libraries/GyverHTTP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/README.md -------------------------------------------------------------------------------- /libraries/GyverHTTP/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/README_EN.md -------------------------------------------------------------------------------- /libraries/GyverHTTP/examples/captive_portal/captive_portal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/examples/captive_portal/captive_portal.ino -------------------------------------------------------------------------------- /libraries/GyverHTTP/examples/client_get_async/client_get_async.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/examples/client_get_async/client_get_async.ino -------------------------------------------------------------------------------- /libraries/GyverHTTP/examples/client_get_async2/client_get_async2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/examples/client_get_async2/client_get_async2.ino -------------------------------------------------------------------------------- /libraries/GyverHTTP/examples/client_get_sync/client_get_sync.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/examples/client_get_sync/client_get_sync.ino -------------------------------------------------------------------------------- /libraries/GyverHTTP/examples/server/server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/examples/server/server.ino -------------------------------------------------------------------------------- /libraries/GyverHTTP/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/keywords.txt -------------------------------------------------------------------------------- /libraries/GyverHTTP/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/library.properties -------------------------------------------------------------------------------- /libraries/GyverHTTP/src/GyverHTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/src/GyverHTTP.h -------------------------------------------------------------------------------- /libraries/GyverHTTP/src/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/src/StreamReader.h -------------------------------------------------------------------------------- /libraries/GyverHTTP/src/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/src/StreamWriter.h -------------------------------------------------------------------------------- /libraries/GyverHTTP/src/utils/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/src/utils/Client.h -------------------------------------------------------------------------------- /libraries/GyverHTTP/src/utils/EspClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/src/utils/EspClient.h -------------------------------------------------------------------------------- /libraries/GyverHTTP/src/utils/HeadersParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/src/utils/HeadersParser.h -------------------------------------------------------------------------------- /libraries/GyverHTTP/src/utils/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/src/utils/Server.h -------------------------------------------------------------------------------- /libraries/GyverHTTP/src/utils/ServerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/src/utils/ServerBase.h -------------------------------------------------------------------------------- /libraries/GyverHTTP/src/utils/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverHTTP/src/utils/cfg.h -------------------------------------------------------------------------------- /libraries/GyverNTP/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/.gitattributes -------------------------------------------------------------------------------- /libraries/GyverNTP/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/GyverNTP/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/.piopm -------------------------------------------------------------------------------- /libraries/GyverNTP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/LICENSE -------------------------------------------------------------------------------- /libraries/GyverNTP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/README.md -------------------------------------------------------------------------------- /libraries/GyverNTP/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/README_EN.md -------------------------------------------------------------------------------- /libraries/GyverNTP/examples/customClient/customClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/examples/customClient/customClient.ino -------------------------------------------------------------------------------- /libraries/GyverNTP/examples/testBlink/testBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/examples/testBlink/testBlink.ino -------------------------------------------------------------------------------- /libraries/GyverNTP/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/keywords.txt -------------------------------------------------------------------------------- /libraries/GyverNTP/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/library.properties -------------------------------------------------------------------------------- /libraries/GyverNTP/src/GyverNTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/src/GyverNTP.cpp -------------------------------------------------------------------------------- /libraries/GyverNTP/src/GyverNTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/src/GyverNTP.h -------------------------------------------------------------------------------- /libraries/GyverNTP/src/GyverNTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/GyverNTP/src/GyverNTPClient.h -------------------------------------------------------------------------------- /libraries/Looper/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/.gitattributes -------------------------------------------------------------------------------- /libraries/Looper/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/Looper/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/.piopm -------------------------------------------------------------------------------- /libraries/Looper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/LICENSE -------------------------------------------------------------------------------- /libraries/Looper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/README.md -------------------------------------------------------------------------------- /libraries/Looper/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/README_EN.md -------------------------------------------------------------------------------- /libraries/Looper/examples/advancedTimerData/advancedTimerData.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/examples/advancedTimerData/advancedTimerData.ino -------------------------------------------------------------------------------- /libraries/Looper/examples/customButton/customButton.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/examples/customButton/customButton.ino -------------------------------------------------------------------------------- /libraries/Looper/examples/customTimer/customTimer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/examples/customTimer/customTimer.ino -------------------------------------------------------------------------------- /libraries/Looper/examples/looperEvents/looperEvents.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/examples/looperEvents/looperEvents.ino -------------------------------------------------------------------------------- /libraries/Looper/examples/minTimer/minTimer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/examples/minTimer/minTimer.ino -------------------------------------------------------------------------------- /libraries/Looper/examples/threads/threads.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/examples/threads/threads.ino -------------------------------------------------------------------------------- /libraries/Looper/examples/ticker/ticker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/examples/ticker/ticker.ino -------------------------------------------------------------------------------- /libraries/Looper/examples/timeout/timeout.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/examples/timeout/timeout.ino -------------------------------------------------------------------------------- /libraries/Looper/examples/timerControl/timerControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/examples/timerControl/timerControl.ino -------------------------------------------------------------------------------- /libraries/Looper/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/keywords.txt -------------------------------------------------------------------------------- /libraries/Looper/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/library.properties -------------------------------------------------------------------------------- /libraries/Looper/src/Looper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/Looper.h -------------------------------------------------------------------------------- /libraries/Looper/src/LooperClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/LooperClass.cpp -------------------------------------------------------------------------------- /libraries/Looper/src/LooperClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/LooperClass.h -------------------------------------------------------------------------------- /libraries/Looper/src/nodes/CallbackData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/nodes/CallbackData.h -------------------------------------------------------------------------------- /libraries/Looper/src/nodes/Listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/nodes/Listener.h -------------------------------------------------------------------------------- /libraries/Looper/src/nodes/LoopTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/nodes/LoopTask.cpp -------------------------------------------------------------------------------- /libraries/Looper/src/nodes/LoopTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/nodes/LoopTask.h -------------------------------------------------------------------------------- /libraries/Looper/src/nodes/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/nodes/Thread.h -------------------------------------------------------------------------------- /libraries/Looper/src/nodes/Ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/nodes/Ticker.h -------------------------------------------------------------------------------- /libraries/Looper/src/nodes/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/nodes/Timer.h -------------------------------------------------------------------------------- /libraries/Looper/src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/platform.cpp -------------------------------------------------------------------------------- /libraries/Looper/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/platform.h -------------------------------------------------------------------------------- /libraries/Looper/src/utils/SimpleTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/utils/SimpleTimer.cpp -------------------------------------------------------------------------------- /libraries/Looper/src/utils/SimpleTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/utils/SimpleTimer.h -------------------------------------------------------------------------------- /libraries/Looper/src/utils/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/utils/flags.h -------------------------------------------------------------------------------- /libraries/Looper/src/utils/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/utils/hash.h -------------------------------------------------------------------------------- /libraries/Looper/src/utils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/utils/list.h -------------------------------------------------------------------------------- /libraries/Looper/src/utils/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/utils/macro.h -------------------------------------------------------------------------------- /libraries/Looper/src/utils/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Looper/src/utils/stack.h -------------------------------------------------------------------------------- /libraries/Settings/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/.gitattributes -------------------------------------------------------------------------------- /libraries/Settings/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/Settings/.gitignore: -------------------------------------------------------------------------------- 1 | .piopm -------------------------------------------------------------------------------- /libraries/Settings/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/.piopm -------------------------------------------------------------------------------- /libraries/Settings/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/LICENSE -------------------------------------------------------------------------------- /libraries/Settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/README.md -------------------------------------------------------------------------------- /libraries/Settings/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/README_EN.md -------------------------------------------------------------------------------- /libraries/Settings/examples/demo_data/demo_data.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/examples/demo_data/demo_data.ino -------------------------------------------------------------------------------- /libraries/Settings/examples/test/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/examples/test/test.ino -------------------------------------------------------------------------------- /libraries/Settings/examples/wificonnect/wificonnect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/examples/wificonnect/wificonnect.ino -------------------------------------------------------------------------------- /libraries/Settings/examples/wificonnector/wificonnector.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/examples/wificonnector/wificonnector.ino -------------------------------------------------------------------------------- /libraries/Settings/img/promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/img/promo.png -------------------------------------------------------------------------------- /libraries/Settings/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/keywords.txt -------------------------------------------------------------------------------- /libraries/Settings/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/library.properties -------------------------------------------------------------------------------- /libraries/Settings/src/SettingsAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/SettingsAsync.h -------------------------------------------------------------------------------- /libraries/Settings/src/SettingsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/SettingsBase.h -------------------------------------------------------------------------------- /libraries/Settings/src/SettingsESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/SettingsESP.h -------------------------------------------------------------------------------- /libraries/Settings/src/SettingsGyver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/SettingsGyver.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/AnyPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/AnyPtr.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/DnsWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/DnsWrapper.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/SettingsBase_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/SettingsBase_class.cpp -------------------------------------------------------------------------------- /libraries/Settings/src/core/SettingsBase_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/SettingsBase_class.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/build.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/builder.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/codes.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/colors.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/containers.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/containers_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/containers_class.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/fs.cpp -------------------------------------------------------------------------------- /libraries/Settings/src/core/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/fs.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/ota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/ota.cpp -------------------------------------------------------------------------------- /libraries/Settings/src/core/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/ota.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/packet.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/timer.h -------------------------------------------------------------------------------- /libraries/Settings/src/core/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/core/updater.h -------------------------------------------------------------------------------- /libraries/Settings/src/web/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Settings/src/web/settings.h -------------------------------------------------------------------------------- /libraries/Stamp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/.gitattributes -------------------------------------------------------------------------------- /libraries/Stamp/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/Stamp/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/.piopm -------------------------------------------------------------------------------- /libraries/Stamp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/LICENSE -------------------------------------------------------------------------------- /libraries/Stamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/README.md -------------------------------------------------------------------------------- /libraries/Stamp/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/README_EN.md -------------------------------------------------------------------------------- /libraries/Stamp/examples/dayIndex/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/examples/dayIndex/index.h -------------------------------------------------------------------------------- /libraries/Stamp/examples/demo/demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/examples/demo/demo.ino -------------------------------------------------------------------------------- /libraries/Stamp/examples/sync/sync.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/examples/sync/sync.ino -------------------------------------------------------------------------------- /libraries/Stamp/examples/test/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/examples/test/test.ino -------------------------------------------------------------------------------- /libraries/Stamp/examples/ticker/ticker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/examples/ticker/ticker.ino -------------------------------------------------------------------------------- /libraries/Stamp/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/keywords.txt -------------------------------------------------------------------------------- /libraries/Stamp/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/library.properties -------------------------------------------------------------------------------- /libraries/Stamp/src/Stamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/Stamp.h -------------------------------------------------------------------------------- /libraries/Stamp/src/StampSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/StampSync.h -------------------------------------------------------------------------------- /libraries/Stamp/src/StampTicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/StampTicker.h -------------------------------------------------------------------------------- /libraries/Stamp/src/core/Datime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/core/Datime.h -------------------------------------------------------------------------------- /libraries/Stamp/src/core/DaySeconds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/core/DaySeconds.h -------------------------------------------------------------------------------- /libraries/Stamp/src/core/StampCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/core/StampCore.h -------------------------------------------------------------------------------- /libraries/Stamp/src/core/StampUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/core/StampUtils.cpp -------------------------------------------------------------------------------- /libraries/Stamp/src/core/StampUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/core/StampUtils.h -------------------------------------------------------------------------------- /libraries/Stamp/src/core/buildStamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/core/buildStamp.h -------------------------------------------------------------------------------- /libraries/Stamp/src/core/stamp_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/core/stamp_zone.cpp -------------------------------------------------------------------------------- /libraries/Stamp/src/core/stamp_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/Stamp/src/core/stamp_zone.h -------------------------------------------------------------------------------- /libraries/StreamIO/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StreamIO/.gitattributes -------------------------------------------------------------------------------- /libraries/StreamIO/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StreamIO/.piopm -------------------------------------------------------------------------------- /libraries/StreamIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StreamIO/LICENSE -------------------------------------------------------------------------------- /libraries/StreamIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StreamIO/README.md -------------------------------------------------------------------------------- /libraries/StreamIO/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StreamIO/keywords.txt -------------------------------------------------------------------------------- /libraries/StreamIO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StreamIO/library.properties -------------------------------------------------------------------------------- /libraries/StreamIO/src/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StreamIO/src/Reader.h -------------------------------------------------------------------------------- /libraries/StreamIO/src/StreamIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StreamIO/src/StreamIO.h -------------------------------------------------------------------------------- /libraries/StreamIO/src/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StreamIO/src/Writer.h -------------------------------------------------------------------------------- /libraries/StringUtils/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/.gitattributes -------------------------------------------------------------------------------- /libraries/StringUtils/.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /libraries/StringUtils/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/.piopm -------------------------------------------------------------------------------- /libraries/StringUtils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/LICENSE -------------------------------------------------------------------------------- /libraries/StringUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/README.md -------------------------------------------------------------------------------- /libraries/StringUtils/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/README_EN.md -------------------------------------------------------------------------------- /libraries/StringUtils/examples/parse/parse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/examples/parse/parse.ino -------------------------------------------------------------------------------- /libraries/StringUtils/examples/test/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/examples/test/test.ino -------------------------------------------------------------------------------- /libraries/StringUtils/examples/unitTest/unitTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/examples/unitTest/unitTest.ino -------------------------------------------------------------------------------- /libraries/StringUtils/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/keywords.txt -------------------------------------------------------------------------------- /libraries/StringUtils/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/library.properties -------------------------------------------------------------------------------- /libraries/StringUtils/src/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/StringUtils.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/PrintString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/PrintString.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/String.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/Text.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/TextList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/TextList.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/TextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/TextParser.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/Value.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/b64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/b64.cpp -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/b64.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/convert.cpp -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/convert.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/qwerty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/qwerty.cpp -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/qwerty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/qwerty.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/unicode.cpp -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/unicode.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/url.cpp -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/convert/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/convert/url.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/hash.cpp -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/hash.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/list.cpp -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/list.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/parser.h -------------------------------------------------------------------------------- /libraries/StringUtils/src/utils/splitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/StringUtils/src/utils/splitter.h -------------------------------------------------------------------------------- /libraries/WiFiConnector/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/WiFiConnector/.gitattributes -------------------------------------------------------------------------------- /libraries/WiFiConnector/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/WiFiConnector/.piopm -------------------------------------------------------------------------------- /libraries/WiFiConnector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/WiFiConnector/LICENSE -------------------------------------------------------------------------------- /libraries/WiFiConnector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/WiFiConnector/README.md -------------------------------------------------------------------------------- /libraries/WiFiConnector/examples/demo/demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/WiFiConnector/examples/demo/demo.ino -------------------------------------------------------------------------------- /libraries/WiFiConnector/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/WiFiConnector/keywords.txt -------------------------------------------------------------------------------- /libraries/WiFiConnector/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/WiFiConnector/library.properties -------------------------------------------------------------------------------- /libraries/WiFiConnector/src/WiFiConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/WiFiConnector/src/WiFiConnector.cpp -------------------------------------------------------------------------------- /libraries/WiFiConnector/src/WiFiConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/libraries/WiFiConnector/src/WiFiConnector.h -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/project.json -------------------------------------------------------------------------------- /schemes/scheme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/BallClock/HEAD/schemes/scheme.jpg --------------------------------------------------------------------------------