├── .gitignore ├── .gitmodules ├── README.md ├── docs └── images │ ├── GlassUnicorn_Cube_r0.1.png │ ├── IMG_0036.jpg │ ├── IMG_0046.jpg │ ├── IMG_0050.jpg │ ├── IMG_0131.jpg │ ├── IMG_0135.jpg │ ├── IMG_0138.jpg │ └── IMG_0147.jpg ├── hardware ├── cube-controller │ ├── .skidlcfg │ ├── bom │ │ ├── cube-controller.csv │ │ └── ibom.html │ ├── cube-controller-r0.1.kicad_pcb │ ├── cube-controller-r0.1.pro │ ├── cube-controller.py │ ├── cube-controller_lib_sklib.py │ ├── fp-info-cache │ ├── fp-lib-table │ ├── plot │ │ ├── cube-controller-r0.1-Front.png │ │ └── cube-controller-r0.1_20191015_202305.zip │ ├── sym-lib-table │ └── test_design_lib_sklib.py ├── cube_r0.1 │ ├── GlassUnicorn_Cube_Unibody_r0.2.prt │ ├── GlassUnicorn_Cube_Unibody_r0.2.stl │ ├── GlassUnicorn_Cube_r0.1.f3d │ └── GlassUnicorn_Cube_r0.1.iges ├── panel_32x32_1515_P1.8_r0.1 │ ├── README.md │ ├── colDrivers.sch │ ├── fp-info-cache │ ├── fp-lib-table │ ├── ledArray.sch │ ├── ledStripe.sch │ ├── panel_32x32_1515_r0.1.kicad_pcb │ ├── panel_32x32_1515_r0.1.pro │ ├── panel_32x32_1515_r0.1.sch │ ├── panel_r0.1-cache.lib │ ├── plot │ │ ├── panel_32x32_1515_r0.1_20190907_213019.zip │ │ ├── panel_r0.1-Back.png │ │ ├── panel_r0.1-Front.png │ │ ├── panel_r0.1.jpg │ │ └── panel_r0.1_front.jpg │ ├── rowDrivers.sch │ └── sym-lib-table └── panel_r0.1 │ ├── bom │ └── ibom.html │ ├── colDrivers.sch │ ├── fp-info-cache │ ├── fp-lib-table │ ├── ledArray.sch │ ├── ledStripe.sch │ ├── panel_r0.1-cache.lib │ ├── panel_r0.1.kicad_pcb │ ├── panel_r0.1.pro │ ├── panel_r0.1.sch │ ├── plot │ ├── panel_r0.1-Back.png │ ├── panel_r0.1-Front.png │ └── panel_r0.1_20190818_211704.zip │ ├── rowDrivers.sch │ └── sym-lib-table ├── lib ├── art.kicad_mod └── artwork_32x32_1515.kicad_mod └── ref ├── Foshan-NationStar-Optoelectronics-FM-B2020RGBA-HG_C108793.pdf ├── art.png ├── art.svg ├── artwork_32x32_1515.png ├── artwork_32x32_1515.svg ├── led_32x32_array_place.py └── leds.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/GlassUnicorn_Cube_r0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/docs/images/GlassUnicorn_Cube_r0.1.png -------------------------------------------------------------------------------- /docs/images/IMG_0036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/docs/images/IMG_0036.jpg -------------------------------------------------------------------------------- /docs/images/IMG_0046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/docs/images/IMG_0046.jpg -------------------------------------------------------------------------------- /docs/images/IMG_0050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/docs/images/IMG_0050.jpg -------------------------------------------------------------------------------- /docs/images/IMG_0131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/docs/images/IMG_0131.jpg -------------------------------------------------------------------------------- /docs/images/IMG_0135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/docs/images/IMG_0135.jpg -------------------------------------------------------------------------------- /docs/images/IMG_0138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/docs/images/IMG_0138.jpg -------------------------------------------------------------------------------- /docs/images/IMG_0147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/docs/images/IMG_0147.jpg -------------------------------------------------------------------------------- /hardware/cube-controller/.skidlcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/.skidlcfg -------------------------------------------------------------------------------- /hardware/cube-controller/bom/cube-controller.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/bom/cube-controller.csv -------------------------------------------------------------------------------- /hardware/cube-controller/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/bom/ibom.html -------------------------------------------------------------------------------- /hardware/cube-controller/cube-controller-r0.1.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/cube-controller-r0.1.kicad_pcb -------------------------------------------------------------------------------- /hardware/cube-controller/cube-controller-r0.1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/cube-controller-r0.1.pro -------------------------------------------------------------------------------- /hardware/cube-controller/cube-controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/cube-controller.py -------------------------------------------------------------------------------- /hardware/cube-controller/cube-controller_lib_sklib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/cube-controller_lib_sklib.py -------------------------------------------------------------------------------- /hardware/cube-controller/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/fp-info-cache -------------------------------------------------------------------------------- /hardware/cube-controller/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/fp-lib-table -------------------------------------------------------------------------------- /hardware/cube-controller/plot/cube-controller-r0.1-Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/plot/cube-controller-r0.1-Front.png -------------------------------------------------------------------------------- /hardware/cube-controller/plot/cube-controller-r0.1_20191015_202305.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/plot/cube-controller-r0.1_20191015_202305.zip -------------------------------------------------------------------------------- /hardware/cube-controller/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/sym-lib-table -------------------------------------------------------------------------------- /hardware/cube-controller/test_design_lib_sklib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube-controller/test_design_lib_sklib.py -------------------------------------------------------------------------------- /hardware/cube_r0.1/GlassUnicorn_Cube_Unibody_r0.2.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube_r0.1/GlassUnicorn_Cube_Unibody_r0.2.prt -------------------------------------------------------------------------------- /hardware/cube_r0.1/GlassUnicorn_Cube_Unibody_r0.2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube_r0.1/GlassUnicorn_Cube_Unibody_r0.2.stl -------------------------------------------------------------------------------- /hardware/cube_r0.1/GlassUnicorn_Cube_r0.1.f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube_r0.1/GlassUnicorn_Cube_r0.1.f3d -------------------------------------------------------------------------------- /hardware/cube_r0.1/GlassUnicorn_Cube_r0.1.iges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/cube_r0.1/GlassUnicorn_Cube_r0.1.iges -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/README.md -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/colDrivers.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/colDrivers.sch -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/fp-info-cache -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/fp-lib-table -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/ledArray.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/ledArray.sch -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/ledStripe.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/ledStripe.sch -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/panel_32x32_1515_r0.1.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/panel_32x32_1515_r0.1.kicad_pcb -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/panel_32x32_1515_r0.1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/panel_32x32_1515_r0.1.pro -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/panel_32x32_1515_r0.1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/panel_32x32_1515_r0.1.sch -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/panel_r0.1-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/panel_r0.1-cache.lib -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_32x32_1515_r0.1_20190907_213019.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_32x32_1515_r0.1_20190907_213019.zip -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_r0.1-Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_r0.1-Back.png -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_r0.1-Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_r0.1-Front.png -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_r0.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_r0.1.jpg -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_r0.1_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/plot/panel_r0.1_front.jpg -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/rowDrivers.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/rowDrivers.sch -------------------------------------------------------------------------------- /hardware/panel_32x32_1515_P1.8_r0.1/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_32x32_1515_P1.8_r0.1/sym-lib-table -------------------------------------------------------------------------------- /hardware/panel_r0.1/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/bom/ibom.html -------------------------------------------------------------------------------- /hardware/panel_r0.1/colDrivers.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/colDrivers.sch -------------------------------------------------------------------------------- /hardware/panel_r0.1/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/fp-info-cache -------------------------------------------------------------------------------- /hardware/panel_r0.1/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/fp-lib-table -------------------------------------------------------------------------------- /hardware/panel_r0.1/ledArray.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/ledArray.sch -------------------------------------------------------------------------------- /hardware/panel_r0.1/ledStripe.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/ledStripe.sch -------------------------------------------------------------------------------- /hardware/panel_r0.1/panel_r0.1-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/panel_r0.1-cache.lib -------------------------------------------------------------------------------- /hardware/panel_r0.1/panel_r0.1.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/panel_r0.1.kicad_pcb -------------------------------------------------------------------------------- /hardware/panel_r0.1/panel_r0.1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/panel_r0.1.pro -------------------------------------------------------------------------------- /hardware/panel_r0.1/panel_r0.1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/panel_r0.1.sch -------------------------------------------------------------------------------- /hardware/panel_r0.1/plot/panel_r0.1-Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/plot/panel_r0.1-Back.png -------------------------------------------------------------------------------- /hardware/panel_r0.1/plot/panel_r0.1-Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/plot/panel_r0.1-Front.png -------------------------------------------------------------------------------- /hardware/panel_r0.1/plot/panel_r0.1_20190818_211704.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/plot/panel_r0.1_20190818_211704.zip -------------------------------------------------------------------------------- /hardware/panel_r0.1/rowDrivers.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/rowDrivers.sch -------------------------------------------------------------------------------- /hardware/panel_r0.1/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/hardware/panel_r0.1/sym-lib-table -------------------------------------------------------------------------------- /lib/art.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/lib/art.kicad_mod -------------------------------------------------------------------------------- /lib/artwork_32x32_1515.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/lib/artwork_32x32_1515.kicad_mod -------------------------------------------------------------------------------- /ref/Foshan-NationStar-Optoelectronics-FM-B2020RGBA-HG_C108793.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/ref/Foshan-NationStar-Optoelectronics-FM-B2020RGBA-HG_C108793.pdf -------------------------------------------------------------------------------- /ref/art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/ref/art.png -------------------------------------------------------------------------------- /ref/art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/ref/art.svg -------------------------------------------------------------------------------- /ref/artwork_32x32_1515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/ref/artwork_32x32_1515.png -------------------------------------------------------------------------------- /ref/artwork_32x32_1515.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/ref/artwork_32x32_1515.svg -------------------------------------------------------------------------------- /ref/led_32x32_array_place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/ref/led_32x32_array_place.py -------------------------------------------------------------------------------- /ref/leds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregdavill/GlassUnicorn/HEAD/ref/leds.py --------------------------------------------------------------------------------