├── .gitignore ├── .gitmodules ├── FIXME_git_submodules ├── LICENSE ├── README.md ├── doc ├── Adafruit_touchpaint_screenShot.png ├── Flappy.png └── TSE_spaceInvader1.PNG ├── examples ├── AnimatedGIFs │ ├── AnimatedGIFs.ino │ ├── FilenameFunctions_Impl.h │ ├── GifAnim_Impl.h │ ├── GifDecoder.h │ ├── GifDecoder_Impl.h │ ├── LICENSE.txt │ ├── LzwDecoder_Impl.h │ ├── Makefile │ ├── Makefile.orig │ ├── README.md │ ├── animatedgif_config.h │ ├── data32 │ ├── data64 │ ├── gifs │ └── neomatrix_config.h ├── AnimatedGIFs_SimpleGifAnimViewer │ ├── GifDecoder.h │ ├── GifDecoder_Impl.h │ ├── LzwDecoder_Impl.h │ ├── Makefile │ ├── Makefile.orig │ ├── SimpleGifAnimViewer.ino │ └── neomatrix_config.h ├── AnimatedGIFs_SimpleGifAnimViewer2 │ ├── GifAnim_Impl.h │ ├── GifDecoder.h │ ├── GifDecoder_Impl.h │ ├── LzwDecoder_Impl.h │ ├── Makefile │ ├── Makefile.orig │ ├── SimpleGifAnimViewer2.ino │ ├── animatedgif_config.h │ └── neomatrix_config.h ├── Aurora │ ├── Attractor.h │ ├── Aurora.ino │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── README.md │ ├── Vector.h │ ├── attract │ ├── bounce │ ├── cube │ ├── flock │ ├── flowfield │ ├── incrementaldrift │ ├── incrementaldrift2 │ ├── main.h │ ├── matrix.h │ ├── neomatrix_config.h │ ├── pendulumwave │ ├── radar │ ├── spiral │ ├── spiro │ ├── swirl │ └── wave ├── FireWorks2 │ ├── FireWorks2.ino │ ├── Makefile │ └── neomatrix_config.h ├── LEDSprites-Pacman │ ├── LEDSprites-Pacman.ino │ ├── Makefile │ └── neomatrix_config.h ├── Makefile ├── PlasmaAnimation │ ├── Makefile │ ├── PlasmaAnimation.ino │ └── neomatrix_config.h ├── PolarBasics │ ├── Makefile │ ├── PolarBasics │ ├── PolarBasics.ino │ └── neomatrix_config.h ├── REANME.md ├── Sublime_Demos │ ├── Makefile │ ├── Sublime_Demos.ino │ └── neomatrix_config.h ├── TME ├── Table_Mark_Estes │ ├── Makefile │ ├── Table_Mark_Estes.ino │ └── neomatrix_config.h ├── Table_Mark_Estes14-int16-wip │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── README.md │ ├── Table_Mark_Estes14-int16-wip.ino │ ├── Vector.h │ ├── main.h │ ├── matrix.h │ └── neomatrix_config.h ├── Table_Mark_Estes14 │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── Table_Mark_Estes14.ino │ ├── Vector.h │ ├── main.h │ ├── matrix.h │ └── neomatrix_config.h ├── Table_Mark_Estes34 │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── Table_Mark_Estes34.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── Vector.h │ ├── matrix.h │ └── neomatrix_config.h ├── Table_Mark_Estes44 │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── Table_Mark_Estes44.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── Table_Mark_Estes_config.h.orig │ ├── Vector.h │ ├── matrix.h │ └── neomatrix_config.h ├── Table_Mark_Estes49 │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── Table_Mark_Estes49.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── Vector.h │ ├── matrix.h │ └── neomatrix_config.h ├── Table_Mark_Estes50 │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── Table_Mark_Estes50.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── Vector.h │ ├── matrix.h │ └── neomatrix_config.h ├── Table_Mark_Estes56 │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── Table_Mark_Estes56 │ ├── Table_Mark_Estes56.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── Vector.h │ ├── matrix.h │ └── neomatrix_config.h ├── Table_Mark_Estes60 │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── Table_Mark_Estes60.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── Vector.h │ ├── matrix.h │ └── neomatrix_config.h ├── Table_Mark_Estes63 │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── Table_Mark_Estes63.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── Vector.h │ ├── matrix.h │ └── neomatrix_config.h ├── Table_Mark_Estes69 │ ├── Attractor.h │ ├── Boid.h │ ├── Drawable.h │ ├── Effects.h │ ├── Geometry.h │ ├── Makefile │ ├── PatternAttract.h │ ├── PatternBounce.h │ ├── PatternCube.h │ ├── PatternFlock.h │ ├── PatternFlowField.h │ ├── PatternIncrementalDrift.h │ ├── PatternIncrementalDrift2.h │ ├── PatternPendulumWave.h │ ├── PatternRadar.h │ ├── PatternSpiral.h │ ├── PatternSpiro.h │ ├── PatternSwirl.h │ ├── PatternWave.h │ ├── Table_Mark_Estes69.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── Table_Mark_Estes_config_orig.h │ ├── Vector.h │ ├── matrix.h │ ├── neomatrix_config.h │ └── relink ├── Table_Mark_Estes_275 │ ├── Jove24.c │ ├── Makefile │ ├── Moon.c │ ├── Table_Mark_Estes_275.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── blue24c.c │ ├── blue48.c │ ├── bluea24bf.c │ ├── earth24.c │ ├── earth48.c │ ├── earthb24.c │ ├── earthb48.c │ ├── gimpbitmap.h │ ├── green24.c │ ├── green48.c │ ├── gring24.c │ ├── heart24.c │ ├── heart48.c │ ├── icepl24.c │ ├── monarch24.c │ ├── monarch48.c │ ├── neomatrix_config.h │ ├── newgbf24.c │ ├── orange48.c │ └── relink ├── Table_Mark_Estes_293 │ ├── Jove24.h │ ├── Moon.h │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── blue24c.h │ ├── blue48.h │ ├── bluea24bf.h │ ├── earth24.h │ ├── earth48.h │ ├── earthb24.h │ ├── earthb48.h │ ├── gimpbitmap.h │ ├── green24.h │ ├── green48.h │ ├── gring24.h │ ├── heart24.h │ ├── heart48.h │ ├── icepl24.h │ ├── monarch24.h │ ├── monarch48.h │ ├── neomatrix_config.h │ ├── newgbf24.h │ ├── orange48.h │ └── relink ├── Table_Mark_Estes_331 │ ├── Bluerobot.h │ ├── Classicrobot.h │ ├── Colors.hpp │ ├── Dearth48.h │ ├── ESP_Color.h │ ├── Earth348.h │ ├── FlowerA.h │ ├── FlowerB.h │ ├── FlowerC.h │ ├── FlowerD.h │ ├── FlowerE.h │ ├── FlowerF.h │ ├── FlowerG.h │ ├── FlowerH.h │ ├── Jove24.h │ ├── Makefile │ ├── Spider48.h │ ├── Table_Mark_Estes_331.ino │ ├── Table_Mark_Estes_Impl.h │ ├── Table_Mark_Estes_config.h │ ├── Table_Mark_Estes_config.h_merlin │ ├── blue24c.h │ ├── blue48.h │ ├── bluea24bf.h │ ├── earth24.h │ ├── earth48.h │ ├── earthb24.h │ ├── earthb48.h │ ├── frog448.h │ ├── ghost48.h │ ├── gimpbitmap.h │ ├── green24.h │ ├── green48.h │ ├── gring24.h │ ├── heart24.h │ ├── heart48.h │ ├── icepl24.h │ ├── monarch24.h │ ├── monarch48.h │ ├── neomatrix_config.h │ ├── newgbf24.h │ ├── orange48.h │ └── relink ├── TwinkleFOX │ ├── Makefile │ ├── TwinkleFOX.ino │ └── neomatrix_config.h ├── neomatrix_config.h └── v4lcapture │ ├── Makefile │ ├── neomatrix_config.h │ ├── v4lcapture.ino │ ├── v4lcapture_single.h │ └── v4lcapture_single.h_README ├── examples_orig_tft ├── Adafruit_pictureDragon │ ├── Adafruit_pictureDragon.h │ ├── Adafruit_pictureEmbed.ino │ └── Makefile ├── Adafruit_touchpaint │ ├── Adafruit_touchpaint.ino │ └── Makefile ├── AnalogReadSerial │ ├── AnalogReadSerial.ino │ └── Makefile ├── Blink │ ├── Blink.ino │ └── Makefile ├── Flappy │ ├── Flappy.ino │ ├── Makefile │ ├── collisions.cpp │ ├── collisions.h │ └── constants.h ├── HelloServer │ ├── HTTP_Method.h │ ├── HelloServer.ino │ ├── Makefile │ ├── WebServer.cpp │ └── WebServer.h ├── README.md ├── SerialInput │ ├── Makefile │ └── SerialInput.ino ├── TFT_demo │ ├── Makefile │ └── TFT_demo.ino ├── TekSpriteEditor1 │ ├── Makefile │ └── TekSpriteEditor1.ino ├── TekSpriteEditor2 │ ├── Makefile │ └── TekSpriteEditor2.ino ├── ToneMelody │ ├── Makefile │ └── ToneMelody.ino ├── Touch │ ├── Makefile │ └── Touch.ino ├── cellArt │ ├── Makefile │ └── cellArt.ino ├── gameOfLife │ ├── Makefile │ └── gameOfLife.ino ├── gnuPlot │ ├── Makefile │ └── gnuPlot.ino ├── guiButton │ ├── Makefile │ └── guiButton.ino ├── guiLed │ ├── Makefile │ └── guiLed.ino ├── guiTest │ ├── Makefile │ └── guiTest.ino ├── input │ ├── Makefile │ └── main.ino └── sketch │ ├── Makefile │ └── sketch.ino ├── libraries ├── Adafruit_GFX │ ├── Adafruit_GFX.cpp │ ├── Adafruit_GFX.h │ ├── Fonts │ │ ├── FreeMono12pt7b.h │ │ ├── FreeMono18pt7b.h │ │ ├── FreeMono24pt7b.h │ │ ├── FreeMono9pt7b.h │ │ ├── FreeMonoBold12pt7b.h │ │ ├── FreeMonoBold18pt7b.h │ │ ├── FreeMonoBold24pt7b.h │ │ ├── FreeMonoBold9pt7b.h │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ ├── FreeMonoOblique12pt7b.h │ │ ├── FreeMonoOblique18pt7b.h │ │ ├── FreeMonoOblique24pt7b.h │ │ ├── FreeMonoOblique9pt7b.h │ │ ├── FreeSans12pt7b.h │ │ ├── FreeSans18pt7b.h │ │ ├── FreeSans24pt7b.h │ │ ├── FreeSans9pt7b.h │ │ ├── FreeSansBold12pt7b.h │ │ ├── FreeSansBold18pt7b.h │ │ ├── FreeSansBold24pt7b.h │ │ ├── FreeSansBold9pt7b.h │ │ ├── FreeSansBoldOblique12pt7b.h │ │ ├── FreeSansBoldOblique18pt7b.h │ │ ├── FreeSansBoldOblique24pt7b.h │ │ ├── FreeSansBoldOblique9pt7b.h │ │ ├── FreeSansOblique12pt7b.h │ │ ├── FreeSansOblique18pt7b.h │ │ ├── FreeSansOblique24pt7b.h │ │ ├── FreeSansOblique9pt7b.h │ │ ├── FreeSerif12pt7b.h │ │ ├── FreeSerif18pt7b.h │ │ ├── FreeSerif24pt7b.h │ │ ├── FreeSerif9pt7b.h │ │ ├── FreeSerifBold12pt7b.h │ │ ├── FreeSerifBold18pt7b.h │ │ ├── FreeSerifBold24pt7b.h │ │ ├── FreeSerifBold9pt7b.h │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ ├── FreeSerifItalic12pt7b.h │ │ ├── FreeSerifItalic18pt7b.h │ │ ├── FreeSerifItalic24pt7b.h │ │ ├── FreeSerifItalic9pt7b.h │ │ ├── Org_01.h │ │ ├── Picopixel.h │ │ ├── Tiny3x3a2pt7b.h │ │ └── TomThumb.h │ ├── gfxfont.h │ └── glcdfont.c ├── Adafruit_ILI9341 │ └── Adafruit_ILI9341.h ├── Adafruit_STMPE610 │ └── Adafruit_STMPE610.h ├── GuiPittix │ ├── Gui.h │ ├── TFT_Adapter.h │ └── TFT_Pc.h ├── SPI │ ├── SPI.cpp │ └── SPI.h └── Wire │ ├── Wire.cpp │ └── Wire.h ├── makeNativeArduino.mk ├── rpi-rgb-led-matrix.README └── src ├── cores └── arduino │ ├── Arduino.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── SerialConsole.cpp │ ├── SerialConsole.h │ ├── Stream.cpp │ ├── Stream.h │ ├── WMath.cpp │ ├── WString.cpp │ ├── WString.h │ ├── avr │ ├── interrupt.h │ └── pgmspace.h │ ├── binary.h │ ├── pgmspace.h │ ├── pins_arduino.h │ ├── stdlib_noniso.c │ ├── stdlib_noniso.h │ ├── wiring_analog.cpp │ ├── wiring_digital.cpp │ └── wiring_private.h ├── main.cpp └── system ├── TFT_LinuxWrapper.h ├── Touch_LinuxWrapper.cpp ├── Touch_LinuxWrapper.h ├── XWindow.cpp ├── XWindow.h ├── posixTime.c └── posixTime.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/.gitmodules -------------------------------------------------------------------------------- /FIXME_git_submodules: -------------------------------------------------------------------------------- 1 | git submodule update --init --recursive 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/README.md -------------------------------------------------------------------------------- /doc/Adafruit_touchpaint_screenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/doc/Adafruit_touchpaint_screenShot.png -------------------------------------------------------------------------------- /doc/Flappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/doc/Flappy.png -------------------------------------------------------------------------------- /doc/TSE_spaceInvader1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/doc/TSE_spaceInvader1.PNG -------------------------------------------------------------------------------- /examples/AnimatedGIFs/AnimatedGIFs.ino: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/AnimatedGIFs.ino -------------------------------------------------------------------------------- /examples/AnimatedGIFs/FilenameFunctions_Impl.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/FilenameFunctions_Impl.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs/GifAnim_Impl.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/GifAnim_Impl.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs/GifDecoder.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/GifDecoder.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs/GifDecoder_Impl.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/GifDecoder_Impl.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/LICENSE.txt -------------------------------------------------------------------------------- /examples/AnimatedGIFs/LzwDecoder_Impl.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/LzwDecoder_Impl.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/AnimatedGIFs/Makefile -------------------------------------------------------------------------------- /examples/AnimatedGIFs/Makefile.orig: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/Makefile -------------------------------------------------------------------------------- /examples/AnimatedGIFs/README.md: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/README.md -------------------------------------------------------------------------------- /examples/AnimatedGIFs/animatedgif_config.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/animatedgif_config.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs/data32: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/data32 -------------------------------------------------------------------------------- /examples/AnimatedGIFs/data64: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/data64 -------------------------------------------------------------------------------- /examples/AnimatedGIFs/gifs: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/gifs -------------------------------------------------------------------------------- /examples/AnimatedGIFs/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer/GifDecoder.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/GifDecoder.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer/GifDecoder_Impl.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/GifDecoder_Impl.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer/LzwDecoder_Impl.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/LzwDecoder_Impl.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer/Makefile: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/Makefile -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer/Makefile.orig: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/Makefile.orig -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer/SimpleGifAnimViewer.ino: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/SimpleGifAnimViewer/SimpleGifAnimViewer.ino -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/neomatrix_config.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer2/GifAnim_Impl.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/GifAnim_Impl.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer2/GifDecoder.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/GifDecoder.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer2/GifDecoder_Impl.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/GifDecoder_Impl.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer2/LzwDecoder_Impl.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/LzwDecoder_Impl.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer2/Makefile: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/Makefile -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer2/Makefile.orig: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/Makefile.orig -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer2/SimpleGifAnimViewer2.ino: -------------------------------------------------------------------------------- 1 | ../NeoMatrix-FastLED-IR/demos/AnimatedGIFs/SimpleGifAnimViewer2/SimpleGifAnimViewer2.ino -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer2/animatedgif_config.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/animatedgif_config.h -------------------------------------------------------------------------------- /examples/AnimatedGIFs_SimpleGifAnimViewer2/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../GFX_AnimatedGIFs/neomatrix_config.h -------------------------------------------------------------------------------- /examples/Aurora/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/Attractor.h -------------------------------------------------------------------------------- /examples/Aurora/Aurora.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/Aurora.ino -------------------------------------------------------------------------------- /examples/Aurora/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/Boid.h -------------------------------------------------------------------------------- /examples/Aurora/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/Drawable.h -------------------------------------------------------------------------------- /examples/Aurora/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/Effects.h -------------------------------------------------------------------------------- /examples/Aurora/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/Geometry.h -------------------------------------------------------------------------------- /examples/Aurora/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Aurora/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternAttract.h -------------------------------------------------------------------------------- /examples/Aurora/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternBounce.h -------------------------------------------------------------------------------- /examples/Aurora/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternCube.h -------------------------------------------------------------------------------- /examples/Aurora/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternFlock.h -------------------------------------------------------------------------------- /examples/Aurora/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Aurora/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Aurora/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Aurora/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Aurora/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternRadar.h -------------------------------------------------------------------------------- /examples/Aurora/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Aurora/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Aurora/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Aurora/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/PatternWave.h -------------------------------------------------------------------------------- /examples/Aurora/README.md: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/README.md -------------------------------------------------------------------------------- /examples/Aurora/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/Vector.h -------------------------------------------------------------------------------- /examples/Aurora/attract: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/attract -------------------------------------------------------------------------------- /examples/Aurora/bounce: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/bounce -------------------------------------------------------------------------------- /examples/Aurora/cube: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/cube -------------------------------------------------------------------------------- /examples/Aurora/flock: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/flock -------------------------------------------------------------------------------- /examples/Aurora/flowfield: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/flowfield -------------------------------------------------------------------------------- /examples/Aurora/incrementaldrift: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/incrementaldrift -------------------------------------------------------------------------------- /examples/Aurora/incrementaldrift2: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/incrementaldrift2 -------------------------------------------------------------------------------- /examples/Aurora/main.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/main.h -------------------------------------------------------------------------------- /examples/Aurora/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/matrix.h -------------------------------------------------------------------------------- /examples/Aurora/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Aurora/pendulumwave: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/pendulumwave -------------------------------------------------------------------------------- /examples/Aurora/radar: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/radar -------------------------------------------------------------------------------- /examples/Aurora/spiral: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/spiral -------------------------------------------------------------------------------- /examples/Aurora/spiro: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/spiro -------------------------------------------------------------------------------- /examples/Aurora/swirl: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/swirl -------------------------------------------------------------------------------- /examples/Aurora/wave: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/GFX/Aurora/wave -------------------------------------------------------------------------------- /examples/FireWorks2/FireWorks2.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/FastLED/FireWorks2/FireWorks2.ino -------------------------------------------------------------------------------- /examples/FireWorks2/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/FireWorks2/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/LEDSprites-Pacman/LEDSprites-Pacman.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/LEDSprites-Pacman/LEDSprites-Pacman.ino -------------------------------------------------------------------------------- /examples/LEDSprites-Pacman/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/LEDSprites-Pacman/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/PlasmaAnimation/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/PlasmaAnimation/PlasmaAnimation.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/FastLED/PlasmaAnimation/PlasmaAnimation.ino -------------------------------------------------------------------------------- /examples/PlasmaAnimation/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/PolarBasics/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/PolarBasics/PolarBasics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/PolarBasics/PolarBasics -------------------------------------------------------------------------------- /examples/PolarBasics/PolarBasics.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/FastLED/PolarBasics/PolarBasics.ino -------------------------------------------------------------------------------- /examples/PolarBasics/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/REANME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/REANME.md -------------------------------------------------------------------------------- /examples/Sublime_Demos/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Sublime_Demos/Sublime_Demos.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/FastLED/Sublime_Demos/Sublime_Demos.ino -------------------------------------------------------------------------------- /examples/Sublime_Demos/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/FastLED/Sublime_Demos/neomatrix_config.h -------------------------------------------------------------------------------- /examples/TME: -------------------------------------------------------------------------------- 1 | Table_Mark_Estes_293 -------------------------------------------------------------------------------- /examples/Table_Mark_Estes/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes/Table_Mark_Estes.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes/Table_Mark_Estes.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/README.md: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/README.md -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/Table_Mark_Estes14-int16-wip.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/Table_Mark_Estes14-int16-wip.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/main.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/main.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14-int16-wip/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14-int16-wip/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/Table_Mark_Estes14.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/Table_Mark_Estes14.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/main.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/main.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes14/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes14/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Table_Mark_Estes34.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/Table_Mark_Estes34.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes34/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes34/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Table_Mark_Estes44.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/Table_Mark_Estes44.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes44/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Table_Mark_Estes_config.h.orig: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes44/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes44/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Table_Mark_Estes49.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/Table_Mark_Estes49.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes49/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes49/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes49/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Table_Mark_Estes50.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/Table_Mark_Estes50.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes50/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes50/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes50/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Table_Mark_Estes56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes56/Table_Mark_Estes56 -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Table_Mark_Estes56.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/Table_Mark_Estes56.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes56/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes56/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes56/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Table_Mark_Estes60.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/Table_Mark_Estes60.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes60/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes60/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes60/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Table_Mark_Estes63.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/Table_Mark_Estes63.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes63/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes63/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes63/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Attractor.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/Attractor.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Boid.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/Boid.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Drawable.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/Drawable.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Effects.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/Effects.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Geometry.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/Geometry.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternAttract.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternAttract.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternBounce.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternBounce.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternCube.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternCube.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternFlock.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternFlock.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternFlowField.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternFlowField.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternIncrementalDrift.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternIncrementalDrift.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternIncrementalDrift2.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternIncrementalDrift2.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternPendulumWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternPendulumWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternRadar.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternRadar.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternSpiral.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternSpiral.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternSpiro.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternSpiro.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternSwirl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternSwirl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/PatternWave.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/PatternWave.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Table_Mark_Estes69.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/Table_Mark_Estes69.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes69/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Table_Mark_Estes_config_orig.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/Vector.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/Vector.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/matrix.h: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/LEDMatrix/Table_Mark_Estes69/matrix.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes69/relink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes69/relink -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/Jove24.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/Jove24.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/Moon.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/Moon.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/Table_Mark_Estes_275.ino: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/Table_Mark_Estes_275.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/Table_Mark_Estes_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/blue24c.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/blue24c.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/blue48.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/blue48.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/bluea24bf.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/bluea24bf.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/earth24.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/earth24.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/earth48.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/earth48.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/earthb24.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/earthb24.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/earthb48.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/earthb48.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/gimpbitmap.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/gimpbitmap.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/green24.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/green24.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/green48.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/green48.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/gring24.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/gring24.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/heart24.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/heart24.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/heart48.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/heart48.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/icepl24.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/icepl24.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/monarch24.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/monarch24.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/monarch48.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/monarch48.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/newgbf24.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/newgbf24.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/orange48.c: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_275/orange48.c -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_275/relink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes_275/relink -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/Jove24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/Jove24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/Moon.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/Moon.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- 1 | Table_Mark_Estes_config.h_merlin -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/blue24c.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/blue24c.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/blue48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/blue48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/bluea24bf.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/bluea24bf.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/earth24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/earth24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/earth48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/earth48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/earthb24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/earthb24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/earthb48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/earthb48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/gimpbitmap.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/gimpbitmap.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/green24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/green24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/green48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/green48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/gring24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/gring24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/heart24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/heart24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/heart48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/heart48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/icepl24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/icepl24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/monarch24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/monarch24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/monarch48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/monarch48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/newgbf24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/newgbf24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/orange48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_293/orange48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_293/relink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes_293/relink -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Bluerobot.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/Bluerobot.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Classicrobot.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/Classicrobot.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Colors.hpp: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/Colors.hpp -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Dearth48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/Dearth48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/ESP_Color.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/ESP_Color.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Earth348.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/Earth348.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/FlowerA.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/FlowerA.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/FlowerB.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/FlowerB.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/FlowerC.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/FlowerC.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/FlowerD.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/FlowerD.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/FlowerE.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/FlowerE.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/FlowerF.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/FlowerF.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/FlowerG.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/FlowerG.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/FlowerH.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/FlowerH.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Jove24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/Jove24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Spider48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/Spider48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Table_Mark_Estes_331.ino: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/Table_Mark_Estes_331.ino -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Table_Mark_Estes_Impl.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/Table_Mark_Estes_Impl.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Table_Mark_Estes_config.h: -------------------------------------------------------------------------------- 1 | Table_Mark_Estes_config.h_merlin -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/Table_Mark_Estes_config.h_merlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes_331/Table_Mark_Estes_config.h_merlin -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/blue24c.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/blue24c.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/blue48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/blue48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/bluea24bf.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/bluea24bf.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/earth24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/earth24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/earth48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/earth48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/earthb24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/earthb24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/earthb48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/earthb48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/frog448.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/frog448.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/ghost48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/ghost48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/gimpbitmap.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/gimpbitmap.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/green24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/green24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/green48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/green48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/gring24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/gring24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/heart24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/heart24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/heart48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/heart48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/icepl24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/icepl24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/monarch24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/monarch24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/monarch48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/monarch48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/newgbf24.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/newgbf24.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/orange48.h: -------------------------------------------------------------------------------- 1 | ../NeoMatrix_Demos_Private/TME/Table_Mark_Estes_331/orange48.h -------------------------------------------------------------------------------- /examples/Table_Mark_Estes_331/relink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/Table_Mark_Estes_331/relink -------------------------------------------------------------------------------- /examples/TwinkleFOX/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/TwinkleFOX/TwinkleFOX.ino: -------------------------------------------------------------------------------- 1 | ../FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/FastLED/TwinkleFOX/TwinkleFOX.ino -------------------------------------------------------------------------------- /examples/TwinkleFOX/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | FastLED_NeoMatrix_SmartMatrix_LEDMatrix_GFX_Demos/neomatrix_config.h -------------------------------------------------------------------------------- /examples/v4lcapture/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /examples/v4lcapture/neomatrix_config.h: -------------------------------------------------------------------------------- 1 | ../neomatrix_config.h -------------------------------------------------------------------------------- /examples/v4lcapture/v4lcapture.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/v4lcapture/v4lcapture.ino -------------------------------------------------------------------------------- /examples/v4lcapture/v4lcapture_single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples/v4lcapture/v4lcapture_single.h -------------------------------------------------------------------------------- /examples/v4lcapture/v4lcapture_single.h_README: -------------------------------------------------------------------------------- 1 | Comes from http://github.com/marcmerlin/v4lcapture-yuv2ppm/ 2 | -------------------------------------------------------------------------------- /examples_orig_tft/Adafruit_pictureDragon/Adafruit_pictureDragon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Adafruit_pictureDragon/Adafruit_pictureDragon.h -------------------------------------------------------------------------------- /examples_orig_tft/Adafruit_pictureDragon/Adafruit_pictureEmbed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Adafruit_pictureDragon/Adafruit_pictureEmbed.ino -------------------------------------------------------------------------------- /examples_orig_tft/Adafruit_pictureDragon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Adafruit_pictureDragon/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/Adafruit_touchpaint/Adafruit_touchpaint.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Adafruit_touchpaint/Adafruit_touchpaint.ino -------------------------------------------------------------------------------- /examples_orig_tft/Adafruit_touchpaint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Adafruit_touchpaint/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/AnalogReadSerial/AnalogReadSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/AnalogReadSerial/AnalogReadSerial.ino -------------------------------------------------------------------------------- /examples_orig_tft/AnalogReadSerial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/AnalogReadSerial/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Blink/Blink.ino -------------------------------------------------------------------------------- /examples_orig_tft/Blink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Blink/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/Flappy/Flappy.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Flappy/Flappy.ino -------------------------------------------------------------------------------- /examples_orig_tft/Flappy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Flappy/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/Flappy/collisions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Flappy/collisions.cpp -------------------------------------------------------------------------------- /examples_orig_tft/Flappy/collisions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Flappy/collisions.h -------------------------------------------------------------------------------- /examples_orig_tft/Flappy/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Flappy/constants.h -------------------------------------------------------------------------------- /examples_orig_tft/HelloServer/HTTP_Method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/HelloServer/HTTP_Method.h -------------------------------------------------------------------------------- /examples_orig_tft/HelloServer/HelloServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/HelloServer/HelloServer.ino -------------------------------------------------------------------------------- /examples_orig_tft/HelloServer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/HelloServer/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/HelloServer/WebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/HelloServer/WebServer.cpp -------------------------------------------------------------------------------- /examples_orig_tft/HelloServer/WebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/HelloServer/WebServer.h -------------------------------------------------------------------------------- /examples_orig_tft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/README.md -------------------------------------------------------------------------------- /examples_orig_tft/SerialInput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/SerialInput/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/SerialInput/SerialInput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/SerialInput/SerialInput.ino -------------------------------------------------------------------------------- /examples_orig_tft/TFT_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/TFT_demo/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/TFT_demo/TFT_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/TFT_demo/TFT_demo.ino -------------------------------------------------------------------------------- /examples_orig_tft/TekSpriteEditor1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/TekSpriteEditor1/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/TekSpriteEditor1/TekSpriteEditor1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/TekSpriteEditor1/TekSpriteEditor1.ino -------------------------------------------------------------------------------- /examples_orig_tft/TekSpriteEditor2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/TekSpriteEditor2/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/TekSpriteEditor2/TekSpriteEditor2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/TekSpriteEditor2/TekSpriteEditor2.ino -------------------------------------------------------------------------------- /examples_orig_tft/ToneMelody/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/ToneMelody/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/ToneMelody/ToneMelody.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/ToneMelody/ToneMelody.ino -------------------------------------------------------------------------------- /examples_orig_tft/Touch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Touch/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/Touch/Touch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/Touch/Touch.ino -------------------------------------------------------------------------------- /examples_orig_tft/cellArt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/cellArt/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/cellArt/cellArt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/cellArt/cellArt.ino -------------------------------------------------------------------------------- /examples_orig_tft/gameOfLife/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/gameOfLife/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/gameOfLife/gameOfLife.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/gameOfLife/gameOfLife.ino -------------------------------------------------------------------------------- /examples_orig_tft/gnuPlot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/gnuPlot/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/gnuPlot/gnuPlot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/gnuPlot/gnuPlot.ino -------------------------------------------------------------------------------- /examples_orig_tft/guiButton/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/guiButton/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/guiButton/guiButton.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/guiButton/guiButton.ino -------------------------------------------------------------------------------- /examples_orig_tft/guiLed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/guiLed/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/guiLed/guiLed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/guiLed/guiLed.ino -------------------------------------------------------------------------------- /examples_orig_tft/guiTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/guiTest/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/guiTest/guiTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/guiTest/guiTest.ino -------------------------------------------------------------------------------- /examples_orig_tft/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/input/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/input/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/input/main.ino -------------------------------------------------------------------------------- /examples_orig_tft/sketch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/sketch/Makefile -------------------------------------------------------------------------------- /examples_orig_tft/sketch/sketch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/examples_orig_tft/sketch/sketch.ino -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Adafruit_GFX.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMono12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMono18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMono24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMono9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoBold12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoBold18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoBold24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoOblique12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoOblique18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoOblique24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeMonoOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeMonoOblique9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSans12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSans18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSans24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSans9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansBold12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansBold18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansBold24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansOblique12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansOblique18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansOblique24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSansOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSansOblique9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifBold12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifBold18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifBold24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifBold9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifItalic12pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifItalic18pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifItalic24pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/FreeSerifItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/FreeSerifItalic9pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/Org_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/Org_01.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/Picopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/Picopixel.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/Tiny3x3a2pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/Tiny3x3a2pt7b.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/Fonts/TomThumb.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/gfxfont.h -------------------------------------------------------------------------------- /libraries/Adafruit_GFX/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_GFX/glcdfont.c -------------------------------------------------------------------------------- /libraries/Adafruit_ILI9341/Adafruit_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_ILI9341/Adafruit_ILI9341.h -------------------------------------------------------------------------------- /libraries/Adafruit_STMPE610/Adafruit_STMPE610.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Adafruit_STMPE610/Adafruit_STMPE610.h -------------------------------------------------------------------------------- /libraries/GuiPittix/Gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/GuiPittix/Gui.h -------------------------------------------------------------------------------- /libraries/GuiPittix/TFT_Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/GuiPittix/TFT_Adapter.h -------------------------------------------------------------------------------- /libraries/GuiPittix/TFT_Pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/GuiPittix/TFT_Pc.h -------------------------------------------------------------------------------- /libraries/SPI/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/SPI/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/SPI/SPI.h -------------------------------------------------------------------------------- /libraries/Wire/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Wire/Wire.cpp -------------------------------------------------------------------------------- /libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/libraries/Wire/Wire.h -------------------------------------------------------------------------------- /makeNativeArduino.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/makeNativeArduino.mk -------------------------------------------------------------------------------- /rpi-rgb-led-matrix.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/rpi-rgb-led-matrix.README -------------------------------------------------------------------------------- /src/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /src/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /src/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/Print.h -------------------------------------------------------------------------------- /src/cores/arduino/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/Printable.h -------------------------------------------------------------------------------- /src/cores/arduino/SerialConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/SerialConsole.cpp -------------------------------------------------------------------------------- /src/cores/arduino/SerialConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/SerialConsole.h -------------------------------------------------------------------------------- /src/cores/arduino/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/Stream.cpp -------------------------------------------------------------------------------- /src/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/Stream.h -------------------------------------------------------------------------------- /src/cores/arduino/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/WMath.cpp -------------------------------------------------------------------------------- /src/cores/arduino/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/WString.cpp -------------------------------------------------------------------------------- /src/cores/arduino/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/WString.h -------------------------------------------------------------------------------- /src/cores/arduino/avr/interrupt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cores/arduino/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/binary.h -------------------------------------------------------------------------------- /src/cores/arduino/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/pgmspace.h -------------------------------------------------------------------------------- /src/cores/arduino/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/pins_arduino.h -------------------------------------------------------------------------------- /src/cores/arduino/stdlib_noniso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/stdlib_noniso.c -------------------------------------------------------------------------------- /src/cores/arduino/stdlib_noniso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/stdlib_noniso.h -------------------------------------------------------------------------------- /src/cores/arduino/wiring_analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/wiring_analog.cpp -------------------------------------------------------------------------------- /src/cores/arduino/wiring_digital.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/wiring_digital.cpp -------------------------------------------------------------------------------- /src/cores/arduino/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/cores/arduino/wiring_private.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/system/TFT_LinuxWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/system/TFT_LinuxWrapper.h -------------------------------------------------------------------------------- /src/system/Touch_LinuxWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/system/Touch_LinuxWrapper.cpp -------------------------------------------------------------------------------- /src/system/Touch_LinuxWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/system/Touch_LinuxWrapper.h -------------------------------------------------------------------------------- /src/system/XWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/system/XWindow.cpp -------------------------------------------------------------------------------- /src/system/XWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/system/XWindow.h -------------------------------------------------------------------------------- /src/system/posixTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/system/posixTime.c -------------------------------------------------------------------------------- /src/system/posixTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcmerlin/ArduinoOnPc-FastLED-GFX-LEDMatrix/HEAD/src/system/posixTime.h --------------------------------------------------------------------------------