├── .gitignore ├── LICENSE-gpl-2.0.txt ├── LICENSE.md ├── README.md ├── dm ├── __init__.py ├── actions.py ├── areas.py ├── depdata.py ├── drawstuff.py └── lines.py ├── dm_tomatrixled.py ├── ppmtools ├── image_to_ansi.py ├── ppm-enlarger.py ├── ppmtest.py └── ppmtest.sh ├── requirements.txt ├── res ├── bdf │ ├── 4x6.bdf │ ├── 5x7-mod.bdf │ ├── tom-thumb.bdf │ ├── uwe_prop.bdf │ └── uwe_prop_mod.bdf ├── hstcolors.json └── ppm │ ├── dbkeks.ppm │ ├── icon-ad.ppm │ ├── icon-delay.ppm │ ├── icon-earlyterm.ppm │ ├── icon-fhswf.ppm │ ├── icon-ic6.ppm │ ├── icon-ic7.ppm │ ├── icon-ice6.ppm │ ├── icon-ice7.ppm │ ├── icon-info.ppm │ ├── icon-ne-thin6.ppm │ ├── icon-ne-thin7.ppm │ ├── icon-ne6.ppm │ ├── icon-ne7.ppm │ ├── icon-no-deps.ppm │ ├── icon-no-rt.ppm │ ├── icon-smile.ppm │ ├── icon-stop.ppm │ ├── icon-warn.ppm │ ├── matrix11x11sun.ppm │ ├── matrix13x13vrr-engebuchstaben-2.ppm │ ├── red-ausfall-long.ppm │ ├── red-ausfall.ppm │ ├── sonne.ppm │ ├── white-bus6.ppm │ ├── white-bus7.ppm │ ├── white-hanging6.ppm │ ├── white-hanging7.ppm │ ├── white-hispeed6.ppm │ ├── white-hispeed7.ppm │ ├── white-min.ppm │ ├── white-sofort-high.ppm │ ├── white-sofort.ppm │ ├── white-train6.ppm │ ├── white-train7.ppm │ ├── white-tram6.ppm │ ├── white-tram7.ppm │ ├── wolke mit regen.ppm │ ├── wolke mit sonne.ppm │ └── wolke.ppm └── service ├── matrix.service ├── run.env.example └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/LICENSE-gpl-2.0.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/README.md -------------------------------------------------------------------------------- /dm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/dm/__init__.py -------------------------------------------------------------------------------- /dm/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/dm/actions.py -------------------------------------------------------------------------------- /dm/areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/dm/areas.py -------------------------------------------------------------------------------- /dm/depdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/dm/depdata.py -------------------------------------------------------------------------------- /dm/drawstuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/dm/drawstuff.py -------------------------------------------------------------------------------- /dm/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/dm/lines.py -------------------------------------------------------------------------------- /dm_tomatrixled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/dm_tomatrixled.py -------------------------------------------------------------------------------- /ppmtools/image_to_ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/ppmtools/image_to_ansi.py -------------------------------------------------------------------------------- /ppmtools/ppm-enlarger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/ppmtools/ppm-enlarger.py -------------------------------------------------------------------------------- /ppmtools/ppmtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/ppmtools/ppmtest.py -------------------------------------------------------------------------------- /ppmtools/ppmtest.sh: -------------------------------------------------------------------------------- 1 | cat /tmp/out.ppm | sed 's/\x0/ /g' | hexdump -s 14 -v -e '384/1 "%_p" "\n"' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/bdf/4x6.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/bdf/4x6.bdf -------------------------------------------------------------------------------- /res/bdf/5x7-mod.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/bdf/5x7-mod.bdf -------------------------------------------------------------------------------- /res/bdf/tom-thumb.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/bdf/tom-thumb.bdf -------------------------------------------------------------------------------- /res/bdf/uwe_prop.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/bdf/uwe_prop.bdf -------------------------------------------------------------------------------- /res/bdf/uwe_prop_mod.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/bdf/uwe_prop_mod.bdf -------------------------------------------------------------------------------- /res/hstcolors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/hstcolors.json -------------------------------------------------------------------------------- /res/ppm/dbkeks.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/dbkeks.ppm -------------------------------------------------------------------------------- /res/ppm/icon-ad.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-ad.ppm -------------------------------------------------------------------------------- /res/ppm/icon-delay.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-delay.ppm -------------------------------------------------------------------------------- /res/ppm/icon-earlyterm.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-earlyterm.ppm -------------------------------------------------------------------------------- /res/ppm/icon-fhswf.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-fhswf.ppm -------------------------------------------------------------------------------- /res/ppm/icon-ic6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-ic6.ppm -------------------------------------------------------------------------------- /res/ppm/icon-ic7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-ic7.ppm -------------------------------------------------------------------------------- /res/ppm/icon-ice6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-ice6.ppm -------------------------------------------------------------------------------- /res/ppm/icon-ice7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-ice7.ppm -------------------------------------------------------------------------------- /res/ppm/icon-info.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-info.ppm -------------------------------------------------------------------------------- /res/ppm/icon-ne-thin6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-ne-thin6.ppm -------------------------------------------------------------------------------- /res/ppm/icon-ne-thin7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-ne-thin7.ppm -------------------------------------------------------------------------------- /res/ppm/icon-ne6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-ne6.ppm -------------------------------------------------------------------------------- /res/ppm/icon-ne7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-ne7.ppm -------------------------------------------------------------------------------- /res/ppm/icon-no-deps.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-no-deps.ppm -------------------------------------------------------------------------------- /res/ppm/icon-no-rt.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-no-rt.ppm -------------------------------------------------------------------------------- /res/ppm/icon-smile.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-smile.ppm -------------------------------------------------------------------------------- /res/ppm/icon-stop.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-stop.ppm -------------------------------------------------------------------------------- /res/ppm/icon-warn.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/icon-warn.ppm -------------------------------------------------------------------------------- /res/ppm/matrix11x11sun.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/matrix11x11sun.ppm -------------------------------------------------------------------------------- /res/ppm/matrix13x13vrr-engebuchstaben-2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/matrix13x13vrr-engebuchstaben-2.ppm -------------------------------------------------------------------------------- /res/ppm/red-ausfall-long.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/red-ausfall-long.ppm -------------------------------------------------------------------------------- /res/ppm/red-ausfall.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/red-ausfall.ppm -------------------------------------------------------------------------------- /res/ppm/sonne.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/sonne.ppm -------------------------------------------------------------------------------- /res/ppm/white-bus6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-bus6.ppm -------------------------------------------------------------------------------- /res/ppm/white-bus7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-bus7.ppm -------------------------------------------------------------------------------- /res/ppm/white-hanging6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-hanging6.ppm -------------------------------------------------------------------------------- /res/ppm/white-hanging7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-hanging7.ppm -------------------------------------------------------------------------------- /res/ppm/white-hispeed6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-hispeed6.ppm -------------------------------------------------------------------------------- /res/ppm/white-hispeed7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-hispeed7.ppm -------------------------------------------------------------------------------- /res/ppm/white-min.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-min.ppm -------------------------------------------------------------------------------- /res/ppm/white-sofort-high.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-sofort-high.ppm -------------------------------------------------------------------------------- /res/ppm/white-sofort.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-sofort.ppm -------------------------------------------------------------------------------- /res/ppm/white-train6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-train6.ppm -------------------------------------------------------------------------------- /res/ppm/white-train7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-train7.ppm -------------------------------------------------------------------------------- /res/ppm/white-tram6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-tram6.ppm -------------------------------------------------------------------------------- /res/ppm/white-tram7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/white-tram7.ppm -------------------------------------------------------------------------------- /res/ppm/wolke mit regen.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/wolke mit regen.ppm -------------------------------------------------------------------------------- /res/ppm/wolke mit sonne.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/wolke mit sonne.ppm -------------------------------------------------------------------------------- /res/ppm/wolke.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/res/ppm/wolke.ppm -------------------------------------------------------------------------------- /service/matrix.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/service/matrix.service -------------------------------------------------------------------------------- /service/run.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/service/run.env.example -------------------------------------------------------------------------------- /service/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3d9/dm_tomatrixled/HEAD/service/run.sh --------------------------------------------------------------------------------