├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── bin ├── README.md ├── fc-firmware-sm-v107.hex ├── fcserver-galileo ├── fcserver-osx ├── fcserver-rpi └── fcserver.exe ├── bootloader ├── .gitignore ├── Makefile ├── README.md ├── bootloader.c ├── dfu.c ├── dfu.h ├── mk20dx128.c ├── mk20dx128.h ├── mk20dx128.ld ├── openocd.cfg ├── serial.c ├── serial.h ├── usb_desc.c ├── usb_desc.h ├── usb_dev.c └── usb_dev.h ├── code_of_conduct.md ├── doc ├── fc_protocol_opc.md ├── fc_protocol_usb.md ├── fc_protocol_websocket.md ├── fc_server_config.md ├── images │ ├── controller-internals-diagram.graffle │ ├── controller-internals-diagram.png │ ├── controller-internals-diagram@2x.png │ ├── fc-title.png │ ├── fc-title@2x.png │ ├── host-internals-diagram.graffle │ ├── host-internals-diagram.png │ ├── host-internals-diagram@2x.png │ ├── system-diagram-1.graffle │ │ ├── data.plist │ │ └── image2.png │ ├── system-diagram-1.png │ ├── system-diagram-1@2x.png │ ├── system-diagram-2.graffle │ │ ├── data.plist │ │ └── image2.png │ ├── system-diagram-2.png │ ├── system-diagram-2@2x.png │ └── web-ui-screenshot.png └── processing_opc_client.md ├── examples ├── README.md ├── config │ ├── bgr.json │ ├── default.json │ ├── multi-device.json │ ├── networked.json │ ├── smartmatrix.json │ ├── smartmatrix32x32.json │ ├── smartmatrix64x32.json │ └── teensy4.json ├── cpp │ ├── .gitignore │ ├── Makefile │ ├── data │ │ ├── dot.png │ │ ├── glass.png │ │ └── sky.png │ ├── dot.cpp │ ├── dot.h │ ├── lib │ │ ├── README.md │ │ ├── brightness.h │ │ ├── color.h │ │ ├── effect.h │ │ ├── effect_mixer.h │ │ ├── effect_runner.h │ │ ├── nanoflann.h │ │ ├── noise.h │ │ ├── opc_client.h │ │ ├── particle.h │ │ ├── picopng.h │ │ ├── rapidjson │ │ │ ├── README.md │ │ │ ├── document.h │ │ │ ├── filestream.h │ │ │ ├── internal │ │ │ │ ├── pow10.h │ │ │ │ ├── stack.h │ │ │ │ └── strfunc.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ │ ├── svl │ │ │ ├── Basics.h │ │ │ ├── Constants.h │ │ │ ├── LICENSE │ │ │ ├── Mat.h │ │ │ ├── Mat2.h │ │ │ ├── Mat3.h │ │ │ ├── Mat4.h │ │ │ ├── README │ │ │ ├── SVL.h │ │ │ ├── Transform.h │ │ │ ├── Utils.h │ │ │ ├── Vec.h │ │ │ ├── Vec2.h │ │ │ ├── Vec3.h │ │ │ └── Vec4.h │ │ ├── texture.h │ │ └── tinythread.h │ ├── looper.cpp │ ├── mixer.cpp │ ├── particle_trail.cpp │ ├── particle_trail.h │ ├── rings.cpp │ ├── rings.h │ ├── simple.cpp │ ├── spokes.cpp │ └── spokes.h ├── csharp │ ├── OpenPixelControl.sln │ └── OpenPixelControl │ │ ├── Client.cs │ │ ├── ColorUtils.cs │ │ ├── OpenPixelControl.xproj │ │ ├── PixelStrip.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── project.json ├── go │ ├── scrollserver.go │ └── static │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── index.html │ │ ├── jquery.min.js │ │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ │ ├── spectrum.css │ │ ├── spectrum.js │ │ └── tinycolor.js ├── html │ ├── README.md │ ├── ganzfeld.html │ ├── grid24x8z_dots.html │ ├── grid24x8z_dots_leapmotion.html │ ├── grid8x8_dots-relay.html │ ├── grid8x8_dots.html │ ├── kinetic.js │ ├── mouse.html │ ├── random-color-pixel-strip.html │ ├── spectrum.css │ ├── spectrum.js │ └── tinycolor.js ├── java │ ├── README.md │ ├── build.xml │ └── src │ │ ├── examples │ │ ├── Pulsing.java │ │ ├── Spark.java │ │ └── TheaterLights.java │ │ └── opc │ │ ├── Animation.java │ │ ├── OpcClient.java │ │ ├── OpcDevice.java │ │ └── PixelStrip.java ├── layouts │ ├── create_grid32x16z.js │ ├── create_grid8x8.js │ ├── create_ring24.js │ ├── create_strip64.js │ ├── create_triangle16.js │ ├── create_window6x12.js │ ├── grid32x16z.json │ ├── grid8x8.json │ ├── ring24.json │ ├── strip64.json │ └── triangle16.json ├── node │ ├── .gitignore │ ├── README.md │ ├── midi_particles.coffee │ ├── opc.js │ ├── package.json │ ├── particle_lifecycle.js │ ├── particle_touchosc.js │ ├── particle_trail.js │ ├── rings.js │ └── strip_redblue.js ├── p5js │ ├── grid24x8_clouds.html │ ├── grid8x8_dot.html │ ├── grid8x8_noise_simple.html │ ├── grid8x8_orbits.html │ ├── images │ │ ├── dot.png │ │ ├── flames.jpeg │ │ ├── greenDot.png │ │ └── purpleDot.png │ ├── libraries │ │ ├── opc.js │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ ├── p5js_sketches │ │ ├── grid24x8_clouds.js │ │ ├── grid8x8_dot.js │ │ ├── grid8x8_orbits.js │ │ ├── grid8x8_simple_noise.js │ │ └── strip64_flames.js │ └── strip64_flames.html ├── perl │ ├── OPC.pm │ ├── automaton.pl │ ├── blocks.pl │ ├── chaser.pl │ ├── gameoflife.pl │ ├── mandelbrot.pl │ ├── multitomaton.pl │ ├── random.pl │ ├── turnthemoff.pl │ └── waves.pl ├── processing │ ├── README.md │ ├── grid24x8z_clouds │ │ ├── OPC.pde │ │ └── grid24x8z_clouds.pde │ ├── grid24x8z_dot │ │ ├── OPC.pde │ │ ├── data │ │ │ └── dot.png │ │ └── grid24x8z_dot.pde │ ├── grid24x8z_flashy_rings │ │ ├── OPC.pde │ │ └── grid24x8z_flashy_rings.pde │ ├── grid24x8z_rings │ │ ├── OPC.pde │ │ └── grid24x8z_rings.pde │ ├── grid24x8z_rings_leapmotion │ │ ├── OPC.pde │ │ └── grid24x8z_rings_leapmotion.pde │ ├── grid24x8z_sequencer │ │ ├── OPC.pde │ │ ├── data │ │ │ ├── checkers.png │ │ │ ├── glass.jpeg │ │ │ ├── greenDot.png │ │ │ ├── orangeDot.png │ │ │ ├── pinkDot.png │ │ │ └── purpleDot.png │ │ └── grid24x8z_sequencer.pde │ ├── grid24x8z_text │ │ ├── OPC.pde │ │ ├── data │ │ │ └── blur.glsl │ │ └── grid24x8z_text.pde │ ├── grid24x8z_waves │ │ ├── OPC.pde │ │ ├── data │ │ │ └── effect.glsl │ │ └── grid24x8z_waves.pde │ ├── grid32x16z_attractor │ │ ├── OPC.pde │ │ ├── Particle.pde │ │ ├── data │ │ │ ├── colors.png │ │ │ └── dot.png │ │ └── grid32x16z_attractor.pde │ ├── grid32x16z_dot │ │ ├── OPC.pde │ │ ├── data │ │ │ └── dot.png │ │ └── grid32x16z_dot.pde │ ├── grid32x16z_particle_fft │ │ ├── OPC.pde │ │ ├── data │ │ │ ├── colors.png │ │ │ └── dot.png │ │ └── grid32x16z_particle_fft.pde │ ├── grid32x16z_particle_fft_input │ │ ├── OPC.pde │ │ ├── data │ │ │ ├── colors.png │ │ │ └── dot.png │ │ └── grid32x16z_particle_fft_input.pde │ ├── grid32x16z_red │ │ ├── OPC.pde │ │ ├── data │ │ │ └── blur.glsl │ │ └── grid32x16z_red.pde │ ├── grid32x16z_rings │ │ ├── OPC.pde │ │ └── grid32x16z_rings.pde │ ├── grid32x16z_rings_lamp │ │ ├── OPC.pde │ │ └── grid32x16z_rings_lamp.pde │ ├── grid32x16z_video │ │ ├── OPC.pde │ │ └── grid32x16z_video.pde │ ├── grid32x16z_wavefronts │ │ ├── OPC.pde │ │ ├── data │ │ │ └── ring.png │ │ └── grid32x16z_wavefronts.pde │ ├── grid32x16z_wavefronts_leapmotion │ │ ├── OPC.pde │ │ ├── data │ │ │ └── ring.png │ │ └── grid32x16z_wavefronts_leapmotion.pde │ ├── grid32x32z_clouds │ │ ├── OPC.pde │ │ └── grid32x32z_clouds.pde │ ├── grid8x8_dot │ │ ├── OPC.pde │ │ ├── data │ │ │ └── dot.png │ │ └── grid8x8_dot.pde │ ├── grid8x8_noise_simple │ │ ├── OPC.pde │ │ └── grid8x8_noise_simple.pde │ ├── grid8x8_orbits │ │ ├── OPC.pde │ │ ├── data │ │ │ └── dot.png │ │ ├── greenDot.png │ │ ├── grid8x8_orbits.pde │ │ └── purpleDot.png │ ├── grid8x8_wavefronts │ │ ├── OPC.pde │ │ ├── data │ │ │ └── ring.png │ │ └── grid8x8_wavefronts.pde │ ├── mapper2d │ │ ├── OPCLowLevel.pde │ │ └── mapper2d.pde │ ├── ring24_dot │ │ ├── OPC.pde │ │ ├── data │ │ │ └── dot.png │ │ └── ring24_dot.pde │ ├── ring24_spin │ │ ├── OPC.pde │ │ ├── data │ │ │ └── dot.png │ │ └── ring24_spin.pde │ ├── smartmatrix32x32_attractor │ │ ├── OPC.pde │ │ ├── Particle.pde │ │ ├── data │ │ │ ├── colors.png │ │ │ └── dot.png │ │ └── smartmatrix32x32_attractor.pde │ ├── smartmatrix32x32_dot │ │ ├── OPC.pde │ │ ├── data │ │ │ └── dot.png │ │ └── smartmatrix32x32_dot.pde │ ├── smartmatrix32x32_red │ │ ├── OPC.pde │ │ ├── data │ │ │ └── blur.glsl │ │ └── smartmatrix32x32_red.pde │ ├── smartmatrix32x32_rings │ │ ├── OPC.pde │ │ └── smartmatrix32x32_rings.pde │ ├── smartmatrix32x32_rings_lamp │ │ ├── OPC.pde │ │ └── smartmatrix32x32_rings_lamp.pde │ ├── smartmatrix32x32_wavefronts │ │ ├── OPC.pde │ │ ├── data │ │ │ └── ring.png │ │ └── smartmatrix32x32_wavefronts.pde │ ├── smartmatrix64x32_attractor │ │ ├── OPC.pde │ │ ├── Particle.pde │ │ ├── data │ │ │ ├── colors.png │ │ │ └── dot.png │ │ └── smartmatrix64x32_attractor.pde │ ├── smartmatrix_grid_attractor │ │ ├── OPC.pde │ │ ├── Particle.pde │ │ ├── data │ │ │ ├── colors.png │ │ │ └── dot.png │ │ └── smartmatrix_grid_attractor.pde │ ├── strip64_dot │ │ ├── OPC.pde │ │ ├── data │ │ │ └── color-dot.png │ │ └── strip64_dot.pde │ ├── strip64_flames │ │ ├── OPC.pde │ │ ├── data │ │ │ └── flames.jpeg │ │ └── strip64_flames.pde │ ├── strip64_unmapped │ │ ├── OPC.pde │ │ └── strip64_unmapped.pde │ ├── template │ │ ├── OPC.pde │ │ └── template.pde │ ├── triangle16_attractor │ │ ├── OPC.pde │ │ ├── Particle.pde │ │ ├── TriangleGrid.pde │ │ ├── data │ │ │ ├── colors.png │ │ │ └── dot.png │ │ └── triangle16_attractor.pde │ ├── triangle16_dot │ │ ├── OPC.pde │ │ ├── TriangleGrid.pde │ │ ├── data │ │ │ └── dot.png │ │ └── triangle16_dot.pde │ ├── triangle16_ember │ │ ├── KtoRGB.pde │ │ ├── OPC.pde │ │ ├── Particle.pde │ │ ├── TriangleGrid.pde │ │ ├── data │ │ │ ├── bb-rampcomp.png │ │ │ └── dot.png │ │ └── triangle16_ember.pde │ ├── triangle16_particle_fft │ │ ├── OPC.pde │ │ ├── TriangleGrid.pde │ │ ├── data │ │ │ ├── 083_trippy-ringysnarebeat-3bars.mp3 │ │ │ ├── colors.png │ │ │ ├── dot.png │ │ │ └── sampleswap-license.html │ │ └── triangle16_particle_fft.pde │ ├── triangle16_particle_fft_input │ │ ├── OPC.pde │ │ ├── TriangleGrid.pde │ │ ├── data │ │ │ ├── 083_trippy-ringysnarebeat-3bars.mp3 │ │ │ ├── colors.png │ │ │ ├── dot.png │ │ │ └── sampleswap-license.html │ │ └── triangle16_particle_fft_input.pde │ ├── triangle16_rings │ │ ├── OPC.pde │ │ ├── TriangleGrid.pde │ │ └── triangle16_rings.pde │ ├── triangle16_snake │ │ ├── OPC.pde │ │ ├── TriangleGrid.pde │ │ └── triangle16_snake.pde │ └── triangle16_wavefronts │ │ ├── OPC.pde │ │ ├── TriangleGrid.pde │ │ ├── data │ │ └── ring.png │ │ └── triangle16_wavefronts.pde ├── python │ ├── README.md │ ├── burnin.py │ ├── chase.py │ ├── color-correction-ui.py │ ├── crosstalk-test.py │ ├── every-other-white.py │ ├── fastopc.py │ ├── firmware-config-ui.py │ ├── measuring-stick.py │ ├── opc.py │ ├── solid-white.py │ ├── strobe.py │ └── usb-lowlevel.py └── systemd │ ├── README.md │ ├── example-leds.service │ └── fadecandy.service ├── firmware ├── .gitignore ├── HardwareSerial.h ├── Makefile ├── OctoWS2811z.cpp ├── OctoWS2811z.h ├── WProgram.h ├── arm_math.h ├── benchmark.py ├── core_cm4_simd.h ├── core_cmInstr.h ├── core_pins.h ├── fadecandy.cpp ├── fc_defs.h ├── fc_draw.cpp ├── fc_pixel.cpp ├── fc_pixel_lut.cpp ├── fc_usb.cpp ├── fc_usb.h ├── fcb-app.ld ├── mk20dx128.h ├── openocd.cfg ├── pins_arduino.h ├── pins_teensy.c ├── serial1.c ├── startup.c ├── usb_desc.c ├── usb_desc.h ├── usb_dev.c ├── usb_dev.h ├── usb_mem.c ├── usb_mem.h └── wiring.h ├── pcb ├── README.md ├── fc64x8 │ ├── .gitignore │ ├── adafruit.dru │ ├── fc64x8-pcb-bottom.pdf │ ├── fc64x8-pcb-legend.pdf │ ├── fc64x8-pcb-top.pdf │ ├── fc64x8-schematic.pdf │ ├── fc64x8.brd │ ├── fc64x8.sch │ └── gerb274x.cam ├── rgb123 │ ├── Fadecandy_G - CADCAM.ZIP │ ├── Fadecandy_G.pdsprj │ ├── Fadecandy_G_BOM.pdf │ └── Fadecandy_G_Schematic.pdf ├── teensy3 │ ├── wiring-diagram.graffle │ │ ├── data.plist │ │ └── image1.png │ └── wiring-diagram.png └── testjig │ ├── BomFadecandyTestjigC.PDF │ ├── FadeCandyTestJigC_ScreenCapture.jpg │ ├── Fadecandy_E - CADCAM Bottom Copper.GBL │ ├── Fadecandy_E - CADCAM Bottom Silk Screen.GBO │ ├── Fadecandy_E - CADCAM Bottom Solder Resist.GBS │ ├── Fadecandy_E - CADCAM Drill.XLN │ ├── Fadecandy_E - CADCAM Mechanical 3.GKO │ ├── Fadecandy_E - CADCAM Top Copper.GTL │ ├── Fadecandy_E - CADCAM Top Silk Screen.GTO │ ├── Fadecandy_E - CADCAM Top Solder Resist.GTS │ ├── Fadecandy_E.pdsprj │ └── SchematicFadecandyTestjigC.PDF ├── server ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── cmake │ ├── debian │ │ └── postinst.in │ ├── fcserver-user.service.in │ └── fcserver.service.in ├── config.json ├── http │ ├── 404.html │ ├── css │ │ └── narrow.css │ ├── dist │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery-1.10.2.min.js │ ├── index.html │ ├── js │ │ └── home.js │ ├── manifest.py │ └── media │ │ ├── favicon.ico │ │ └── favicon.png ├── src │ ├── apa102spidevice.cpp │ ├── apa102spidevice.h │ ├── config.h │ ├── enttecdmxdevice.cpp │ ├── enttecdmxdevice.h │ ├── fast_mutex.h │ ├── fcdevice.cpp │ ├── fcdevice.h │ ├── fcserver.cpp │ ├── fcserver.h │ ├── ft232hdevice.cpp │ ├── ft232hdevice.h │ ├── main.cpp │ ├── opc.h │ ├── smartmatrixdevice.cpp │ ├── smartmatrixdevice.h │ ├── spidevice.cpp │ ├── spidevice.h │ ├── tcpnetserver.cpp │ ├── tcpnetserver.h │ ├── teensy4device.cpp │ ├── teensy4device.h │ ├── tinythread.cpp │ ├── tinythread.h │ ├── usbdevice.cpp │ ├── usbdevice.h │ ├── version.cpp │ └── version.h ├── upx │ └── upx391w.exe └── vsbuild │ └── vs2017_linux_raspberrypi │ ├── server_vs2017_linux_raspberrypi.sln │ ├── server_vs2017_linux_raspberrypi.vcxproj │ └── server_vs2017_linux_raspberrypi.vcxproj.filters └── testjig ├── README.md ├── firmwareprep.py ├── intelhex.py ├── production ├── arm_debug.cpp ├── arm_debug.h ├── arm_kinetis_debug.cpp ├── arm_kinetis_debug.h ├── arm_kinetis_reg.h ├── electrical_test.cpp ├── electrical_test.h ├── fc_remote.cpp ├── fc_remote.h ├── firmware_data.h ├── production.ino └── testjig.h └── serial_passthrough └── serial_passthrough.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/README.md -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/fc-firmware-sm-v107.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bin/fc-firmware-sm-v107.hex -------------------------------------------------------------------------------- /bin/fcserver-galileo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bin/fcserver-galileo -------------------------------------------------------------------------------- /bin/fcserver-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bin/fcserver-osx -------------------------------------------------------------------------------- /bin/fcserver-rpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bin/fcserver-rpi -------------------------------------------------------------------------------- /bin/fcserver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bin/fcserver.exe -------------------------------------------------------------------------------- /bootloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/.gitignore -------------------------------------------------------------------------------- /bootloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/Makefile -------------------------------------------------------------------------------- /bootloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/README.md -------------------------------------------------------------------------------- /bootloader/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/bootloader.c -------------------------------------------------------------------------------- /bootloader/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/dfu.c -------------------------------------------------------------------------------- /bootloader/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/dfu.h -------------------------------------------------------------------------------- /bootloader/mk20dx128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/mk20dx128.c -------------------------------------------------------------------------------- /bootloader/mk20dx128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/mk20dx128.h -------------------------------------------------------------------------------- /bootloader/mk20dx128.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/mk20dx128.ld -------------------------------------------------------------------------------- /bootloader/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/openocd.cfg -------------------------------------------------------------------------------- /bootloader/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/serial.c -------------------------------------------------------------------------------- /bootloader/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/serial.h -------------------------------------------------------------------------------- /bootloader/usb_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/usb_desc.c -------------------------------------------------------------------------------- /bootloader/usb_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/usb_desc.h -------------------------------------------------------------------------------- /bootloader/usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/usb_dev.c -------------------------------------------------------------------------------- /bootloader/usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/bootloader/usb_dev.h -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /doc/fc_protocol_opc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/fc_protocol_opc.md -------------------------------------------------------------------------------- /doc/fc_protocol_usb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/fc_protocol_usb.md -------------------------------------------------------------------------------- /doc/fc_protocol_websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/fc_protocol_websocket.md -------------------------------------------------------------------------------- /doc/fc_server_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/fc_server_config.md -------------------------------------------------------------------------------- /doc/images/controller-internals-diagram.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/controller-internals-diagram.graffle -------------------------------------------------------------------------------- /doc/images/controller-internals-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/controller-internals-diagram.png -------------------------------------------------------------------------------- /doc/images/controller-internals-diagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/controller-internals-diagram@2x.png -------------------------------------------------------------------------------- /doc/images/fc-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/fc-title.png -------------------------------------------------------------------------------- /doc/images/fc-title@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/fc-title@2x.png -------------------------------------------------------------------------------- /doc/images/host-internals-diagram.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/host-internals-diagram.graffle -------------------------------------------------------------------------------- /doc/images/host-internals-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/host-internals-diagram.png -------------------------------------------------------------------------------- /doc/images/host-internals-diagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/host-internals-diagram@2x.png -------------------------------------------------------------------------------- /doc/images/system-diagram-1.graffle/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/system-diagram-1.graffle/data.plist -------------------------------------------------------------------------------- /doc/images/system-diagram-1.graffle/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/system-diagram-1.graffle/image2.png -------------------------------------------------------------------------------- /doc/images/system-diagram-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/system-diagram-1.png -------------------------------------------------------------------------------- /doc/images/system-diagram-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/system-diagram-1@2x.png -------------------------------------------------------------------------------- /doc/images/system-diagram-2.graffle/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/system-diagram-2.graffle/data.plist -------------------------------------------------------------------------------- /doc/images/system-diagram-2.graffle/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/system-diagram-2.graffle/image2.png -------------------------------------------------------------------------------- /doc/images/system-diagram-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/system-diagram-2.png -------------------------------------------------------------------------------- /doc/images/system-diagram-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/system-diagram-2@2x.png -------------------------------------------------------------------------------- /doc/images/web-ui-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/images/web-ui-screenshot.png -------------------------------------------------------------------------------- /doc/processing_opc_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/doc/processing_opc_client.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/config/bgr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/config/bgr.json -------------------------------------------------------------------------------- /examples/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/config/default.json -------------------------------------------------------------------------------- /examples/config/multi-device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/config/multi-device.json -------------------------------------------------------------------------------- /examples/config/networked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/config/networked.json -------------------------------------------------------------------------------- /examples/config/smartmatrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/config/smartmatrix.json -------------------------------------------------------------------------------- /examples/config/smartmatrix32x32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/config/smartmatrix32x32.json -------------------------------------------------------------------------------- /examples/config/smartmatrix64x32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/config/smartmatrix64x32.json -------------------------------------------------------------------------------- /examples/config/teensy4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/config/teensy4.json -------------------------------------------------------------------------------- /examples/cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/.gitignore -------------------------------------------------------------------------------- /examples/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/Makefile -------------------------------------------------------------------------------- /examples/cpp/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/data/dot.png -------------------------------------------------------------------------------- /examples/cpp/data/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/data/glass.png -------------------------------------------------------------------------------- /examples/cpp/data/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/data/sky.png -------------------------------------------------------------------------------- /examples/cpp/dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/dot.cpp -------------------------------------------------------------------------------- /examples/cpp/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/dot.h -------------------------------------------------------------------------------- /examples/cpp/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/README.md -------------------------------------------------------------------------------- /examples/cpp/lib/brightness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/brightness.h -------------------------------------------------------------------------------- /examples/cpp/lib/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/color.h -------------------------------------------------------------------------------- /examples/cpp/lib/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/effect.h -------------------------------------------------------------------------------- /examples/cpp/lib/effect_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/effect_mixer.h -------------------------------------------------------------------------------- /examples/cpp/lib/effect_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/effect_runner.h -------------------------------------------------------------------------------- /examples/cpp/lib/nanoflann.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/nanoflann.h -------------------------------------------------------------------------------- /examples/cpp/lib/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/noise.h -------------------------------------------------------------------------------- /examples/cpp/lib/opc_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/opc_client.h -------------------------------------------------------------------------------- /examples/cpp/lib/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/particle.h -------------------------------------------------------------------------------- /examples/cpp/lib/picopng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/picopng.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/README.md -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/document.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/filestream.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/reader.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /examples/cpp/lib/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/rapidjson/writer.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Basics.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Constants.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/LICENSE -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Mat.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Mat2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Mat2.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Mat3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Mat3.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Mat4.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/README -------------------------------------------------------------------------------- /examples/cpp/lib/svl/SVL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/SVL.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Transform.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Utils.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Vec.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Vec2.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Vec3.h -------------------------------------------------------------------------------- /examples/cpp/lib/svl/Vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/svl/Vec4.h -------------------------------------------------------------------------------- /examples/cpp/lib/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/texture.h -------------------------------------------------------------------------------- /examples/cpp/lib/tinythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/lib/tinythread.h -------------------------------------------------------------------------------- /examples/cpp/looper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/looper.cpp -------------------------------------------------------------------------------- /examples/cpp/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/mixer.cpp -------------------------------------------------------------------------------- /examples/cpp/particle_trail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/particle_trail.cpp -------------------------------------------------------------------------------- /examples/cpp/particle_trail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/particle_trail.h -------------------------------------------------------------------------------- /examples/cpp/rings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/rings.cpp -------------------------------------------------------------------------------- /examples/cpp/rings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/rings.h -------------------------------------------------------------------------------- /examples/cpp/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/simple.cpp -------------------------------------------------------------------------------- /examples/cpp/spokes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/spokes.cpp -------------------------------------------------------------------------------- /examples/cpp/spokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/cpp/spokes.h -------------------------------------------------------------------------------- /examples/csharp/OpenPixelControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/csharp/OpenPixelControl.sln -------------------------------------------------------------------------------- /examples/csharp/OpenPixelControl/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/csharp/OpenPixelControl/Client.cs -------------------------------------------------------------------------------- /examples/csharp/OpenPixelControl/ColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/csharp/OpenPixelControl/ColorUtils.cs -------------------------------------------------------------------------------- /examples/csharp/OpenPixelControl/OpenPixelControl.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/csharp/OpenPixelControl/OpenPixelControl.xproj -------------------------------------------------------------------------------- /examples/csharp/OpenPixelControl/PixelStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/csharp/OpenPixelControl/PixelStrip.cs -------------------------------------------------------------------------------- /examples/csharp/OpenPixelControl/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/csharp/OpenPixelControl/Program.cs -------------------------------------------------------------------------------- /examples/csharp/OpenPixelControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/csharp/OpenPixelControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/csharp/OpenPixelControl/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/csharp/OpenPixelControl/project.json -------------------------------------------------------------------------------- /examples/go/scrollserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/scrollserver.go -------------------------------------------------------------------------------- /examples/go/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /examples/go/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /examples/go/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /examples/go/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/css/bootstrap.css -------------------------------------------------------------------------------- /examples/go/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /examples/go/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /examples/go/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/go/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/go/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/go/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/go/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/index.html -------------------------------------------------------------------------------- /examples/go/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/jquery.min.js -------------------------------------------------------------------------------- /examples/go/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/js/bootstrap.js -------------------------------------------------------------------------------- /examples/go/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /examples/go/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/js/npm.js -------------------------------------------------------------------------------- /examples/go/static/spectrum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/spectrum.css -------------------------------------------------------------------------------- /examples/go/static/spectrum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/spectrum.js -------------------------------------------------------------------------------- /examples/go/static/tinycolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/go/static/tinycolor.js -------------------------------------------------------------------------------- /examples/html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/README.md -------------------------------------------------------------------------------- /examples/html/ganzfeld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/ganzfeld.html -------------------------------------------------------------------------------- /examples/html/grid24x8z_dots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/grid24x8z_dots.html -------------------------------------------------------------------------------- /examples/html/grid24x8z_dots_leapmotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/grid24x8z_dots_leapmotion.html -------------------------------------------------------------------------------- /examples/html/grid8x8_dots-relay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/grid8x8_dots-relay.html -------------------------------------------------------------------------------- /examples/html/grid8x8_dots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/grid8x8_dots.html -------------------------------------------------------------------------------- /examples/html/kinetic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/kinetic.js -------------------------------------------------------------------------------- /examples/html/mouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/mouse.html -------------------------------------------------------------------------------- /examples/html/random-color-pixel-strip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/random-color-pixel-strip.html -------------------------------------------------------------------------------- /examples/html/spectrum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/spectrum.css -------------------------------------------------------------------------------- /examples/html/spectrum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/spectrum.js -------------------------------------------------------------------------------- /examples/html/tinycolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/html/tinycolor.js -------------------------------------------------------------------------------- /examples/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/java/README.md -------------------------------------------------------------------------------- /examples/java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/java/build.xml -------------------------------------------------------------------------------- /examples/java/src/examples/Pulsing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/java/src/examples/Pulsing.java -------------------------------------------------------------------------------- /examples/java/src/examples/Spark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/java/src/examples/Spark.java -------------------------------------------------------------------------------- /examples/java/src/examples/TheaterLights.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/java/src/examples/TheaterLights.java -------------------------------------------------------------------------------- /examples/java/src/opc/Animation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/java/src/opc/Animation.java -------------------------------------------------------------------------------- /examples/java/src/opc/OpcClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/java/src/opc/OpcClient.java -------------------------------------------------------------------------------- /examples/java/src/opc/OpcDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/java/src/opc/OpcDevice.java -------------------------------------------------------------------------------- /examples/java/src/opc/PixelStrip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/java/src/opc/PixelStrip.java -------------------------------------------------------------------------------- /examples/layouts/create_grid32x16z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/create_grid32x16z.js -------------------------------------------------------------------------------- /examples/layouts/create_grid8x8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/create_grid8x8.js -------------------------------------------------------------------------------- /examples/layouts/create_ring24.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/create_ring24.js -------------------------------------------------------------------------------- /examples/layouts/create_strip64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/create_strip64.js -------------------------------------------------------------------------------- /examples/layouts/create_triangle16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/create_triangle16.js -------------------------------------------------------------------------------- /examples/layouts/create_window6x12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/create_window6x12.js -------------------------------------------------------------------------------- /examples/layouts/grid32x16z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/grid32x16z.json -------------------------------------------------------------------------------- /examples/layouts/grid8x8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/grid8x8.json -------------------------------------------------------------------------------- /examples/layouts/ring24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/ring24.json -------------------------------------------------------------------------------- /examples/layouts/strip64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/strip64.json -------------------------------------------------------------------------------- /examples/layouts/triangle16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/layouts/triangle16.json -------------------------------------------------------------------------------- /examples/node/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | -------------------------------------------------------------------------------- /examples/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/node/README.md -------------------------------------------------------------------------------- /examples/node/midi_particles.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/node/midi_particles.coffee -------------------------------------------------------------------------------- /examples/node/opc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/node/opc.js -------------------------------------------------------------------------------- /examples/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/node/package.json -------------------------------------------------------------------------------- /examples/node/particle_lifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/node/particle_lifecycle.js -------------------------------------------------------------------------------- /examples/node/particle_touchosc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/node/particle_touchosc.js -------------------------------------------------------------------------------- /examples/node/particle_trail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/node/particle_trail.js -------------------------------------------------------------------------------- /examples/node/rings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/node/rings.js -------------------------------------------------------------------------------- /examples/node/strip_redblue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/node/strip_redblue.js -------------------------------------------------------------------------------- /examples/p5js/grid24x8_clouds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/grid24x8_clouds.html -------------------------------------------------------------------------------- /examples/p5js/grid8x8_dot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/grid8x8_dot.html -------------------------------------------------------------------------------- /examples/p5js/grid8x8_noise_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/grid8x8_noise_simple.html -------------------------------------------------------------------------------- /examples/p5js/grid8x8_orbits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/grid8x8_orbits.html -------------------------------------------------------------------------------- /examples/p5js/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/images/dot.png -------------------------------------------------------------------------------- /examples/p5js/images/flames.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/images/flames.jpeg -------------------------------------------------------------------------------- /examples/p5js/images/greenDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/images/greenDot.png -------------------------------------------------------------------------------- /examples/p5js/images/purpleDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/images/purpleDot.png -------------------------------------------------------------------------------- /examples/p5js/libraries/opc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/libraries/opc.js -------------------------------------------------------------------------------- /examples/p5js/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/libraries/p5.dom.js -------------------------------------------------------------------------------- /examples/p5js/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/libraries/p5.js -------------------------------------------------------------------------------- /examples/p5js/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/libraries/p5.sound.js -------------------------------------------------------------------------------- /examples/p5js/p5js_sketches/grid24x8_clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/p5js_sketches/grid24x8_clouds.js -------------------------------------------------------------------------------- /examples/p5js/p5js_sketches/grid8x8_dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/p5js_sketches/grid8x8_dot.js -------------------------------------------------------------------------------- /examples/p5js/p5js_sketches/grid8x8_orbits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/p5js_sketches/grid8x8_orbits.js -------------------------------------------------------------------------------- /examples/p5js/p5js_sketches/grid8x8_simple_noise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/p5js_sketches/grid8x8_simple_noise.js -------------------------------------------------------------------------------- /examples/p5js/p5js_sketches/strip64_flames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/p5js_sketches/strip64_flames.js -------------------------------------------------------------------------------- /examples/p5js/strip64_flames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/p5js/strip64_flames.html -------------------------------------------------------------------------------- /examples/perl/OPC.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/OPC.pm -------------------------------------------------------------------------------- /examples/perl/automaton.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/automaton.pl -------------------------------------------------------------------------------- /examples/perl/blocks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/blocks.pl -------------------------------------------------------------------------------- /examples/perl/chaser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/chaser.pl -------------------------------------------------------------------------------- /examples/perl/gameoflife.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/gameoflife.pl -------------------------------------------------------------------------------- /examples/perl/mandelbrot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/mandelbrot.pl -------------------------------------------------------------------------------- /examples/perl/multitomaton.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/multitomaton.pl -------------------------------------------------------------------------------- /examples/perl/random.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/random.pl -------------------------------------------------------------------------------- /examples/perl/turnthemoff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/turnthemoff.pl -------------------------------------------------------------------------------- /examples/perl/waves.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/perl/waves.pl -------------------------------------------------------------------------------- /examples/processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/README.md -------------------------------------------------------------------------------- /examples/processing/grid24x8z_clouds/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_clouds/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_clouds/grid24x8z_clouds.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_clouds/grid24x8z_clouds.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_dot/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_dot/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_dot/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_dot/data/dot.png -------------------------------------------------------------------------------- /examples/processing/grid24x8z_dot/grid24x8z_dot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_dot/grid24x8z_dot.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_flashy_rings/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_flashy_rings/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_flashy_rings/grid24x8z_flashy_rings.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_flashy_rings/grid24x8z_flashy_rings.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_rings/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_rings/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_rings/grid24x8z_rings.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_rings/grid24x8z_rings.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_rings_leapmotion/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_rings_leapmotion/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_rings_leapmotion/grid24x8z_rings_leapmotion.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_rings_leapmotion/grid24x8z_rings_leapmotion.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_sequencer/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_sequencer/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_sequencer/data/checkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_sequencer/data/checkers.png -------------------------------------------------------------------------------- /examples/processing/grid24x8z_sequencer/data/glass.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_sequencer/data/glass.jpeg -------------------------------------------------------------------------------- /examples/processing/grid24x8z_sequencer/data/greenDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_sequencer/data/greenDot.png -------------------------------------------------------------------------------- /examples/processing/grid24x8z_sequencer/data/orangeDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_sequencer/data/orangeDot.png -------------------------------------------------------------------------------- /examples/processing/grid24x8z_sequencer/data/pinkDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_sequencer/data/pinkDot.png -------------------------------------------------------------------------------- /examples/processing/grid24x8z_sequencer/data/purpleDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_sequencer/data/purpleDot.png -------------------------------------------------------------------------------- /examples/processing/grid24x8z_sequencer/grid24x8z_sequencer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_sequencer/grid24x8z_sequencer.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_text/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_text/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_text/data/blur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_text/data/blur.glsl -------------------------------------------------------------------------------- /examples/processing/grid24x8z_text/grid24x8z_text.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_text/grid24x8z_text.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_waves/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_waves/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid24x8z_waves/data/effect.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_waves/data/effect.glsl -------------------------------------------------------------------------------- /examples/processing/grid24x8z_waves/grid24x8z_waves.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid24x8z_waves/grid24x8z_waves.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_attractor/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_attractor/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_attractor/Particle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_attractor/Particle.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_attractor/data/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_attractor/data/colors.png -------------------------------------------------------------------------------- /examples/processing/grid32x16z_attractor/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_attractor/data/dot.png -------------------------------------------------------------------------------- /examples/processing/grid32x16z_attractor/grid32x16z_attractor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_attractor/grid32x16z_attractor.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_dot/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_dot/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_dot/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_dot/data/dot.png -------------------------------------------------------------------------------- /examples/processing/grid32x16z_dot/grid32x16z_dot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_dot/grid32x16z_dot.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_particle_fft/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_particle_fft/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_particle_fft/data/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_particle_fft/data/colors.png -------------------------------------------------------------------------------- /examples/processing/grid32x16z_particle_fft/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_particle_fft/data/dot.png -------------------------------------------------------------------------------- /examples/processing/grid32x16z_particle_fft/grid32x16z_particle_fft.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_particle_fft/grid32x16z_particle_fft.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_particle_fft_input/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_particle_fft_input/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_particle_fft_input/data/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_particle_fft_input/data/colors.png -------------------------------------------------------------------------------- /examples/processing/grid32x16z_particle_fft_input/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_particle_fft_input/data/dot.png -------------------------------------------------------------------------------- /examples/processing/grid32x16z_particle_fft_input/grid32x16z_particle_fft_input.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_particle_fft_input/grid32x16z_particle_fft_input.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_red/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_red/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_red/data/blur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_red/data/blur.glsl -------------------------------------------------------------------------------- /examples/processing/grid32x16z_red/grid32x16z_red.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_red/grid32x16z_red.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_rings/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_rings/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_rings/grid32x16z_rings.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_rings/grid32x16z_rings.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_rings_lamp/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_rings_lamp/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_rings_lamp/grid32x16z_rings_lamp.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_rings_lamp/grid32x16z_rings_lamp.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_video/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_video/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_video/grid32x16z_video.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_video/grid32x16z_video.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_wavefronts/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_wavefronts/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_wavefronts/data/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_wavefronts/data/ring.png -------------------------------------------------------------------------------- /examples/processing/grid32x16z_wavefronts/grid32x16z_wavefronts.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_wavefronts/grid32x16z_wavefronts.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_wavefronts_leapmotion/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_wavefronts_leapmotion/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x16z_wavefronts_leapmotion/data/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_wavefronts_leapmotion/data/ring.png -------------------------------------------------------------------------------- /examples/processing/grid32x16z_wavefronts_leapmotion/grid32x16z_wavefronts_leapmotion.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x16z_wavefronts_leapmotion/grid32x16z_wavefronts_leapmotion.pde -------------------------------------------------------------------------------- /examples/processing/grid32x32z_clouds/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x32z_clouds/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid32x32z_clouds/grid32x32z_clouds.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid32x32z_clouds/grid32x32z_clouds.pde -------------------------------------------------------------------------------- /examples/processing/grid8x8_dot/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_dot/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid8x8_dot/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_dot/data/dot.png -------------------------------------------------------------------------------- /examples/processing/grid8x8_dot/grid8x8_dot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_dot/grid8x8_dot.pde -------------------------------------------------------------------------------- /examples/processing/grid8x8_noise_simple/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_noise_simple/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid8x8_noise_simple/grid8x8_noise_simple.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_noise_simple/grid8x8_noise_simple.pde -------------------------------------------------------------------------------- /examples/processing/grid8x8_orbits/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_orbits/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid8x8_orbits/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_orbits/data/dot.png -------------------------------------------------------------------------------- /examples/processing/grid8x8_orbits/greenDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_orbits/greenDot.png -------------------------------------------------------------------------------- /examples/processing/grid8x8_orbits/grid8x8_orbits.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_orbits/grid8x8_orbits.pde -------------------------------------------------------------------------------- /examples/processing/grid8x8_orbits/purpleDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_orbits/purpleDot.png -------------------------------------------------------------------------------- /examples/processing/grid8x8_wavefronts/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_wavefronts/OPC.pde -------------------------------------------------------------------------------- /examples/processing/grid8x8_wavefronts/data/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_wavefronts/data/ring.png -------------------------------------------------------------------------------- /examples/processing/grid8x8_wavefronts/grid8x8_wavefronts.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/grid8x8_wavefronts/grid8x8_wavefronts.pde -------------------------------------------------------------------------------- /examples/processing/mapper2d/OPCLowLevel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/mapper2d/OPCLowLevel.pde -------------------------------------------------------------------------------- /examples/processing/mapper2d/mapper2d.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/mapper2d/mapper2d.pde -------------------------------------------------------------------------------- /examples/processing/ring24_dot/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/ring24_dot/OPC.pde -------------------------------------------------------------------------------- /examples/processing/ring24_dot/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/ring24_dot/data/dot.png -------------------------------------------------------------------------------- /examples/processing/ring24_dot/ring24_dot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/ring24_dot/ring24_dot.pde -------------------------------------------------------------------------------- /examples/processing/ring24_spin/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/ring24_spin/OPC.pde -------------------------------------------------------------------------------- /examples/processing/ring24_spin/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/ring24_spin/data/dot.png -------------------------------------------------------------------------------- /examples/processing/ring24_spin/ring24_spin.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/ring24_spin/ring24_spin.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_attractor/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_attractor/OPC.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_attractor/Particle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_attractor/Particle.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_attractor/data/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_attractor/data/colors.png -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_attractor/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_attractor/data/dot.png -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_attractor/smartmatrix32x32_attractor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_attractor/smartmatrix32x32_attractor.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_dot/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_dot/OPC.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_dot/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_dot/data/dot.png -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_dot/smartmatrix32x32_dot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_dot/smartmatrix32x32_dot.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_red/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_red/OPC.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_red/data/blur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_red/data/blur.glsl -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_red/smartmatrix32x32_red.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_red/smartmatrix32x32_red.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_rings/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_rings/OPC.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_rings/smartmatrix32x32_rings.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_rings/smartmatrix32x32_rings.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_rings_lamp/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_rings_lamp/OPC.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_rings_lamp/smartmatrix32x32_rings_lamp.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_rings_lamp/smartmatrix32x32_rings_lamp.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_wavefronts/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_wavefronts/OPC.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_wavefronts/data/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_wavefronts/data/ring.png -------------------------------------------------------------------------------- /examples/processing/smartmatrix32x32_wavefronts/smartmatrix32x32_wavefronts.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix32x32_wavefronts/smartmatrix32x32_wavefronts.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix64x32_attractor/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix64x32_attractor/OPC.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix64x32_attractor/Particle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix64x32_attractor/Particle.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix64x32_attractor/data/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix64x32_attractor/data/colors.png -------------------------------------------------------------------------------- /examples/processing/smartmatrix64x32_attractor/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix64x32_attractor/data/dot.png -------------------------------------------------------------------------------- /examples/processing/smartmatrix64x32_attractor/smartmatrix64x32_attractor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix64x32_attractor/smartmatrix64x32_attractor.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix_grid_attractor/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix_grid_attractor/OPC.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix_grid_attractor/Particle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix_grid_attractor/Particle.pde -------------------------------------------------------------------------------- /examples/processing/smartmatrix_grid_attractor/data/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix_grid_attractor/data/colors.png -------------------------------------------------------------------------------- /examples/processing/smartmatrix_grid_attractor/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix_grid_attractor/data/dot.png -------------------------------------------------------------------------------- /examples/processing/smartmatrix_grid_attractor/smartmatrix_grid_attractor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/smartmatrix_grid_attractor/smartmatrix_grid_attractor.pde -------------------------------------------------------------------------------- /examples/processing/strip64_dot/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/strip64_dot/OPC.pde -------------------------------------------------------------------------------- /examples/processing/strip64_dot/data/color-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/strip64_dot/data/color-dot.png -------------------------------------------------------------------------------- /examples/processing/strip64_dot/strip64_dot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/strip64_dot/strip64_dot.pde -------------------------------------------------------------------------------- /examples/processing/strip64_flames/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/strip64_flames/OPC.pde -------------------------------------------------------------------------------- /examples/processing/strip64_flames/data/flames.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/strip64_flames/data/flames.jpeg -------------------------------------------------------------------------------- /examples/processing/strip64_flames/strip64_flames.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/strip64_flames/strip64_flames.pde -------------------------------------------------------------------------------- /examples/processing/strip64_unmapped/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/strip64_unmapped/OPC.pde -------------------------------------------------------------------------------- /examples/processing/strip64_unmapped/strip64_unmapped.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/strip64_unmapped/strip64_unmapped.pde -------------------------------------------------------------------------------- /examples/processing/template/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/template/OPC.pde -------------------------------------------------------------------------------- /examples/processing/template/template.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/template/template.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_attractor/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_attractor/OPC.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_attractor/Particle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_attractor/Particle.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_attractor/TriangleGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_attractor/TriangleGrid.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_attractor/data/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_attractor/data/colors.png -------------------------------------------------------------------------------- /examples/processing/triangle16_attractor/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_attractor/data/dot.png -------------------------------------------------------------------------------- /examples/processing/triangle16_attractor/triangle16_attractor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_attractor/triangle16_attractor.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_dot/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_dot/OPC.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_dot/TriangleGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_dot/TriangleGrid.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_dot/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_dot/data/dot.png -------------------------------------------------------------------------------- /examples/processing/triangle16_dot/triangle16_dot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_dot/triangle16_dot.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_ember/KtoRGB.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_ember/KtoRGB.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_ember/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_ember/OPC.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_ember/Particle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_ember/Particle.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_ember/TriangleGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_ember/TriangleGrid.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_ember/data/bb-rampcomp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_ember/data/bb-rampcomp.png -------------------------------------------------------------------------------- /examples/processing/triangle16_ember/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_ember/data/dot.png -------------------------------------------------------------------------------- /examples/processing/triangle16_ember/triangle16_ember.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_ember/triangle16_ember.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft/OPC.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft/TriangleGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft/TriangleGrid.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft/data/083_trippy-ringysnarebeat-3bars.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft/data/083_trippy-ringysnarebeat-3bars.mp3 -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft/data/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft/data/colors.png -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft/data/dot.png -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft/data/sampleswap-license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft/data/sampleswap-license.html -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft/triangle16_particle_fft.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft/triangle16_particle_fft.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft_input/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft_input/OPC.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft_input/TriangleGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft_input/TriangleGrid.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft_input/data/083_trippy-ringysnarebeat-3bars.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft_input/data/083_trippy-ringysnarebeat-3bars.mp3 -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft_input/data/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft_input/data/colors.png -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft_input/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft_input/data/dot.png -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft_input/data/sampleswap-license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft_input/data/sampleswap-license.html -------------------------------------------------------------------------------- /examples/processing/triangle16_particle_fft_input/triangle16_particle_fft_input.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_particle_fft_input/triangle16_particle_fft_input.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_rings/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_rings/OPC.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_rings/TriangleGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_rings/TriangleGrid.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_rings/triangle16_rings.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_rings/triangle16_rings.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_snake/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_snake/OPC.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_snake/TriangleGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_snake/TriangleGrid.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_snake/triangle16_snake.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_snake/triangle16_snake.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_wavefronts/OPC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_wavefronts/OPC.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_wavefronts/TriangleGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_wavefronts/TriangleGrid.pde -------------------------------------------------------------------------------- /examples/processing/triangle16_wavefronts/data/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_wavefronts/data/ring.png -------------------------------------------------------------------------------- /examples/processing/triangle16_wavefronts/triangle16_wavefronts.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/processing/triangle16_wavefronts/triangle16_wavefronts.pde -------------------------------------------------------------------------------- /examples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/README.md -------------------------------------------------------------------------------- /examples/python/burnin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/burnin.py -------------------------------------------------------------------------------- /examples/python/chase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/chase.py -------------------------------------------------------------------------------- /examples/python/color-correction-ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/color-correction-ui.py -------------------------------------------------------------------------------- /examples/python/crosstalk-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/crosstalk-test.py -------------------------------------------------------------------------------- /examples/python/every-other-white.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/every-other-white.py -------------------------------------------------------------------------------- /examples/python/fastopc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/fastopc.py -------------------------------------------------------------------------------- /examples/python/firmware-config-ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/firmware-config-ui.py -------------------------------------------------------------------------------- /examples/python/measuring-stick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/measuring-stick.py -------------------------------------------------------------------------------- /examples/python/opc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/opc.py -------------------------------------------------------------------------------- /examples/python/solid-white.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/solid-white.py -------------------------------------------------------------------------------- /examples/python/strobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/strobe.py -------------------------------------------------------------------------------- /examples/python/usb-lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/python/usb-lowlevel.py -------------------------------------------------------------------------------- /examples/systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/systemd/README.md -------------------------------------------------------------------------------- /examples/systemd/example-leds.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/systemd/example-leds.service -------------------------------------------------------------------------------- /examples/systemd/fadecandy.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/examples/systemd/fadecandy.service -------------------------------------------------------------------------------- /firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/.gitignore -------------------------------------------------------------------------------- /firmware/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/HardwareSerial.h -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/OctoWS2811z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/OctoWS2811z.cpp -------------------------------------------------------------------------------- /firmware/OctoWS2811z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/OctoWS2811z.h -------------------------------------------------------------------------------- /firmware/WProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/WProgram.h -------------------------------------------------------------------------------- /firmware/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/arm_math.h -------------------------------------------------------------------------------- /firmware/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/benchmark.py -------------------------------------------------------------------------------- /firmware/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/core_cm4_simd.h -------------------------------------------------------------------------------- /firmware/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/core_cmInstr.h -------------------------------------------------------------------------------- /firmware/core_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/core_pins.h -------------------------------------------------------------------------------- /firmware/fadecandy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/fadecandy.cpp -------------------------------------------------------------------------------- /firmware/fc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/fc_defs.h -------------------------------------------------------------------------------- /firmware/fc_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/fc_draw.cpp -------------------------------------------------------------------------------- /firmware/fc_pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/fc_pixel.cpp -------------------------------------------------------------------------------- /firmware/fc_pixel_lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/fc_pixel_lut.cpp -------------------------------------------------------------------------------- /firmware/fc_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/fc_usb.cpp -------------------------------------------------------------------------------- /firmware/fc_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/fc_usb.h -------------------------------------------------------------------------------- /firmware/fcb-app.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/fcb-app.ld -------------------------------------------------------------------------------- /firmware/mk20dx128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/mk20dx128.h -------------------------------------------------------------------------------- /firmware/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/openocd.cfg -------------------------------------------------------------------------------- /firmware/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/pins_arduino.h -------------------------------------------------------------------------------- /firmware/pins_teensy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/pins_teensy.c -------------------------------------------------------------------------------- /firmware/serial1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/serial1.c -------------------------------------------------------------------------------- /firmware/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/startup.c -------------------------------------------------------------------------------- /firmware/usb_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/usb_desc.c -------------------------------------------------------------------------------- /firmware/usb_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/usb_desc.h -------------------------------------------------------------------------------- /firmware/usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/usb_dev.c -------------------------------------------------------------------------------- /firmware/usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/usb_dev.h -------------------------------------------------------------------------------- /firmware/usb_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/usb_mem.c -------------------------------------------------------------------------------- /firmware/usb_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/usb_mem.h -------------------------------------------------------------------------------- /firmware/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/firmware/wiring.h -------------------------------------------------------------------------------- /pcb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/README.md -------------------------------------------------------------------------------- /pcb/fc64x8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/fc64x8/.gitignore -------------------------------------------------------------------------------- /pcb/fc64x8/adafruit.dru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/fc64x8/adafruit.dru -------------------------------------------------------------------------------- /pcb/fc64x8/fc64x8-pcb-bottom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/fc64x8/fc64x8-pcb-bottom.pdf -------------------------------------------------------------------------------- /pcb/fc64x8/fc64x8-pcb-legend.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/fc64x8/fc64x8-pcb-legend.pdf -------------------------------------------------------------------------------- /pcb/fc64x8/fc64x8-pcb-top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/fc64x8/fc64x8-pcb-top.pdf -------------------------------------------------------------------------------- /pcb/fc64x8/fc64x8-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/fc64x8/fc64x8-schematic.pdf -------------------------------------------------------------------------------- /pcb/fc64x8/fc64x8.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/fc64x8/fc64x8.brd -------------------------------------------------------------------------------- /pcb/fc64x8/fc64x8.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/fc64x8/fc64x8.sch -------------------------------------------------------------------------------- /pcb/fc64x8/gerb274x.cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/fc64x8/gerb274x.cam -------------------------------------------------------------------------------- /pcb/rgb123/Fadecandy_G - CADCAM.ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/rgb123/Fadecandy_G - CADCAM.ZIP -------------------------------------------------------------------------------- /pcb/rgb123/Fadecandy_G.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/rgb123/Fadecandy_G.pdsprj -------------------------------------------------------------------------------- /pcb/rgb123/Fadecandy_G_BOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/rgb123/Fadecandy_G_BOM.pdf -------------------------------------------------------------------------------- /pcb/rgb123/Fadecandy_G_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/rgb123/Fadecandy_G_Schematic.pdf -------------------------------------------------------------------------------- /pcb/teensy3/wiring-diagram.graffle/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/teensy3/wiring-diagram.graffle/data.plist -------------------------------------------------------------------------------- /pcb/teensy3/wiring-diagram.graffle/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/teensy3/wiring-diagram.graffle/image1.png -------------------------------------------------------------------------------- /pcb/teensy3/wiring-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/teensy3/wiring-diagram.png -------------------------------------------------------------------------------- /pcb/testjig/BomFadecandyTestjigC.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/BomFadecandyTestjigC.PDF -------------------------------------------------------------------------------- /pcb/testjig/FadeCandyTestJigC_ScreenCapture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/FadeCandyTestJigC_ScreenCapture.jpg -------------------------------------------------------------------------------- /pcb/testjig/Fadecandy_E - CADCAM Bottom Copper.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/Fadecandy_E - CADCAM Bottom Copper.GBL -------------------------------------------------------------------------------- /pcb/testjig/Fadecandy_E - CADCAM Bottom Silk Screen.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/Fadecandy_E - CADCAM Bottom Silk Screen.GBO -------------------------------------------------------------------------------- /pcb/testjig/Fadecandy_E - CADCAM Bottom Solder Resist.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/Fadecandy_E - CADCAM Bottom Solder Resist.GBS -------------------------------------------------------------------------------- /pcb/testjig/Fadecandy_E - CADCAM Drill.XLN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/Fadecandy_E - CADCAM Drill.XLN -------------------------------------------------------------------------------- /pcb/testjig/Fadecandy_E - CADCAM Mechanical 3.GKO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/Fadecandy_E - CADCAM Mechanical 3.GKO -------------------------------------------------------------------------------- /pcb/testjig/Fadecandy_E - CADCAM Top Copper.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/Fadecandy_E - CADCAM Top Copper.GTL -------------------------------------------------------------------------------- /pcb/testjig/Fadecandy_E - CADCAM Top Silk Screen.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/Fadecandy_E - CADCAM Top Silk Screen.GTO -------------------------------------------------------------------------------- /pcb/testjig/Fadecandy_E - CADCAM Top Solder Resist.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/Fadecandy_E - CADCAM Top Solder Resist.GTS -------------------------------------------------------------------------------- /pcb/testjig/Fadecandy_E.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/Fadecandy_E.pdsprj -------------------------------------------------------------------------------- /pcb/testjig/SchematicFadecandyTestjigC.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/pcb/testjig/SchematicFadecandyTestjigC.PDF -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/Makefile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/README.md -------------------------------------------------------------------------------- /server/cmake/debian/postinst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/cmake/debian/postinst.in -------------------------------------------------------------------------------- /server/cmake/fcserver-user.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/cmake/fcserver-user.service.in -------------------------------------------------------------------------------- /server/cmake/fcserver.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/cmake/fcserver.service.in -------------------------------------------------------------------------------- /server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/config.json -------------------------------------------------------------------------------- /server/http/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/404.html -------------------------------------------------------------------------------- /server/http/css/narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/css/narrow.css -------------------------------------------------------------------------------- /server/http/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /server/http/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /server/http/dist/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/dist/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /server/http/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/index.html -------------------------------------------------------------------------------- /server/http/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/js/home.js -------------------------------------------------------------------------------- /server/http/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/manifest.py -------------------------------------------------------------------------------- /server/http/media/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/media/favicon.ico -------------------------------------------------------------------------------- /server/http/media/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/http/media/favicon.png -------------------------------------------------------------------------------- /server/src/apa102spidevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/apa102spidevice.cpp -------------------------------------------------------------------------------- /server/src/apa102spidevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/apa102spidevice.h -------------------------------------------------------------------------------- /server/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/config.h -------------------------------------------------------------------------------- /server/src/enttecdmxdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/enttecdmxdevice.cpp -------------------------------------------------------------------------------- /server/src/enttecdmxdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/enttecdmxdevice.h -------------------------------------------------------------------------------- /server/src/fast_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/fast_mutex.h -------------------------------------------------------------------------------- /server/src/fcdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/fcdevice.cpp -------------------------------------------------------------------------------- /server/src/fcdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/fcdevice.h -------------------------------------------------------------------------------- /server/src/fcserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/fcserver.cpp -------------------------------------------------------------------------------- /server/src/fcserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/fcserver.h -------------------------------------------------------------------------------- /server/src/ft232hdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/ft232hdevice.cpp -------------------------------------------------------------------------------- /server/src/ft232hdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/ft232hdevice.h -------------------------------------------------------------------------------- /server/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/main.cpp -------------------------------------------------------------------------------- /server/src/opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/opc.h -------------------------------------------------------------------------------- /server/src/smartmatrixdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/smartmatrixdevice.cpp -------------------------------------------------------------------------------- /server/src/smartmatrixdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/smartmatrixdevice.h -------------------------------------------------------------------------------- /server/src/spidevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/spidevice.cpp -------------------------------------------------------------------------------- /server/src/spidevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/spidevice.h -------------------------------------------------------------------------------- /server/src/tcpnetserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/tcpnetserver.cpp -------------------------------------------------------------------------------- /server/src/tcpnetserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/tcpnetserver.h -------------------------------------------------------------------------------- /server/src/teensy4device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/teensy4device.cpp -------------------------------------------------------------------------------- /server/src/teensy4device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/teensy4device.h -------------------------------------------------------------------------------- /server/src/tinythread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/tinythread.cpp -------------------------------------------------------------------------------- /server/src/tinythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/tinythread.h -------------------------------------------------------------------------------- /server/src/usbdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/usbdevice.cpp -------------------------------------------------------------------------------- /server/src/usbdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/usbdevice.h -------------------------------------------------------------------------------- /server/src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/src/version.cpp -------------------------------------------------------------------------------- /server/src/version.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | extern const char *kFCServerVersion; 3 | -------------------------------------------------------------------------------- /server/upx/upx391w.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/upx/upx391w.exe -------------------------------------------------------------------------------- /server/vsbuild/vs2017_linux_raspberrypi/server_vs2017_linux_raspberrypi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/vsbuild/vs2017_linux_raspberrypi/server_vs2017_linux_raspberrypi.sln -------------------------------------------------------------------------------- /server/vsbuild/vs2017_linux_raspberrypi/server_vs2017_linux_raspberrypi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/vsbuild/vs2017_linux_raspberrypi/server_vs2017_linux_raspberrypi.vcxproj -------------------------------------------------------------------------------- /server/vsbuild/vs2017_linux_raspberrypi/server_vs2017_linux_raspberrypi.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/server/vsbuild/vs2017_linux_raspberrypi/server_vs2017_linux_raspberrypi.vcxproj.filters -------------------------------------------------------------------------------- /testjig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/README.md -------------------------------------------------------------------------------- /testjig/firmwareprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/firmwareprep.py -------------------------------------------------------------------------------- /testjig/intelhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/intelhex.py -------------------------------------------------------------------------------- /testjig/production/arm_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/arm_debug.cpp -------------------------------------------------------------------------------- /testjig/production/arm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/arm_debug.h -------------------------------------------------------------------------------- /testjig/production/arm_kinetis_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/arm_kinetis_debug.cpp -------------------------------------------------------------------------------- /testjig/production/arm_kinetis_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/arm_kinetis_debug.h -------------------------------------------------------------------------------- /testjig/production/arm_kinetis_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/arm_kinetis_reg.h -------------------------------------------------------------------------------- /testjig/production/electrical_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/electrical_test.cpp -------------------------------------------------------------------------------- /testjig/production/electrical_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/electrical_test.h -------------------------------------------------------------------------------- /testjig/production/fc_remote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/fc_remote.cpp -------------------------------------------------------------------------------- /testjig/production/fc_remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/fc_remote.h -------------------------------------------------------------------------------- /testjig/production/firmware_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/firmware_data.h -------------------------------------------------------------------------------- /testjig/production/production.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/production.ino -------------------------------------------------------------------------------- /testjig/production/testjig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/production/testjig.h -------------------------------------------------------------------------------- /testjig/serial_passthrough/serial_passthrough.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/fadecandy/HEAD/testjig/serial_passthrough/serial_passthrough.ino --------------------------------------------------------------------------------