├── .gitignore ├── LICENSE ├── README.md ├── animations.psd ├── images ├── ._ireland.png ├── birthday.gif ├── blogo2.gif ├── blogo3.gif ├── bud.gif ├── carlsberg.gif ├── checkin.gif ├── eggplant.gif ├── emoti.gif ├── fingers.gif ├── gins.gif ├── guinness.gif ├── guinnesspints.gif ├── heineken.gif ├── hophouse.gif ├── ireland.png ├── lastdrinks.gif ├── liverpool.gif ├── slidef.gif ├── smiles.gif ├── sword_pong.gif ├── team.gif ├── tuamstars.gif └── ui.png ├── ireland.png ├── rpi-rgb-led-matrix ├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── examples-api-use │ ├── Makefile │ ├── README.md │ ├── americancaptain.ttf │ ├── c-example.c │ ├── demo-main.cc │ ├── loadpithon.sh │ ├── minimal-example.cc │ ├── nohup.out │ ├── php.sh │ ├── pithon.py │ ├── runtext.ppm │ ├── runtext16.ppm │ ├── scrolltext.py │ ├── scrolltext.pyc │ ├── scrolltextbuffer.py │ ├── test.ppm │ ├── text-example.cc │ └── time.sh ├── fonts │ ├── 10x20.bdf │ ├── 4x6.bdf │ ├── 5x7.bdf │ ├── 5x8.bdf │ ├── 6x10.bdf │ ├── 6x12.bdf │ ├── 6x13.bdf │ ├── 6x13B.bdf │ ├── 6x13O.bdf │ ├── 6x9.bdf │ ├── 7x13.bdf │ ├── 7x13B.bdf │ ├── 7x13O.bdf │ ├── 7x14.bdf │ ├── 7x14B.bdf │ ├── 8x13.bdf │ ├── 8x13B.bdf │ ├── 8x13O.bdf │ ├── 9x15.bdf │ ├── 9x15B.bdf │ ├── 9x18.bdf │ ├── 9x18B.bdf │ ├── AUTHORS │ ├── README │ ├── README.md │ ├── clR6x12.bdf │ ├── helvR12.bdf │ └── tom-thumb.bdf ├── img │ ├── Makefile │ ├── active3-pcb-config-default.png │ ├── active3-pcb-config-pin4.png │ ├── active3-pcb-config-pin8.png │ ├── active3-pcb.png │ ├── active3-schematic.png │ ├── adafruit-64x64-back.jpg │ ├── adafruit-64x64-front.jpg │ ├── adafruit-mod.jpg │ ├── chained-64x64.jpg │ ├── coordinates.png │ ├── coordinates.svg │ ├── hub75-other.jpg │ ├── hub75.jpg │ ├── idc-hub75-connector.jpg │ ├── passive-rpi1-pcb.png │ ├── passive3-pcb.png │ ├── pixelpusher-vid.jpg │ ├── powerbar.jpg │ ├── raspberry-gpio.jpg │ ├── running-vid.jpg │ ├── text-ghosting.jpg │ ├── text-no-ghosting.jpg │ ├── three-parallel-panels-soic.jpg │ ├── time-display.jpg │ ├── user-action-shot.jpg │ └── wire-up-icon.png ├── include │ ├── canvas.h │ ├── content-streamer.h │ ├── gpio.h │ ├── graphics.h │ ├── led-matrix-c.h │ ├── led-matrix.h │ ├── thread.h │ ├── threaded-canvas-manipulator.h │ └── transformer.h ├── led-matrix ├── lib │ ├── .gitignore │ ├── Makefile │ ├── bdf-font.cc │ ├── content-streamer.cc │ ├── framebuffer-internal.h │ ├── framebuffer.cc │ ├── gpio.cc │ ├── graphics.cc │ ├── hardware-mapping.c │ ├── hardware-mapping.h │ ├── led-matrix-c.cc │ ├── led-matrix.cc │ ├── options-initialize.cc │ ├── thread.cc │ ├── transformer.cc │ └── utf8-internal.h ├── python │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── rgbmatrix │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── core.cpp │ │ ├── core.pxd │ │ ├── core.pyx │ │ ├── cppinc.pxd │ │ ├── graphics.cpp │ │ ├── graphics.pxd │ │ └── graphics.pyx │ ├── samples │ │ ├── graphics.py │ │ ├── grayscale-block.py │ │ ├── image-draw.py │ │ ├── image-scroller.py │ │ ├── pulsing-brightness.py │ │ ├── pulsing-colors.py │ │ ├── rotating-block-generator.py │ │ ├── runtext.py │ │ ├── samplebase.py │ │ └── simple-square.py │ └── setup.py └── utils │ ├── Makefile │ ├── README.md │ ├── firework.gif │ ├── led-image-viewer.cc │ └── video-viewer.cc ├── scripts ├── OpenSansEmoji.ttf ├── TooMuchInk.ttf ├── birthday.sh ├── blogo.sh ├── budweiser.sh ├── carlsberg.sh ├── eggplant.sh ├── finger.sh ├── font.ttf ├── gins.sh ├── guinness.sh ├── guinnesspints.sh ├── heineken.sh ├── hellovetica.ttf ├── hophouse.sh ├── ireland.sh ├── killit.sh ├── lastdrinks.sh ├── liverpool.sh ├── smiles.sh ├── squaredance00.ttf ├── sword.sh ├── teams.sh └── tuamstars.sh ├── setup.sh ├── videos └── smile.mov ├── wiring.md └── www ├── .DS_Store ├── ._.DS_Store ├── ._touchscreen.php ├── bower.json ├── bower_components ├── core-focusable │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── core-focusable.html │ ├── core-focusable.js │ ├── demo.html │ └── polymer-mixin.js ├── core-icon │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── core-icon.css │ ├── core-icon.html │ ├── demo.html │ ├── index.html │ └── metadata.html ├── core-icons │ ├── .bower.json │ ├── README.md │ ├── av-icons.html │ ├── bower.json │ ├── communication-icons.html │ ├── core-icons.html │ ├── demo.html │ ├── device-icons.html │ ├── editor-icons.html │ ├── hardware-icons.html │ ├── image-icons.html │ ├── index.html │ ├── maps-icons.html │ ├── notification-icons.html │ ├── png-icons.html │ └── social-icons.html ├── core-iconset-svg │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── core-iconset-svg.html │ ├── demo.html │ ├── index.html │ └── svg-sample-icons.html ├── core-iconset │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── core-iconset.html │ ├── demo.html │ ├── index.html │ ├── my-icons-big.png │ └── my-icons.png ├── core-meta │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── core-meta.html │ ├── demo.html │ └── index.html ├── core-range │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── core-range.html │ ├── demo.html │ ├── index.html │ └── test │ │ ├── basic.html │ │ └── index.html ├── core-selection │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── core-selection.html │ ├── demo.html │ ├── index.html │ └── test │ │ ├── basic.html │ │ ├── index.html │ │ └── multi.html ├── core-selector │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── core-selector.html │ ├── demo.html │ ├── index.html │ ├── metadata.html │ └── test │ │ ├── activate-event.html │ │ ├── basic.html │ │ ├── content.html │ │ ├── index.html │ │ ├── multi.html │ │ ├── next-previous.html │ │ ├── selected-attr-prop.html │ │ └── template-repeat.html ├── font-roboto │ ├── .bower.json │ ├── README.md │ ├── bower.json │ └── roboto.html ├── iron-a11y-keys-behavior │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── demo │ │ ├── index.html │ │ └── x-key-aware.html │ ├── index.html │ ├── iron-a11y-keys-behavior.html │ └── test │ │ ├── basic-test.html │ │ └── index.html ├── iron-behaviors │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── demo │ │ ├── index.html │ │ └── simple-button.html │ ├── index.html │ ├── iron-button-state.html │ ├── iron-control-state.html │ └── test │ │ ├── active-state.html │ │ ├── disabled-state.html │ │ ├── focused-state.html │ │ ├── index.html │ │ └── test-elements.html ├── iron-flex-layout │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── classes │ │ ├── iron-flex-layout.html │ │ └── iron-shadow-flex-layout.html │ ├── demo │ │ ├── index.html │ │ └── x-app.html │ └── iron-flex-layout.html ├── iron-icon │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── demo │ │ ├── index.html │ │ └── location.png │ ├── hero.svg │ ├── index.html │ ├── iron-icon.html │ └── test │ │ ├── index.html │ │ └── iron-icon.html ├── iron-icons │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── av-icons.html │ ├── bower.json │ ├── communication-icons.html │ ├── demo │ │ └── index.html │ ├── device-icons.html │ ├── editor-icons.html │ ├── hardware-icons.html │ ├── hero.svg │ ├── image-icons.html │ ├── index.html │ ├── iron-icons.html │ ├── maps-icons.html │ ├── notification-icons.html │ └── social-icons.html ├── iron-iconset-svg │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── demo │ │ ├── index.html │ │ └── svg-sample-icons.html │ ├── index.html │ ├── iron-iconset-svg.html │ └── test │ │ ├── index.html │ │ └── iron-iconset-svg.html ├── iron-meta │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── demo │ │ └── index.html │ ├── hero.svg │ ├── index.html │ ├── iron-meta.html │ └── test │ │ ├── basic.html │ │ ├── index.html │ │ └── iron-meta.html ├── paper-behaviors │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── demo │ │ ├── index.html │ │ ├── paper-button.html │ │ └── paper-radio-button.html │ ├── index.html │ ├── paper-button-behavior.html │ ├── paper-inky-focus-behavior.html │ └── test │ │ ├── index.html │ │ ├── paper-button-behavior.html │ │ ├── paper-radio-button-behavior.html │ │ ├── test-button.html │ │ └── test-radio-button.html ├── paper-button │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── demo.html │ ├── index.html │ ├── metadata.html │ ├── paper-button-base.html │ ├── paper-button.html │ └── test │ │ ├── a11y.html │ │ ├── basic.html │ │ └── index.html ├── paper-fab │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── demo.html │ ├── demo │ │ └── index.html │ ├── index.html │ ├── metadata.html │ ├── paper-fab.html │ └── test │ │ ├── a11y.html │ │ ├── basic.html │ │ └── index.html ├── paper-material │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── demo │ │ └── index.html │ ├── index.html │ ├── paper-material.html │ └── test │ │ ├── index.html │ │ └── paper-material.html ├── paper-ripple │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── demo.html │ ├── demo │ │ └── index.html │ ├── hero.svg │ ├── index.html │ ├── metadata.html │ ├── paper-ripple.html │ └── test │ │ ├── index.html │ │ ├── paper-ripple.html │ │ └── position.html ├── paper-shadow │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── demo.html │ ├── index.html │ ├── metadata.html │ ├── paper-shadow.css │ ├── paper-shadow.html │ └── test │ │ ├── basic.html │ │ └── index.html ├── paper-styles │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── classes │ │ ├── global.html │ │ ├── shadow-layout.html │ │ ├── shadow.html │ │ └── typography.html │ ├── color.html │ ├── default-theme.html │ ├── demo-pages.html │ ├── demo.css │ ├── demo │ │ └── index.html │ ├── paper-styles-classes.html │ ├── paper-styles.html │ ├── shadow.html │ └── typography.html ├── polymer │ ├── .bower.json │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── build.log │ ├── layout.html │ ├── polymer-micro.html │ ├── polymer-mini.html │ ├── polymer.html │ ├── polymer.js │ └── polymer.min.js └── webcomponentsjs │ ├── .bower.json │ ├── CustomElements.js │ ├── CustomElements.min.js │ ├── HTMLImports.js │ ├── HTMLImports.min.js │ ├── MutationObserver.js │ ├── MutationObserver.min.js │ ├── README.md │ ├── ShadowDOM.js │ ├── ShadowDOM.min.js │ ├── bower.json │ ├── build.log │ ├── package.json │ ├── webcomponents-lite.js │ ├── webcomponents-lite.min.js │ ├── webcomponents.js │ └── webcomponents.min.js ├── css ├── animate.css └── tidy.css ├── external21273443_765615140278201_6173888556167615854_o.jpg ├── images ├── ._birthday.jpg ├── ._budweiser.jpg ├── ._carlsberg.jpg ├── ._disable.jpg ├── ._eggplants.jpg ├── ._fingers.jpg ├── ._guinness-25.jpg ├── ._guinness.jpg ├── ._heineken.jpg ├── ._hophouse.jpg ├── ._lastdrinks.jpg ├── ._liverpool.jpg ├── ._logo.jpg ├── ._time.jpg ├── ._touchscreen_01.jpg ├── ._touchscreen_02.jpg ├── ._touchscreen_04.jpg ├── ._touchscreen_06.jpg ├── ._touchscreen_08.jpg ├── ._touchscreen_10.jpg ├── ._touchscreen_11.jpg ├── ._touchscreen_12.jpg ├── ._touchscreen_13.jpg ├── ._touchscreen_14.jpg ├── ._touchscreen_19.jpg ├── ._touchscreen_20.jpg ├── ._touchscreen_21.jpg ├── ._touchscreen_26.jpg ├── ._touchscreen_27.jpg ├── ._touchscreen_28.jpg ├── ._touchscreen_33.jpg ├── ._touchscreen_34.jpg ├── ._touchscreen_35.jpg ├── ._touchscreen_36.jpg ├── ._tuamstars.jpg ├── ._wantagin.jpg ├── birthday.jpg ├── budweiser.jpg ├── carlsberg.jpg ├── disable.jpg ├── eggplants.jpg ├── fingers.jpg ├── guinness-25.jpg ├── guinness.jpg ├── heineken.jpg ├── hophouse.jpg ├── lastdrinks.jpg ├── liverpool.jpg ├── logo.jpg ├── time.jpg ├── touchscreen_01.jpg ├── touchscreen_02.jpg ├── touchscreen_04.jpg ├── touchscreen_06.jpg ├── touchscreen_08.jpg ├── touchscreen_10.jpg ├── touchscreen_11.jpg ├── touchscreen_12.jpg ├── touchscreen_13.jpg ├── touchscreen_14.jpg ├── touchscreen_19.jpg ├── touchscreen_20.jpg ├── touchscreen_21.jpg ├── touchscreen_26.jpg ├── touchscreen_27.jpg ├── touchscreen_28.jpg ├── touchscreen_33.jpg ├── touchscreen_34.jpg ├── touchscreen_35.jpg ├── touchscreen_36.jpg ├── tuamstars.jpg └── wantagin.jpg ├── img ├── appsite_hero.png ├── ic_launcher.png └── ic_launcher.psd ├── index.lighttpd.orig ├── index.php ├── js └── wow.min.js ├── listclean.txt ├── login.php ├── material.php ├── new ├── pihole ├── blockingpage.css ├── index.js └── index.php ├── send2.php ├── sender.php ├── sender.php.textonly.php ├── simple.php ├── touchscreen.php ├── tv ├── versions └── www /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/README.md -------------------------------------------------------------------------------- /animations.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/animations.psd -------------------------------------------------------------------------------- /images/._ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/._ireland.png -------------------------------------------------------------------------------- /images/birthday.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/birthday.gif -------------------------------------------------------------------------------- /images/blogo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/blogo2.gif -------------------------------------------------------------------------------- /images/blogo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/blogo3.gif -------------------------------------------------------------------------------- /images/bud.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/bud.gif -------------------------------------------------------------------------------- /images/carlsberg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/carlsberg.gif -------------------------------------------------------------------------------- /images/checkin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/checkin.gif -------------------------------------------------------------------------------- /images/eggplant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/eggplant.gif -------------------------------------------------------------------------------- /images/emoti.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/emoti.gif -------------------------------------------------------------------------------- /images/fingers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/fingers.gif -------------------------------------------------------------------------------- /images/gins.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/gins.gif -------------------------------------------------------------------------------- /images/guinness.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/guinness.gif -------------------------------------------------------------------------------- /images/guinnesspints.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/guinnesspints.gif -------------------------------------------------------------------------------- /images/heineken.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/heineken.gif -------------------------------------------------------------------------------- /images/hophouse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/hophouse.gif -------------------------------------------------------------------------------- /images/ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/ireland.png -------------------------------------------------------------------------------- /images/lastdrinks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/lastdrinks.gif -------------------------------------------------------------------------------- /images/liverpool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/liverpool.gif -------------------------------------------------------------------------------- /images/slidef.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/slidef.gif -------------------------------------------------------------------------------- /images/smiles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/smiles.gif -------------------------------------------------------------------------------- /images/sword_pong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/sword_pong.gif -------------------------------------------------------------------------------- /images/team.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/team.gif -------------------------------------------------------------------------------- /images/tuamstars.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/tuamstars.gif -------------------------------------------------------------------------------- /images/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/images/ui.png -------------------------------------------------------------------------------- /ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/ireland.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/.gitignore -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/COPYING -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/Makefile -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/README.md -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/Makefile -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/README.md -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/americancaptain.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/americancaptain.ttf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/c-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/c-example.c -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/demo-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/demo-main.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/loadpithon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/loadpithon.sh -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/minimal-example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/minimal-example.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/nohup.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/php.sh -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/pithon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/pithon.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/runtext.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/runtext.ppm -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/runtext16.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/runtext16.ppm -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/scrolltext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/scrolltext.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/scrolltext.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/scrolltext.pyc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/scrolltextbuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/scrolltextbuffer.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/test.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/test.ppm -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/text-example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/text-example.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/examples-api-use/time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/examples-api-use/time.sh -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/10x20.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/10x20.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/4x6.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/4x6.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/5x7.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/5x7.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/5x8.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/5x8.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/6x10.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/6x10.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/6x12.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/6x12.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/6x13.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/6x13.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/6x13B.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/6x13B.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/6x13O.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/6x13O.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/6x9.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/6x9.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/7x13.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/7x13.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/7x13B.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/7x13B.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/7x13O.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/7x13O.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/7x14.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/7x14.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/7x14B.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/7x14B.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/8x13.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/8x13.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/8x13B.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/8x13B.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/8x13O.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/8x13O.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/9x15.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/9x15.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/9x15B.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/9x15B.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/9x18.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/9x18.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/9x18B.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/9x18B.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/AUTHORS -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/README -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/README.md -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/clR6x12.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/clR6x12.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/helvR12.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/helvR12.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/fonts/tom-thumb.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/fonts/tom-thumb.bdf -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/Makefile -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/active3-pcb-config-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/active3-pcb-config-default.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/active3-pcb-config-pin4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/active3-pcb-config-pin4.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/active3-pcb-config-pin8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/active3-pcb-config-pin8.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/active3-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/active3-pcb.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/active3-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/active3-schematic.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/adafruit-64x64-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/adafruit-64x64-back.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/adafruit-64x64-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/adafruit-64x64-front.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/adafruit-mod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/adafruit-mod.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/chained-64x64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/chained-64x64.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/coordinates.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/coordinates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/coordinates.svg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/hub75-other.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/hub75-other.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/hub75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/hub75.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/idc-hub75-connector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/idc-hub75-connector.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/passive-rpi1-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/passive-rpi1-pcb.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/passive3-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/passive3-pcb.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/pixelpusher-vid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/pixelpusher-vid.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/powerbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/powerbar.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/raspberry-gpio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/raspberry-gpio.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/running-vid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/running-vid.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/text-ghosting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/text-ghosting.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/text-no-ghosting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/text-no-ghosting.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/three-parallel-panels-soic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/three-parallel-panels-soic.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/time-display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/time-display.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/user-action-shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/user-action-shot.jpg -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/img/wire-up-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/img/wire-up-icon.png -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/include/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/include/canvas.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/include/content-streamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/include/content-streamer.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/include/gpio.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/include/graphics.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/include/led-matrix-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/include/led-matrix-c.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/include/led-matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/include/led-matrix.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/include/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/include/thread.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/include/threaded-canvas-manipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/include/threaded-canvas-manipulator.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/include/transformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/include/transformer.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/led-matrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/led-matrix -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/.gitignore -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/Makefile -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/bdf-font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/bdf-font.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/content-streamer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/content-streamer.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/framebuffer-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/framebuffer-internal.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/framebuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/framebuffer.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/gpio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/gpio.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/graphics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/graphics.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/hardware-mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/hardware-mapping.c -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/hardware-mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/hardware-mapping.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/led-matrix-c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/led-matrix-c.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/led-matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/led-matrix.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/options-initialize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/options-initialize.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/thread.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/transformer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/transformer.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/lib/utf8-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/lib/utf8-internal.h -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/Makefile -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/README.md -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/rgbmatrix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/rgbmatrix/Makefile -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/rgbmatrix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/rgbmatrix/__init__.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/rgbmatrix/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/rgbmatrix/core.cpp -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/rgbmatrix/core.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/rgbmatrix/core.pxd -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/rgbmatrix/core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/rgbmatrix/core.pyx -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/rgbmatrix/cppinc.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/rgbmatrix/cppinc.pxd -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/rgbmatrix/graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/rgbmatrix/graphics.cpp -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/rgbmatrix/graphics.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/rgbmatrix/graphics.pxd -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/rgbmatrix/graphics.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/rgbmatrix/graphics.pyx -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/graphics.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/grayscale-block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/grayscale-block.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/image-draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/image-draw.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/image-scroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/image-scroller.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/pulsing-brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/pulsing-brightness.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/pulsing-colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/pulsing-colors.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/rotating-block-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/rotating-block-generator.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/runtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/runtext.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/samplebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/samplebase.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/samples/simple-square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/samples/simple-square.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/python/setup.py -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/utils/Makefile -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/utils/README.md -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/utils/firework.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/utils/firework.gif -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/utils/led-image-viewer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/utils/led-image-viewer.cc -------------------------------------------------------------------------------- /rpi-rgb-led-matrix/utils/video-viewer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/rpi-rgb-led-matrix/utils/video-viewer.cc -------------------------------------------------------------------------------- /scripts/OpenSansEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/OpenSansEmoji.ttf -------------------------------------------------------------------------------- /scripts/TooMuchInk.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/TooMuchInk.ttf -------------------------------------------------------------------------------- /scripts/birthday.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/birthday.sh -------------------------------------------------------------------------------- /scripts/blogo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/blogo.sh -------------------------------------------------------------------------------- /scripts/budweiser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/budweiser.sh -------------------------------------------------------------------------------- /scripts/carlsberg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/carlsberg.sh -------------------------------------------------------------------------------- /scripts/eggplant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/eggplant.sh -------------------------------------------------------------------------------- /scripts/finger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/finger.sh -------------------------------------------------------------------------------- /scripts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/font.ttf -------------------------------------------------------------------------------- /scripts/gins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/gins.sh -------------------------------------------------------------------------------- /scripts/guinness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/guinness.sh -------------------------------------------------------------------------------- /scripts/guinnesspints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/guinnesspints.sh -------------------------------------------------------------------------------- /scripts/heineken.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/heineken.sh -------------------------------------------------------------------------------- /scripts/hellovetica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/hellovetica.ttf -------------------------------------------------------------------------------- /scripts/hophouse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/hophouse.sh -------------------------------------------------------------------------------- /scripts/ireland.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/ireland.sh -------------------------------------------------------------------------------- /scripts/killit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/killit.sh -------------------------------------------------------------------------------- /scripts/lastdrinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/lastdrinks.sh -------------------------------------------------------------------------------- /scripts/liverpool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/liverpool.sh -------------------------------------------------------------------------------- /scripts/smiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/smiles.sh -------------------------------------------------------------------------------- /scripts/squaredance00.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/squaredance00.ttf -------------------------------------------------------------------------------- /scripts/sword.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/sword.sh -------------------------------------------------------------------------------- /scripts/teams.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/teams.sh -------------------------------------------------------------------------------- /scripts/tuamstars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/scripts/tuamstars.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/setup.sh -------------------------------------------------------------------------------- /videos/smile.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/videos/smile.mov -------------------------------------------------------------------------------- /wiring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/wiring.md -------------------------------------------------------------------------------- /www/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/.DS_Store -------------------------------------------------------------------------------- /www/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/._.DS_Store -------------------------------------------------------------------------------- /www/._touchscreen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/._touchscreen.php -------------------------------------------------------------------------------- /www/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-focusable/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-focusable/.bower.json -------------------------------------------------------------------------------- /www/bower_components/core-focusable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-focusable/README.md -------------------------------------------------------------------------------- /www/bower_components/core-focusable/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-focusable/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-focusable/core-focusable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-focusable/core-focusable.html -------------------------------------------------------------------------------- /www/bower_components/core-focusable/core-focusable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-focusable/core-focusable.js -------------------------------------------------------------------------------- /www/bower_components/core-focusable/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-focusable/demo.html -------------------------------------------------------------------------------- /www/bower_components/core-focusable/polymer-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-focusable/polymer-mixin.js -------------------------------------------------------------------------------- /www/bower_components/core-icon/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icon/.bower.json -------------------------------------------------------------------------------- /www/bower_components/core-icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icon/README.md -------------------------------------------------------------------------------- /www/bower_components/core-icon/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icon/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-icon/core-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icon/core-icon.css -------------------------------------------------------------------------------- /www/bower_components/core-icon/core-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icon/core-icon.html -------------------------------------------------------------------------------- /www/bower_components/core-icon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icon/demo.html -------------------------------------------------------------------------------- /www/bower_components/core-icon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icon/index.html -------------------------------------------------------------------------------- /www/bower_components/core-icon/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icon/metadata.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/.bower.json -------------------------------------------------------------------------------- /www/bower_components/core-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/README.md -------------------------------------------------------------------------------- /www/bower_components/core-icons/av-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/av-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-icons/communication-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/communication-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/core-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/core-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/demo.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/device-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/device-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/editor-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/editor-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/hardware-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/hardware-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/image-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/image-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/index.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/maps-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/maps-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/notification-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/notification-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/png-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/png-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-icons/social-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-icons/social-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-iconset-svg/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset-svg/.bower.json -------------------------------------------------------------------------------- /www/bower_components/core-iconset-svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset-svg/README.md -------------------------------------------------------------------------------- /www/bower_components/core-iconset-svg/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset-svg/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-iconset-svg/core-iconset-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset-svg/core-iconset-svg.html -------------------------------------------------------------------------------- /www/bower_components/core-iconset-svg/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset-svg/demo.html -------------------------------------------------------------------------------- /www/bower_components/core-iconset-svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset-svg/index.html -------------------------------------------------------------------------------- /www/bower_components/core-iconset-svg/svg-sample-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset-svg/svg-sample-icons.html -------------------------------------------------------------------------------- /www/bower_components/core-iconset/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset/.bower.json -------------------------------------------------------------------------------- /www/bower_components/core-iconset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset/README.md -------------------------------------------------------------------------------- /www/bower_components/core-iconset/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-iconset/core-iconset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset/core-iconset.html -------------------------------------------------------------------------------- /www/bower_components/core-iconset/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset/demo.html -------------------------------------------------------------------------------- /www/bower_components/core-iconset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset/index.html -------------------------------------------------------------------------------- /www/bower_components/core-iconset/my-icons-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset/my-icons-big.png -------------------------------------------------------------------------------- /www/bower_components/core-iconset/my-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-iconset/my-icons.png -------------------------------------------------------------------------------- /www/bower_components/core-meta/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-meta/.bower.json -------------------------------------------------------------------------------- /www/bower_components/core-meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-meta/README.md -------------------------------------------------------------------------------- /www/bower_components/core-meta/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-meta/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-meta/core-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-meta/core-meta.html -------------------------------------------------------------------------------- /www/bower_components/core-meta/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-meta/demo.html -------------------------------------------------------------------------------- /www/bower_components/core-meta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-meta/index.html -------------------------------------------------------------------------------- /www/bower_components/core-range/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-range/.bower.json -------------------------------------------------------------------------------- /www/bower_components/core-range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-range/README.md -------------------------------------------------------------------------------- /www/bower_components/core-range/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-range/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-range/core-range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-range/core-range.html -------------------------------------------------------------------------------- /www/bower_components/core-range/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-range/demo.html -------------------------------------------------------------------------------- /www/bower_components/core-range/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-range/index.html -------------------------------------------------------------------------------- /www/bower_components/core-range/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-range/test/basic.html -------------------------------------------------------------------------------- /www/bower_components/core-range/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-range/test/index.html -------------------------------------------------------------------------------- /www/bower_components/core-selection/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selection/.bower.json -------------------------------------------------------------------------------- /www/bower_components/core-selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selection/README.md -------------------------------------------------------------------------------- /www/bower_components/core-selection/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selection/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-selection/core-selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selection/core-selection.html -------------------------------------------------------------------------------- /www/bower_components/core-selection/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selection/demo.html -------------------------------------------------------------------------------- /www/bower_components/core-selection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selection/index.html -------------------------------------------------------------------------------- /www/bower_components/core-selection/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selection/test/basic.html -------------------------------------------------------------------------------- /www/bower_components/core-selection/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selection/test/index.html -------------------------------------------------------------------------------- /www/bower_components/core-selection/test/multi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selection/test/multi.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/.bower.json -------------------------------------------------------------------------------- /www/bower_components/core-selector/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /www/bower_components/core-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/README.md -------------------------------------------------------------------------------- /www/bower_components/core-selector/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/bower.json -------------------------------------------------------------------------------- /www/bower_components/core-selector/core-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/core-selector.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/demo.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/index.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/metadata.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/test/activate-event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/test/activate-event.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/test/basic.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/test/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/test/content.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/test/index.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/test/multi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/test/multi.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/test/next-previous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/test/next-previous.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/test/selected-attr-prop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/test/selected-attr-prop.html -------------------------------------------------------------------------------- /www/bower_components/core-selector/test/template-repeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/core-selector/test/template-repeat.html -------------------------------------------------------------------------------- /www/bower_components/font-roboto/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/font-roboto/.bower.json -------------------------------------------------------------------------------- /www/bower_components/font-roboto/README.md: -------------------------------------------------------------------------------- 1 | # font-roboto 2 | -------------------------------------------------------------------------------- /www/bower_components/font-roboto/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/font-roboto/bower.json -------------------------------------------------------------------------------- /www/bower_components/font-roboto/roboto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/font-roboto/roboto.html -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-a11y-keys-behavior/.bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-a11y-keys-behavior/README.md -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-a11y-keys-behavior/bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-a11y-keys-behavior/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/demo/x-key-aware.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-a11y-keys-behavior/demo/x-key-aware.html -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-a11y-keys-behavior/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/test/basic-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-a11y-keys-behavior/test/basic-test.html -------------------------------------------------------------------------------- /www/bower_components/iron-a11y-keys-behavior/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-a11y-keys-behavior/test/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/.bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/README.md -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/demo/simple-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/demo/simple-button.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/iron-button-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/iron-button-state.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/iron-control-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/iron-control-state.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/test/active-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/test/active-state.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/test/disabled-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/test/disabled-state.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/test/focused-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/test/focused-state.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/test/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-behaviors/test/test-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-behaviors/test/test-elements.html -------------------------------------------------------------------------------- /www/bower_components/iron-flex-layout/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-flex-layout/.bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-flex-layout/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | 3 | -------------------------------------------------------------------------------- /www/bower_components/iron-flex-layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-flex-layout/README.md -------------------------------------------------------------------------------- /www/bower_components/iron-flex-layout/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-flex-layout/bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-flex-layout/classes/iron-flex-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-flex-layout/classes/iron-flex-layout.html -------------------------------------------------------------------------------- /www/bower_components/iron-flex-layout/classes/iron-shadow-flex-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-flex-layout/classes/iron-shadow-flex-layout.html -------------------------------------------------------------------------------- /www/bower_components/iron-flex-layout/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-flex-layout/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-flex-layout/demo/x-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-flex-layout/demo/x-app.html -------------------------------------------------------------------------------- /www/bower_components/iron-flex-layout/iron-flex-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-flex-layout/iron-flex-layout.html -------------------------------------------------------------------------------- /www/bower_components/iron-icon/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/.bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-icon/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /www/bower_components/iron-icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/README.md -------------------------------------------------------------------------------- /www/bower_components/iron-icon/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-icon/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-icon/demo/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/demo/location.png -------------------------------------------------------------------------------- /www/bower_components/iron-icon/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/hero.svg -------------------------------------------------------------------------------- /www/bower_components/iron-icon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-icon/iron-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/iron-icon.html -------------------------------------------------------------------------------- /www/bower_components/iron-icon/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/test/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-icon/test/iron-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icon/test/iron-icon.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/.bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-icons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/.gitignore -------------------------------------------------------------------------------- /www/bower_components/iron-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/README.md -------------------------------------------------------------------------------- /www/bower_components/iron-icons/av-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/av-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-icons/communication-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/communication-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/device-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/device-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/editor-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/editor-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/hardware-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/hardware-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/hero.svg -------------------------------------------------------------------------------- /www/bower_components/iron-icons/image-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/image-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/iron-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/iron-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/maps-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/maps-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/notification-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/notification-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-icons/social-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-icons/social-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-iconset-svg/.bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-iconset-svg/README.md -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-iconset-svg/bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-iconset-svg/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/demo/svg-sample-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-iconset-svg/demo/svg-sample-icons.html -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-iconset-svg/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/iron-iconset-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-iconset-svg/iron-iconset-svg.html -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-iconset-svg/test/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-iconset-svg/test/iron-iconset-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-iconset-svg/test/iron-iconset-svg.html -------------------------------------------------------------------------------- /www/bower_components/iron-meta/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/.bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-meta/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /www/bower_components/iron-meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/README.md -------------------------------------------------------------------------------- /www/bower_components/iron-meta/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/bower.json -------------------------------------------------------------------------------- /www/bower_components/iron-meta/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-meta/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/hero.svg -------------------------------------------------------------------------------- /www/bower_components/iron-meta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-meta/iron-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/iron-meta.html -------------------------------------------------------------------------------- /www/bower_components/iron-meta/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/test/basic.html -------------------------------------------------------------------------------- /www/bower_components/iron-meta/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/test/index.html -------------------------------------------------------------------------------- /www/bower_components/iron-meta/test/iron-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/iron-meta/test/iron-meta.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/.bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/README.md -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/demo/paper-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/demo/paper-button.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/demo/paper-radio-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/demo/paper-radio-button.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/paper-button-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/paper-button-behavior.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/paper-inky-focus-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/paper-inky-focus-behavior.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/test/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/test/paper-button-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/test/paper-button-behavior.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/test/paper-radio-button-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/test/paper-radio-button-behavior.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/test/test-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/test/test-button.html -------------------------------------------------------------------------------- /www/bower_components/paper-behaviors/test/test-radio-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-behaviors/test/test-radio-button.html -------------------------------------------------------------------------------- /www/bower_components/paper-button/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/.bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/README.md -------------------------------------------------------------------------------- /www/bower_components/paper-button/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-button/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/demo.html -------------------------------------------------------------------------------- /www/bower_components/paper-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-button/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/metadata.html -------------------------------------------------------------------------------- /www/bower_components/paper-button/paper-button-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/paper-button-base.html -------------------------------------------------------------------------------- /www/bower_components/paper-button/paper-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/paper-button.html -------------------------------------------------------------------------------- /www/bower_components/paper-button/test/a11y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/test/a11y.html -------------------------------------------------------------------------------- /www/bower_components/paper-button/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/test/basic.html -------------------------------------------------------------------------------- /www/bower_components/paper-button/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-button/test/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-fab/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/.bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-fab/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /www/bower_components/paper-fab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/README.md -------------------------------------------------------------------------------- /www/bower_components/paper-fab/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-fab/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/demo.html -------------------------------------------------------------------------------- /www/bower_components/paper-fab/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-fab/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-fab/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/metadata.html -------------------------------------------------------------------------------- /www/bower_components/paper-fab/paper-fab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/paper-fab.html -------------------------------------------------------------------------------- /www/bower_components/paper-fab/test/a11y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/test/a11y.html -------------------------------------------------------------------------------- /www/bower_components/paper-fab/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/test/basic.html -------------------------------------------------------------------------------- /www/bower_components/paper-fab/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-fab/test/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-material/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-material/.bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-material/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /www/bower_components/paper-material/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-material/README.md -------------------------------------------------------------------------------- /www/bower_components/paper-material/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-material/bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-material/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-material/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-material/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-material/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-material/paper-material.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-material/paper-material.html -------------------------------------------------------------------------------- /www/bower_components/paper-material/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-material/test/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-material/test/paper-material.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-material/test/paper-material.html -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/.bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/README.md -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/demo.html -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/hero.svg -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/metadata.html -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/paper-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/paper-ripple.html -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/test/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/test/paper-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/test/paper-ripple.html -------------------------------------------------------------------------------- /www/bower_components/paper-ripple/test/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-ripple/test/position.html -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/.bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/README.md -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/demo.html -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/metadata.html -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/paper-shadow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/paper-shadow.css -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/paper-shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/paper-shadow.html -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/test/basic.html -------------------------------------------------------------------------------- /www/bower_components/paper-shadow/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-shadow/test/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/.bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/README.md -------------------------------------------------------------------------------- /www/bower_components/paper-styles/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/bower.json -------------------------------------------------------------------------------- /www/bower_components/paper-styles/classes/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/classes/global.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/classes/shadow-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/classes/shadow-layout.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/classes/shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/classes/shadow.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/classes/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/classes/typography.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/color.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/default-theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/default-theme.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/demo-pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/demo-pages.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/demo.css -------------------------------------------------------------------------------- /www/bower_components/paper-styles/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/demo/index.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/paper-styles-classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/paper-styles-classes.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/paper-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/paper-styles.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/shadow.html -------------------------------------------------------------------------------- /www/bower_components/paper-styles/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/paper-styles/typography.html -------------------------------------------------------------------------------- /www/bower_components/polymer/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/.bower.json -------------------------------------------------------------------------------- /www/bower_components/polymer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/LICENSE.txt -------------------------------------------------------------------------------- /www/bower_components/polymer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/README.md -------------------------------------------------------------------------------- /www/bower_components/polymer/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/bower.json -------------------------------------------------------------------------------- /www/bower_components/polymer/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/build.log -------------------------------------------------------------------------------- /www/bower_components/polymer/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/layout.html -------------------------------------------------------------------------------- /www/bower_components/polymer/polymer-micro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/polymer-micro.html -------------------------------------------------------------------------------- /www/bower_components/polymer/polymer-mini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/polymer-mini.html -------------------------------------------------------------------------------- /www/bower_components/polymer/polymer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/polymer.html -------------------------------------------------------------------------------- /www/bower_components/polymer/polymer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/polymer.js -------------------------------------------------------------------------------- /www/bower_components/polymer/polymer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/polymer/polymer.min.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/.bower.json -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/CustomElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/CustomElements.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/CustomElements.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/CustomElements.min.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/HTMLImports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/HTMLImports.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/HTMLImports.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/HTMLImports.min.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/MutationObserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/MutationObserver.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/MutationObserver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/MutationObserver.min.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/README.md -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/ShadowDOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/ShadowDOM.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/ShadowDOM.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/ShadowDOM.min.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/bower.json -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/build.log -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/package.json -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/webcomponents-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/webcomponents-lite.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/webcomponents-lite.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/webcomponents-lite.min.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/webcomponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/webcomponents.js -------------------------------------------------------------------------------- /www/bower_components/webcomponentsjs/webcomponents.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/bower_components/webcomponentsjs/webcomponents.min.js -------------------------------------------------------------------------------- /www/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/css/animate.css -------------------------------------------------------------------------------- /www/css/tidy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/css/tidy.css -------------------------------------------------------------------------------- /www/external21273443_765615140278201_6173888556167615854_o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/external21273443_765615140278201_6173888556167615854_o.jpg -------------------------------------------------------------------------------- /www/images/._birthday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._birthday.jpg -------------------------------------------------------------------------------- /www/images/._budweiser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._budweiser.jpg -------------------------------------------------------------------------------- /www/images/._carlsberg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._carlsberg.jpg -------------------------------------------------------------------------------- /www/images/._disable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._disable.jpg -------------------------------------------------------------------------------- /www/images/._eggplants.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._eggplants.jpg -------------------------------------------------------------------------------- /www/images/._fingers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._fingers.jpg -------------------------------------------------------------------------------- /www/images/._guinness-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._guinness-25.jpg -------------------------------------------------------------------------------- /www/images/._guinness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._guinness.jpg -------------------------------------------------------------------------------- /www/images/._heineken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._heineken.jpg -------------------------------------------------------------------------------- /www/images/._hophouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._hophouse.jpg -------------------------------------------------------------------------------- /www/images/._lastdrinks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._lastdrinks.jpg -------------------------------------------------------------------------------- /www/images/._liverpool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._liverpool.jpg -------------------------------------------------------------------------------- /www/images/._logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._logo.jpg -------------------------------------------------------------------------------- /www/images/._time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._time.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_01.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_02.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_04.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_06.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_08.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_10.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_11.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_12.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_13.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_14.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_19.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_20.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_21.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_26.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_27.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_28.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_33.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_34.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_35.jpg -------------------------------------------------------------------------------- /www/images/._touchscreen_36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._touchscreen_36.jpg -------------------------------------------------------------------------------- /www/images/._tuamstars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._tuamstars.jpg -------------------------------------------------------------------------------- /www/images/._wantagin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/._wantagin.jpg -------------------------------------------------------------------------------- /www/images/birthday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/birthday.jpg -------------------------------------------------------------------------------- /www/images/budweiser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/budweiser.jpg -------------------------------------------------------------------------------- /www/images/carlsberg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/carlsberg.jpg -------------------------------------------------------------------------------- /www/images/disable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/disable.jpg -------------------------------------------------------------------------------- /www/images/eggplants.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/eggplants.jpg -------------------------------------------------------------------------------- /www/images/fingers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/fingers.jpg -------------------------------------------------------------------------------- /www/images/guinness-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/guinness-25.jpg -------------------------------------------------------------------------------- /www/images/guinness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/guinness.jpg -------------------------------------------------------------------------------- /www/images/heineken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/heineken.jpg -------------------------------------------------------------------------------- /www/images/hophouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/hophouse.jpg -------------------------------------------------------------------------------- /www/images/lastdrinks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/lastdrinks.jpg -------------------------------------------------------------------------------- /www/images/liverpool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/liverpool.jpg -------------------------------------------------------------------------------- /www/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/logo.jpg -------------------------------------------------------------------------------- /www/images/time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/time.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_01.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_02.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_04.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_06.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_08.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_10.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_11.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_12.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_13.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_14.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_19.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_20.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_21.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_26.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_27.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_28.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_33.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_34.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_35.jpg -------------------------------------------------------------------------------- /www/images/touchscreen_36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/touchscreen_36.jpg -------------------------------------------------------------------------------- /www/images/tuamstars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/tuamstars.jpg -------------------------------------------------------------------------------- /www/images/wantagin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/images/wantagin.jpg -------------------------------------------------------------------------------- /www/img/appsite_hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/img/appsite_hero.png -------------------------------------------------------------------------------- /www/img/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/img/ic_launcher.png -------------------------------------------------------------------------------- /www/img/ic_launcher.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/img/ic_launcher.psd -------------------------------------------------------------------------------- /www/index.lighttpd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/index.lighttpd.orig -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/index.php -------------------------------------------------------------------------------- /www/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/js/wow.min.js -------------------------------------------------------------------------------- /www/listclean.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/login.php -------------------------------------------------------------------------------- /www/material.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/material.php -------------------------------------------------------------------------------- /www/new: -------------------------------------------------------------------------------- 1 | /home/pi/hospitalitek-led/www/ -------------------------------------------------------------------------------- /www/pihole/blockingpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/pihole/blockingpage.css -------------------------------------------------------------------------------- /www/pihole/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/pihole/index.js -------------------------------------------------------------------------------- /www/pihole/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/pihole/index.php -------------------------------------------------------------------------------- /www/send2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/send2.php -------------------------------------------------------------------------------- /www/sender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/sender.php -------------------------------------------------------------------------------- /www/sender.php.textonly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/sender.php.textonly.php -------------------------------------------------------------------------------- /www/simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/simple.php -------------------------------------------------------------------------------- /www/touchscreen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/touchscreen.php -------------------------------------------------------------------------------- /www/tv: -------------------------------------------------------------------------------- 1 | /home/pi/hospitalitek-led/www/tv -------------------------------------------------------------------------------- /www/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xadacka/led-matrix-controller/HEAD/www/versions -------------------------------------------------------------------------------- /www/www: -------------------------------------------------------------------------------- 1 | /home/pi/hospitalitek-led/www/ --------------------------------------------------------------------------------