├── .gitignore ├── Arduino ├── 01 Module Tests │ ├── ArtnetReceive │ │ └── ArtnetReceive.ino │ ├── XY5_panel_demo │ │ └── XY5_panel_demo.ino │ ├── XY5_panel_demo_161029 │ │ └── XY5_panel_demo_161029.ino │ ├── XY5_panel_demo_Teensy_HW1 │ │ └── XY5_panel_demo_Teensy_HW1.ino │ └── flipdigitDemoOnFlipdots │ │ └── flipdigitDemoOnFlipdots.ino └── 02 Stable │ └── artnetFlipdots │ ├── Helper.h │ ├── StateMachine.h │ └── artnetFlipdots.ino ├── Datasheets ├── !FLIPDOTS 14x28 REV6 - Manual.pdf ├── AZ_Flip_AZXY5 strips general description ENG.pdf ├── Alfazeta_FlipDot_RS485_Konfiguration │ ├── Binaer_tab.gif │ ├── IMG_7991.jpg │ ├── IMG_7992.jpg │ ├── IMG_7993.jpg │ └── IMG_7994.jpg ├── BREAKFAST │ ├── Flip-Disc Overview.pdf │ └── Screen Shot 2019-04-09 at 11.23.06 AM.png ├── Connections-rev1.pdf ├── Flip-Dot IDs.pdf ├── Flipdot_Specs.txt ├── OMC DMX to Flip-Dot Pinbelegung.pdf ├── RB1-125BAG1A datasheet by WIZnet | SnapEDA.html ├── RJ11-Breakout.pdf ├── RJ11-Datasheet.pdf ├── electromagnetic_small_7segment_display.pdf ├── electromagnetic_status_indicators.pdf ├── j1b1211ccd.pdf ├── pjrc-ethernet-kit-for-teensy-41~3.webp └── unnamed.jpg ├── Processing ├── 00 Setup │ ├── artnet-mac-setup.png │ └── instagram4j.zip ├── 01 Module Tests │ ├── FlipDotTestSerial │ │ └── FlipDotTestSerial.pde │ ├── Fonts │ │ ├── 04_04b30 │ │ │ ├── 04B_30__.TTF │ │ │ └── about.gif │ │ ├── Standard0757_7px.ttf │ │ ├── new │ │ │ ├── BitPap.ttf │ │ │ ├── Frampoase_16px.ttf │ │ │ ├── Kirbys-Adventure_8px.ttf │ │ │ ├── Nintendo-DS-BIOS_16px.ttf │ │ │ ├── Pixeland_35px.ttf │ │ │ ├── Pokemon Classic_8px.ttf │ │ │ ├── SPAIDERS_6px.TTF │ │ │ ├── bitfuul │ │ │ │ └── BitFUUL_10px.ttf │ │ │ ├── cd_icons │ │ │ │ └── CD-IconsPC_20px.ttf │ │ │ ├── chunky_dunk │ │ │ │ ├── ChunkyDunkAlias_14px.ttf │ │ │ │ ├── ChunkyDunkOutlin_14px.ttf │ │ │ │ └── ChunkyDunk_14px.ttf │ │ │ ├── color_basic │ │ │ │ └── color basic_9px.ttf │ │ │ ├── craft │ │ │ │ └── craft_16px.ttf │ │ │ ├── deflated_and_sloppy │ │ │ │ └── Deflated-And-Sloppy_16px.ttf │ │ │ ├── digital_disco │ │ │ │ ├── DigitalDisco-Thin_16px.ttf │ │ │ │ └── DigitalDisco_16px.ttf │ │ │ ├── edit_undo_line │ │ │ │ └── edunline_17px.ttf │ │ │ ├── handy00_8px.ttf │ │ │ ├── hellovetica.ttf │ │ │ ├── mario64 │ │ │ │ └── Mario64_12px.ttf │ │ │ ├── mini_strzalki │ │ │ │ └── MiniStrzalki_12px.ttf │ │ │ ├── pixel_dingbats_7 │ │ │ │ └── pixel_dingbats-7_8px.ttf │ │ │ ├── pixelsix00_8px.ttf │ │ │ ├── slap_and_crumbly │ │ │ │ ├── SlapAndCrumblyAl_12px.ttf │ │ │ │ └── SlapAndCrumbly_12px.ttf │ │ │ ├── spacy_stuff │ │ │ │ └── Spacy Stuff_10px.ttf │ │ │ ├── sqcon_10px.ttf │ │ │ └── square_dance_pc │ │ │ │ ├── squaredance00_8px.ttf │ │ │ │ ├── squaredance01_8px.ttf │ │ │ │ ├── squaredance03_8px.ttf │ │ │ │ └── squaredance10_8px.ttf │ │ ├── rotorcap-tt │ │ │ ├── .AppleDouble │ │ │ │ ├── .Parent │ │ │ │ ├── ROTORB__.TTF │ │ │ │ ├── ROTORCAP.TTF │ │ │ │ ├── ROTOREB_.TTF │ │ │ │ ├── ROTORE__.TTF │ │ │ │ ├── ROTORS__.TTF │ │ │ │ └── readme.txt │ │ │ ├── ROTORB__.TTF │ │ │ ├── ROTORCAP.TTF │ │ │ ├── ROTOREB_.TTF │ │ │ ├── ROTORE__.TTF │ │ │ ├── ROTORS__.TTF │ │ │ └── readme.txt │ │ └── silkscreen-3 │ │ │ ├── .AppleDouble │ │ │ ├── .Parent │ │ │ ├── readme.txt │ │ │ ├── slkscr.ttf │ │ │ ├── slkscrb.ttf │ │ │ ├── slkscre.ttf │ │ │ └── slkscreb.ttf │ │ │ ├── readme.txt │ │ │ ├── slkscr.ttf │ │ │ ├── slkscrb.ttf │ │ │ ├── slkscre.ttf │ │ │ └── slkscreb.ttf │ ├── ImageToSerial_V10 │ │ ├── FlipDotMatrix.pde │ │ ├── ImageToSerial_V10.pde │ │ ├── Images.pde │ │ ├── Text.pde │ │ ├── data │ │ │ ├── 171130-Flipdots-Originalsagen_01.txt │ │ │ ├── FagoCo-14.vlw │ │ │ ├── FagoCo-16.vlw │ │ │ ├── FagoCo-18.vlw │ │ │ ├── FagoCo-20.vlw │ │ │ ├── FagoCo-Italic-14.vlw │ │ │ ├── KarmaticArcade.vlw │ │ │ ├── Loudnoise-11.vlw │ │ │ ├── Loudnoise.vlw │ │ │ ├── Permanentdaylight-14.vlw │ │ │ ├── Permanentdaylight.vlw │ │ │ ├── ReturnOfGanonReg-14.vlw │ │ │ ├── ReturnOfGanonReg.vlw │ │ │ ├── RotisSansSerifStd-ExtraBold-16.vlw │ │ │ ├── SourceCodePro-Regular.ttf │ │ │ ├── Theinhardt-Medium-16.vlw │ │ │ ├── Theinhardt-MediumIta-14.vlw │ │ │ ├── Theinhardt-MediumIta-16.vlw │ │ │ ├── Theinhardt-MediumIta-20.vlw │ │ │ ├── mask.glsl │ │ │ ├── standard0757-Regular-16.vlw │ │ │ ├── standard0757-Regular-24.vlw │ │ │ ├── standard0757-Regular-7.vlw │ │ │ ├── standard0757-Regular-8.vlw │ │ │ ├── wall Kopie.png │ │ │ ├── wall.png │ │ │ ├── wall_bg Kopie.png │ │ │ └── wall_bg.png │ │ └── flipdot_ausgedachte_sagen.txt │ ├── LTC_LEDMovieKiosk │ │ ├── LTC_LEDMovieKiosk.pde │ │ ├── classSchnickSchnack.pde │ │ ├── classStripe.pde │ │ ├── data │ │ │ ├── ledTestPattern.png │ │ │ ├── ltc.png │ │ │ └── text.png │ │ └── readme.txt │ ├── ReceiveArtnetFlipdots │ │ └── ReceiveArtnetFlipdots.pde │ ├── SendDmxData │ │ └── SendDmxData.pde │ ├── classBifurcan │ │ ├── ClassOpenSimplexNoise.pde │ │ └── classBifurcan.pde │ ├── classPerlinGridAnimation │ │ ├── ClassNoise.pde │ │ ├── ClassPerlinGrid.pde │ │ ├── classPerlinGridAnimation.pde │ │ └── data │ │ │ └── fonts │ │ │ ├── BitFUUL_10px.ttf │ │ │ ├── CD-IconsPC_20px.ttf │ │ │ ├── MiniStrzalki_12px.ttf │ │ │ ├── OdinRounded-LightItalic-16.vlw │ │ │ ├── SPAIDERS_6px.TTF │ │ │ ├── SlapAndCrumbly_12px.ttf │ │ │ ├── Spacy Stuff_10px.ttf │ │ │ ├── craft_16px.ttf │ │ │ ├── pixel_dingbats-7_8px.ttf │ │ │ └── sqcon_10px.ttf │ ├── classTextanimator │ │ ├── ClassText.pde │ │ ├── classTextanimator.pde │ │ └── data │ │ │ └── OdinRounded-LightItalic-16.vlw │ └── instagramFollowerCount │ │ └── instagramFollowerCount.pde ├── 03 Development │ ├── flipdotPlayerWithLEDs │ │ ├── ClassDisplay.pde │ │ ├── ClassDither.pde │ │ ├── ClassDot.pde │ │ ├── ClassImporter.pde │ │ ├── ClassPanel.pde │ │ ├── Helper.pde │ │ ├── StateMachineFlipdots.pde │ │ ├── StateMachineLEDs.pde │ │ ├── Variables.pde │ │ ├── classSchnickSchnack.pde │ │ ├── classStripe.pde │ │ ├── data │ │ │ ├── 04b-03-16.vlw │ │ │ ├── 04b-24-16.vlw │ │ │ ├── LKEuropaGroteskCity-MediumItalic-16.vlw │ │ │ ├── Nobile-italic-16.vlw │ │ │ ├── scroll.txt │ │ │ ├── source.png │ │ │ └── source2.png │ │ ├── flipdotPlayerWithLEDs.pde │ │ └── footage │ │ │ └── leds │ │ │ ├── ledTestPattern.png │ │ │ ├── ltc.png │ │ │ └── text.png │ ├── flipdotPlayer_v0 │ │ ├── ClassImporter.pde │ │ ├── classDot.pde │ │ ├── classPanel.pde │ │ ├── data │ │ │ └── source.png │ │ └── flipdotPlayer_v0.pde │ └── flipdotPlayer_v1 │ │ ├── classDot.pde │ │ ├── classPanel.pde │ │ ├── data │ │ └── source.png │ │ └── flipdotPlayer_v1.pde └── 04 Stable │ ├── KioskLEDs │ ├── ClassDither.pde │ ├── ClassImporter.pde │ ├── Helper.pde │ ├── KioskLEDs.pde │ ├── StateMachine.pde │ ├── Variables.pde │ ├── classSchnickSchnack.pde │ ├── data │ │ ├── 04b-03-16.vlw │ │ ├── 04b-24-16.vlw │ │ ├── 04b-25-12.vlw │ │ ├── LKEuropaGroteskCity-MediumItalic-16.vlw │ │ ├── Nobile-italic-16.vlw │ │ ├── OdinRounded-LightItalic-16.vlw │ │ ├── f.png │ │ ├── follower.png │ │ ├── leaHashtags.txt │ │ ├── scroll.txt │ │ ├── source.png │ │ └── source2.png │ ├── demoStuff.pde │ └── footage │ │ └── leds │ │ ├── ledTestPattern.png │ │ ├── ltc.png │ │ └── text.png │ ├── VirtualArtnetFlipdots │ ├── ClassDisplay.pde │ ├── ClassPanel.pde │ ├── Helper.pde │ └── VirtualArtnetFlipdots.pde │ └── flipdotPlayer │ ├── ClassDisplay.pde │ ├── ClassDither.pde │ ├── ClassImporter.pde │ ├── ClassPanel.pde │ ├── ClassPerlinGrid.pde │ ├── Helper.pde │ ├── StateMachine.pde │ ├── Variables.pde │ ├── data │ ├── 04b-03-10.vlw │ ├── 04b-03-12.vlw │ ├── 04b-25-12.vlw │ ├── 201006 ui_layout.ai │ ├── InputMono-Medium-10.vlw │ ├── flipdotWords.txt │ ├── fonts │ │ ├── BitFUUL_10px.ttf │ │ ├── CD-IconsPC_20px.ttf │ │ ├── DigitalDisco-Thin_16px.ttf │ │ ├── DigitalDisco_16px.ttf │ │ ├── MiniStrzalki_12px.ttf │ │ ├── OdinRounded-LightItalic-16.vlw │ │ ├── SPAIDERS_6px.TTF │ │ ├── SlapAndCrumbly_12px.ttf │ │ ├── Spacy Stuff_10px.ttf │ │ ├── Standard0757_7px.ttf │ │ ├── craft_16px.ttf │ │ ├── pixel_dingbats-7_8px.ttf │ │ └── sqcon_10px.ttf │ ├── source.png │ ├── source2.png │ ├── source3.png │ └── stateSettings.json │ └── flipdotPlayer.pde ├── README.md └── assets ├── 2.png ├── SRB_2009300891-916_send.jpg ├── addresses.png ├── circuit.jpg ├── flip-dot-board-xy5-1.png ├── interface.png ├── key.png └── pcb_back.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/.gitignore -------------------------------------------------------------------------------- /Arduino/01 Module Tests/ArtnetReceive/ArtnetReceive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Arduino/01 Module Tests/ArtnetReceive/ArtnetReceive.ino -------------------------------------------------------------------------------- /Arduino/01 Module Tests/XY5_panel_demo/XY5_panel_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Arduino/01 Module Tests/XY5_panel_demo/XY5_panel_demo.ino -------------------------------------------------------------------------------- /Arduino/01 Module Tests/XY5_panel_demo_161029/XY5_panel_demo_161029.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Arduino/01 Module Tests/XY5_panel_demo_161029/XY5_panel_demo_161029.ino -------------------------------------------------------------------------------- /Arduino/01 Module Tests/XY5_panel_demo_Teensy_HW1/XY5_panel_demo_Teensy_HW1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Arduino/01 Module Tests/XY5_panel_demo_Teensy_HW1/XY5_panel_demo_Teensy_HW1.ino -------------------------------------------------------------------------------- /Arduino/01 Module Tests/flipdigitDemoOnFlipdots/flipdigitDemoOnFlipdots.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Arduino/01 Module Tests/flipdigitDemoOnFlipdots/flipdigitDemoOnFlipdots.ino -------------------------------------------------------------------------------- /Arduino/02 Stable/artnetFlipdots/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Arduino/02 Stable/artnetFlipdots/Helper.h -------------------------------------------------------------------------------- /Arduino/02 Stable/artnetFlipdots/StateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Arduino/02 Stable/artnetFlipdots/StateMachine.h -------------------------------------------------------------------------------- /Arduino/02 Stable/artnetFlipdots/artnetFlipdots.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Arduino/02 Stable/artnetFlipdots/artnetFlipdots.ino -------------------------------------------------------------------------------- /Datasheets/!FLIPDOTS 14x28 REV6 - Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/!FLIPDOTS 14x28 REV6 - Manual.pdf -------------------------------------------------------------------------------- /Datasheets/AZ_Flip_AZXY5 strips general description ENG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/AZ_Flip_AZXY5 strips general description ENG.pdf -------------------------------------------------------------------------------- /Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/Binaer_tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/Binaer_tab.gif -------------------------------------------------------------------------------- /Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/IMG_7991.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/IMG_7991.jpg -------------------------------------------------------------------------------- /Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/IMG_7992.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/IMG_7992.jpg -------------------------------------------------------------------------------- /Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/IMG_7993.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/IMG_7993.jpg -------------------------------------------------------------------------------- /Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/IMG_7994.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/Alfazeta_FlipDot_RS485_Konfiguration/IMG_7994.jpg -------------------------------------------------------------------------------- /Datasheets/BREAKFAST/Flip-Disc Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/BREAKFAST/Flip-Disc Overview.pdf -------------------------------------------------------------------------------- /Datasheets/BREAKFAST/Screen Shot 2019-04-09 at 11.23.06 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/BREAKFAST/Screen Shot 2019-04-09 at 11.23.06 AM.png -------------------------------------------------------------------------------- /Datasheets/Connections-rev1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/Connections-rev1.pdf -------------------------------------------------------------------------------- /Datasheets/Flip-Dot IDs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/Flip-Dot IDs.pdf -------------------------------------------------------------------------------- /Datasheets/Flipdot_Specs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/Flipdot_Specs.txt -------------------------------------------------------------------------------- /Datasheets/OMC DMX to Flip-Dot Pinbelegung.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/OMC DMX to Flip-Dot Pinbelegung.pdf -------------------------------------------------------------------------------- /Datasheets/RB1-125BAG1A datasheet by WIZnet | SnapEDA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/RB1-125BAG1A datasheet by WIZnet | SnapEDA.html -------------------------------------------------------------------------------- /Datasheets/RJ11-Breakout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/RJ11-Breakout.pdf -------------------------------------------------------------------------------- /Datasheets/RJ11-Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/RJ11-Datasheet.pdf -------------------------------------------------------------------------------- /Datasheets/electromagnetic_small_7segment_display.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/electromagnetic_small_7segment_display.pdf -------------------------------------------------------------------------------- /Datasheets/electromagnetic_status_indicators.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/electromagnetic_status_indicators.pdf -------------------------------------------------------------------------------- /Datasheets/j1b1211ccd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/j1b1211ccd.pdf -------------------------------------------------------------------------------- /Datasheets/pjrc-ethernet-kit-for-teensy-41~3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/pjrc-ethernet-kit-for-teensy-41~3.webp -------------------------------------------------------------------------------- /Datasheets/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Datasheets/unnamed.jpg -------------------------------------------------------------------------------- /Processing/00 Setup/artnet-mac-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/00 Setup/artnet-mac-setup.png -------------------------------------------------------------------------------- /Processing/00 Setup/instagram4j.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/00 Setup/instagram4j.zip -------------------------------------------------------------------------------- /Processing/01 Module Tests/FlipDotTestSerial/FlipDotTestSerial.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/FlipDotTestSerial/FlipDotTestSerial.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/04_04b30/04B_30__.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/04_04b30/04B_30__.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/04_04b30/about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/04_04b30/about.gif -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/Standard0757_7px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/Standard0757_7px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/BitPap.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/BitPap.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/Frampoase_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/Frampoase_16px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/Kirbys-Adventure_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/Kirbys-Adventure_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/Nintendo-DS-BIOS_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/Nintendo-DS-BIOS_16px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/Pixeland_35px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/Pixeland_35px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/Pokemon Classic_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/Pokemon Classic_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/SPAIDERS_6px.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/SPAIDERS_6px.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/bitfuul/BitFUUL_10px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/bitfuul/BitFUUL_10px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/cd_icons/CD-IconsPC_20px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/cd_icons/CD-IconsPC_20px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/chunky_dunk/ChunkyDunkAlias_14px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/chunky_dunk/ChunkyDunkAlias_14px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/chunky_dunk/ChunkyDunkOutlin_14px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/chunky_dunk/ChunkyDunkOutlin_14px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/chunky_dunk/ChunkyDunk_14px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/chunky_dunk/ChunkyDunk_14px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/color_basic/color basic_9px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/color_basic/color basic_9px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/craft/craft_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/craft/craft_16px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/deflated_and_sloppy/Deflated-And-Sloppy_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/deflated_and_sloppy/Deflated-And-Sloppy_16px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/digital_disco/DigitalDisco-Thin_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/digital_disco/DigitalDisco-Thin_16px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/digital_disco/DigitalDisco_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/digital_disco/DigitalDisco_16px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/edit_undo_line/edunline_17px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/edit_undo_line/edunline_17px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/handy00_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/handy00_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/hellovetica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/hellovetica.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/mario64/Mario64_12px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/mario64/Mario64_12px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/mini_strzalki/MiniStrzalki_12px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/mini_strzalki/MiniStrzalki_12px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/pixel_dingbats_7/pixel_dingbats-7_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/pixel_dingbats_7/pixel_dingbats-7_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/pixelsix00_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/pixelsix00_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/slap_and_crumbly/SlapAndCrumblyAl_12px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/slap_and_crumbly/SlapAndCrumblyAl_12px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/slap_and_crumbly/SlapAndCrumbly_12px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/slap_and_crumbly/SlapAndCrumbly_12px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/spacy_stuff/Spacy Stuff_10px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/spacy_stuff/Spacy Stuff_10px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/sqcon_10px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/sqcon_10px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/square_dance_pc/squaredance00_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/square_dance_pc/squaredance00_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/square_dance_pc/squaredance01_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/square_dance_pc/squaredance01_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/square_dance_pc/squaredance03_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/square_dance_pc/squaredance03_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/new/square_dance_pc/squaredance10_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/new/square_dance_pc/squaredance10_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/.Parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/.Parent -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTORB__.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTORB__.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTORCAP.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTORCAP.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTOREB_.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTOREB_.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTORE__.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTORE__.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTORS__.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/ROTORS__.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/.AppleDouble/readme.txt -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/ROTORB__.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/ROTORB__.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/ROTORCAP.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/ROTORCAP.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/ROTOREB_.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/ROTOREB_.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/ROTORE__.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/ROTORE__.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/ROTORS__.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/ROTORS__.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/rotorcap-tt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/rotorcap-tt/readme.txt -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/.Parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/.Parent -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/readme.txt -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/slkscr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/slkscr.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/slkscrb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/slkscrb.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/slkscre.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/slkscre.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/slkscreb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/.AppleDouble/slkscreb.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/readme.txt -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/slkscr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/slkscr.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/slkscrb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/slkscrb.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/slkscre.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/slkscre.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/Fonts/silkscreen-3/slkscreb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/Fonts/silkscreen-3/slkscreb.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/FlipDotMatrix.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/FlipDotMatrix.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/ImageToSerial_V10.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/ImageToSerial_V10.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/Images.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/Images.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/Text.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/Text.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/171130-Flipdots-Originalsagen_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/171130-Flipdots-Originalsagen_01.txt -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-14.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-14.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-16.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-18.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-18.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-20.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-20.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-Italic-14.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/FagoCo-Italic-14.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/KarmaticArcade.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/KarmaticArcade.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/Loudnoise-11.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/Loudnoise-11.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/Loudnoise.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/Loudnoise.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/Permanentdaylight-14.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/Permanentdaylight-14.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/Permanentdaylight.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/Permanentdaylight.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/ReturnOfGanonReg-14.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/ReturnOfGanonReg-14.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/ReturnOfGanonReg.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/ReturnOfGanonReg.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/RotisSansSerifStd-ExtraBold-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/RotisSansSerifStd-ExtraBold-16.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/Theinhardt-Medium-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/Theinhardt-Medium-16.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/Theinhardt-MediumIta-14.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/Theinhardt-MediumIta-14.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/Theinhardt-MediumIta-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/Theinhardt-MediumIta-16.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/Theinhardt-MediumIta-20.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/Theinhardt-MediumIta-20.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/mask.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/mask.glsl -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/standard0757-Regular-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/standard0757-Regular-16.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/standard0757-Regular-24.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/standard0757-Regular-24.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/standard0757-Regular-7.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/standard0757-Regular-7.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/standard0757-Regular-8.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/standard0757-Regular-8.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/wall Kopie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/wall Kopie.png -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/wall.png -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/wall_bg Kopie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/wall_bg Kopie.png -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/data/wall_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/data/wall_bg.png -------------------------------------------------------------------------------- /Processing/01 Module Tests/ImageToSerial_V10/flipdot_ausgedachte_sagen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ImageToSerial_V10/flipdot_ausgedachte_sagen.txt -------------------------------------------------------------------------------- /Processing/01 Module Tests/LTC_LEDMovieKiosk/LTC_LEDMovieKiosk.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/LTC_LEDMovieKiosk/LTC_LEDMovieKiosk.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/LTC_LEDMovieKiosk/classSchnickSchnack.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/LTC_LEDMovieKiosk/classSchnickSchnack.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/LTC_LEDMovieKiosk/classStripe.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/LTC_LEDMovieKiosk/classStripe.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/LTC_LEDMovieKiosk/data/ledTestPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/LTC_LEDMovieKiosk/data/ledTestPattern.png -------------------------------------------------------------------------------- /Processing/01 Module Tests/LTC_LEDMovieKiosk/data/ltc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/LTC_LEDMovieKiosk/data/ltc.png -------------------------------------------------------------------------------- /Processing/01 Module Tests/LTC_LEDMovieKiosk/data/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/LTC_LEDMovieKiosk/data/text.png -------------------------------------------------------------------------------- /Processing/01 Module Tests/LTC_LEDMovieKiosk/readme.txt: -------------------------------------------------------------------------------- 1 | initial demo / setup to get the LEDs running at LTC 2020 "Messy Kiosk" -------------------------------------------------------------------------------- /Processing/01 Module Tests/ReceiveArtnetFlipdots/ReceiveArtnetFlipdots.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/ReceiveArtnetFlipdots/ReceiveArtnetFlipdots.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/SendDmxData/SendDmxData.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/SendDmxData/SendDmxData.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/classBifurcan/ClassOpenSimplexNoise.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classBifurcan/ClassOpenSimplexNoise.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/classBifurcan/classBifurcan.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classBifurcan/classBifurcan.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/ClassNoise.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/ClassNoise.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/ClassPerlinGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/ClassPerlinGrid.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/classPerlinGridAnimation.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/classPerlinGridAnimation.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/BitFUUL_10px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/BitFUUL_10px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/CD-IconsPC_20px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/CD-IconsPC_20px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/MiniStrzalki_12px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/MiniStrzalki_12px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/OdinRounded-LightItalic-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/OdinRounded-LightItalic-16.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/SPAIDERS_6px.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/SPAIDERS_6px.TTF -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/SlapAndCrumbly_12px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/SlapAndCrumbly_12px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/Spacy Stuff_10px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/Spacy Stuff_10px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/craft_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/craft_16px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/pixel_dingbats-7_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/pixel_dingbats-7_8px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/sqcon_10px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classPerlinGridAnimation/data/fonts/sqcon_10px.ttf -------------------------------------------------------------------------------- /Processing/01 Module Tests/classTextanimator/ClassText.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classTextanimator/ClassText.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/classTextanimator/classTextanimator.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classTextanimator/classTextanimator.pde -------------------------------------------------------------------------------- /Processing/01 Module Tests/classTextanimator/data/OdinRounded-LightItalic-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/classTextanimator/data/OdinRounded-LightItalic-16.vlw -------------------------------------------------------------------------------- /Processing/01 Module Tests/instagramFollowerCount/instagramFollowerCount.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/01 Module Tests/instagramFollowerCount/instagramFollowerCount.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/ClassDisplay.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/ClassDisplay.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/ClassDither.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/ClassDither.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/ClassDot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/ClassDot.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/ClassImporter.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/ClassImporter.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/ClassPanel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/ClassPanel.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/Helper.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/Helper.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/StateMachineFlipdots.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/StateMachineFlipdots.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/StateMachineLEDs.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/StateMachineLEDs.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/Variables.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/Variables.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/classSchnickSchnack.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/classSchnickSchnack.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/classStripe.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/classStripe.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/data/04b-03-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/data/04b-03-16.vlw -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/data/04b-24-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/data/04b-24-16.vlw -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/data/LKEuropaGroteskCity-MediumItalic-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/data/LKEuropaGroteskCity-MediumItalic-16.vlw -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/data/Nobile-italic-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/data/Nobile-italic-16.vlw -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/data/scroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/data/scroll.txt -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/data/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/data/source.png -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/data/source2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/data/source2.png -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/flipdotPlayerWithLEDs.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/flipdotPlayerWithLEDs.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/footage/leds/ledTestPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/footage/leds/ledTestPattern.png -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/footage/leds/ltc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/footage/leds/ltc.png -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayerWithLEDs/footage/leds/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayerWithLEDs/footage/leds/text.png -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayer_v0/ClassImporter.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayer_v0/ClassImporter.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayer_v0/classDot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayer_v0/classDot.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayer_v0/classPanel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayer_v0/classPanel.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayer_v0/data/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayer_v0/data/source.png -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayer_v0/flipdotPlayer_v0.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayer_v0/flipdotPlayer_v0.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayer_v1/classDot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayer_v1/classDot.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayer_v1/classPanel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayer_v1/classPanel.pde -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayer_v1/data/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayer_v1/data/source.png -------------------------------------------------------------------------------- /Processing/03 Development/flipdotPlayer_v1/flipdotPlayer_v1.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/03 Development/flipdotPlayer_v1/flipdotPlayer_v1.pde -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/ClassDither.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/ClassDither.pde -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/ClassImporter.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/ClassImporter.pde -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/Helper.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/Helper.pde -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/KioskLEDs.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/KioskLEDs.pde -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/StateMachine.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/StateMachine.pde -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/Variables.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/Variables.pde -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/classSchnickSchnack.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/classSchnickSchnack.pde -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/04b-03-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/04b-03-16.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/04b-24-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/04b-24-16.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/04b-25-12.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/04b-25-12.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/LKEuropaGroteskCity-MediumItalic-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/LKEuropaGroteskCity-MediumItalic-16.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/Nobile-italic-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/Nobile-italic-16.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/OdinRounded-LightItalic-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/OdinRounded-LightItalic-16.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/f.png -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/follower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/follower.png -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/leaHashtags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/leaHashtags.txt -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/scroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/scroll.txt -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/source.png -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/data/source2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/data/source2.png -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/demoStuff.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/demoStuff.pde -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/footage/leds/ledTestPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/footage/leds/ledTestPattern.png -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/footage/leds/ltc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/footage/leds/ltc.png -------------------------------------------------------------------------------- /Processing/04 Stable/KioskLEDs/footage/leds/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/KioskLEDs/footage/leds/text.png -------------------------------------------------------------------------------- /Processing/04 Stable/VirtualArtnetFlipdots/ClassDisplay.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/VirtualArtnetFlipdots/ClassDisplay.pde -------------------------------------------------------------------------------- /Processing/04 Stable/VirtualArtnetFlipdots/ClassPanel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/VirtualArtnetFlipdots/ClassPanel.pde -------------------------------------------------------------------------------- /Processing/04 Stable/VirtualArtnetFlipdots/Helper.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/VirtualArtnetFlipdots/Helper.pde -------------------------------------------------------------------------------- /Processing/04 Stable/VirtualArtnetFlipdots/VirtualArtnetFlipdots.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/VirtualArtnetFlipdots/VirtualArtnetFlipdots.pde -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/ClassDisplay.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/ClassDisplay.pde -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/ClassDither.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/ClassDither.pde -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/ClassImporter.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/ClassImporter.pde -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/ClassPanel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/ClassPanel.pde -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/ClassPerlinGrid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/ClassPerlinGrid.pde -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/Helper.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/Helper.pde -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/StateMachine.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/StateMachine.pde -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/Variables.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/Variables.pde -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/04b-03-10.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/04b-03-10.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/04b-03-12.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/04b-03-12.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/04b-25-12.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/04b-25-12.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/201006 ui_layout.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/201006 ui_layout.ai -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/InputMono-Medium-10.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/InputMono-Medium-10.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/flipdotWords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/flipdotWords.txt -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/BitFUUL_10px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/BitFUUL_10px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/CD-IconsPC_20px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/CD-IconsPC_20px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/DigitalDisco-Thin_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/DigitalDisco-Thin_16px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/DigitalDisco_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/DigitalDisco_16px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/MiniStrzalki_12px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/MiniStrzalki_12px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/OdinRounded-LightItalic-16.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/OdinRounded-LightItalic-16.vlw -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/SPAIDERS_6px.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/SPAIDERS_6px.TTF -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/SlapAndCrumbly_12px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/SlapAndCrumbly_12px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/Spacy Stuff_10px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/Spacy Stuff_10px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/Standard0757_7px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/Standard0757_7px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/craft_16px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/craft_16px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/pixel_dingbats-7_8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/pixel_dingbats-7_8px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/fonts/sqcon_10px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/fonts/sqcon_10px.ttf -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/source.png -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/source2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/source2.png -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/source3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/source3.png -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/data/stateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/data/stateSettings.json -------------------------------------------------------------------------------- /Processing/04 Stable/flipdotPlayer/flipdotPlayer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/Processing/04 Stable/flipdotPlayer/flipdotPlayer.pde -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/README.md -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/SRB_2009300891-916_send.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/assets/SRB_2009300891-916_send.jpg -------------------------------------------------------------------------------- /assets/addresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/assets/addresses.png -------------------------------------------------------------------------------- /assets/circuit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/assets/circuit.jpg -------------------------------------------------------------------------------- /assets/flip-dot-board-xy5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/assets/flip-dot-board-xy5-1.png -------------------------------------------------------------------------------- /assets/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/assets/interface.png -------------------------------------------------------------------------------- /assets/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/assets/key.png -------------------------------------------------------------------------------- /assets/pcb_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndsh/flipdots/HEAD/assets/pcb_back.png --------------------------------------------------------------------------------