├── .gitignore ├── 3d ├── 3dprint.md ├── HUB75 Backside.stl └── rdprint.md ├── LICENSE ├── README.md ├── bin ├── MatrixCOS_V100_080225.bin ├── MatrixCOS_V100_100225.bin ├── MatrixCOS_V100_110225.bin ├── MatrixCOS_V110_240225.bin └── MatrixCOS_V121_050425.bin ├── doc ├── Commands.md ├── Config.md ├── Effect.md ├── Mqtt.md ├── Multi.md ├── Rest.md ├── Timer.md └── Web.md ├── example ├── TimeDateClock.cmd ├── alarm.cmd ├── chart.cmd ├── counter.cmd ├── examples.md ├── fireAndExit.cmd ├── line_bounce.cmd ├── randomColor.cmd ├── randomImages.cmd ├── room.cmd ├── shellyEM.cmd ├── signToilet.cmd ├── solar.cmd ├── wash.cmd └── wifi.cmd ├── images ├── FireAndExit.gif ├── Hub75_logo.gif ├── Hub75_logo.jpg ├── Hub75_logo2.jpg ├── Hub75_logo_32x32.gif ├── Hub75_logo_64x64.gif ├── OpenOnOrg.gif ├── alarm1.gif ├── alarm2.gif ├── alarm3.gif ├── backside.gif ├── cat.gif ├── dog.gif ├── dog2.gif ├── dog3.gif ├── dog4.gif ├── dog5.gif ├── dogxmas.gif ├── easterbunny.gif ├── easteregg.gif ├── ester.gif ├── example_clock.gif ├── example_counter.gif ├── example_image.gif ├── example_line.gif ├── example_pv.gif ├── example_pv2.gif ├── firework.gif ├── frame1.gif ├── frame2.gif ├── horse.gif ├── horse2.gif ├── horse3.gif ├── horse4.gif ├── images.gif ├── japan.gif ├── japannunny.gif ├── pageEsp.gif ├── pageTime.gif ├── pageTitle.gif ├── room.gif ├── shellyEM.gif ├── shellyEM2.gif ├── toilet1.gif ├── toilet11.gif ├── toilet2.gif ├── toilet22.gif ├── toilet3.gif ├── tree2.gif ├── wash.gif ├── wash2.gif ├── wifi.bm1 └── xmasTree.gif ├── install └── Install.md ├── libs.md └── src └── Hub75 ├── Hub75.ino ├── cCmdOs.ino ├── eDisplay.ino ├── xGFXDisplay.ino └── zHub75Pages.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/.gitignore -------------------------------------------------------------------------------- /3d/3dprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/3d/3dprint.md -------------------------------------------------------------------------------- /3d/HUB75 Backside.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/3d/HUB75 Backside.stl -------------------------------------------------------------------------------- /3d/rdprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/3d/rdprint.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/README.md -------------------------------------------------------------------------------- /bin/MatrixCOS_V100_080225.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/bin/MatrixCOS_V100_080225.bin -------------------------------------------------------------------------------- /bin/MatrixCOS_V100_100225.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/bin/MatrixCOS_V100_100225.bin -------------------------------------------------------------------------------- /bin/MatrixCOS_V100_110225.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/bin/MatrixCOS_V100_110225.bin -------------------------------------------------------------------------------- /bin/MatrixCOS_V110_240225.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/bin/MatrixCOS_V110_240225.bin -------------------------------------------------------------------------------- /bin/MatrixCOS_V121_050425.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/bin/MatrixCOS_V121_050425.bin -------------------------------------------------------------------------------- /doc/Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/doc/Commands.md -------------------------------------------------------------------------------- /doc/Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/doc/Config.md -------------------------------------------------------------------------------- /doc/Effect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/doc/Effect.md -------------------------------------------------------------------------------- /doc/Mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/doc/Mqtt.md -------------------------------------------------------------------------------- /doc/Multi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/doc/Multi.md -------------------------------------------------------------------------------- /doc/Rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/doc/Rest.md -------------------------------------------------------------------------------- /doc/Timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/doc/Timer.md -------------------------------------------------------------------------------- /doc/Web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/doc/Web.md -------------------------------------------------------------------------------- /example/TimeDateClock.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/TimeDateClock.cmd -------------------------------------------------------------------------------- /example/alarm.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/alarm.cmd -------------------------------------------------------------------------------- /example/chart.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/chart.cmd -------------------------------------------------------------------------------- /example/counter.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/counter.cmd -------------------------------------------------------------------------------- /example/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/examples.md -------------------------------------------------------------------------------- /example/fireAndExit.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/fireAndExit.cmd -------------------------------------------------------------------------------- /example/line_bounce.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/line_bounce.cmd -------------------------------------------------------------------------------- /example/randomColor.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/randomColor.cmd -------------------------------------------------------------------------------- /example/randomImages.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/randomImages.cmd -------------------------------------------------------------------------------- /example/room.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/room.cmd -------------------------------------------------------------------------------- /example/shellyEM.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/shellyEM.cmd -------------------------------------------------------------------------------- /example/signToilet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/signToilet.cmd -------------------------------------------------------------------------------- /example/solar.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/solar.cmd -------------------------------------------------------------------------------- /example/wash.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/wash.cmd -------------------------------------------------------------------------------- /example/wifi.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/example/wifi.cmd -------------------------------------------------------------------------------- /images/FireAndExit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/FireAndExit.gif -------------------------------------------------------------------------------- /images/Hub75_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/Hub75_logo.gif -------------------------------------------------------------------------------- /images/Hub75_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/Hub75_logo.jpg -------------------------------------------------------------------------------- /images/Hub75_logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/Hub75_logo2.jpg -------------------------------------------------------------------------------- /images/Hub75_logo_32x32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/Hub75_logo_32x32.gif -------------------------------------------------------------------------------- /images/Hub75_logo_64x64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/Hub75_logo_64x64.gif -------------------------------------------------------------------------------- /images/OpenOnOrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/OpenOnOrg.gif -------------------------------------------------------------------------------- /images/alarm1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/alarm1.gif -------------------------------------------------------------------------------- /images/alarm2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/alarm2.gif -------------------------------------------------------------------------------- /images/alarm3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/alarm3.gif -------------------------------------------------------------------------------- /images/backside.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/backside.gif -------------------------------------------------------------------------------- /images/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/cat.gif -------------------------------------------------------------------------------- /images/dog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/dog.gif -------------------------------------------------------------------------------- /images/dog2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/dog2.gif -------------------------------------------------------------------------------- /images/dog3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/dog3.gif -------------------------------------------------------------------------------- /images/dog4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/dog4.gif -------------------------------------------------------------------------------- /images/dog5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/dog5.gif -------------------------------------------------------------------------------- /images/dogxmas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/dogxmas.gif -------------------------------------------------------------------------------- /images/easterbunny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/easterbunny.gif -------------------------------------------------------------------------------- /images/easteregg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/easteregg.gif -------------------------------------------------------------------------------- /images/ester.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/ester.gif -------------------------------------------------------------------------------- /images/example_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/example_clock.gif -------------------------------------------------------------------------------- /images/example_counter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/example_counter.gif -------------------------------------------------------------------------------- /images/example_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/example_image.gif -------------------------------------------------------------------------------- /images/example_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/example_line.gif -------------------------------------------------------------------------------- /images/example_pv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/example_pv.gif -------------------------------------------------------------------------------- /images/example_pv2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/example_pv2.gif -------------------------------------------------------------------------------- /images/firework.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/firework.gif -------------------------------------------------------------------------------- /images/frame1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/frame1.gif -------------------------------------------------------------------------------- /images/frame2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/frame2.gif -------------------------------------------------------------------------------- /images/horse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/horse.gif -------------------------------------------------------------------------------- /images/horse2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/horse2.gif -------------------------------------------------------------------------------- /images/horse3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/horse3.gif -------------------------------------------------------------------------------- /images/horse4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/horse4.gif -------------------------------------------------------------------------------- /images/images.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/images.gif -------------------------------------------------------------------------------- /images/japan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/japan.gif -------------------------------------------------------------------------------- /images/japannunny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/japannunny.gif -------------------------------------------------------------------------------- /images/pageEsp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/pageEsp.gif -------------------------------------------------------------------------------- /images/pageTime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/pageTime.gif -------------------------------------------------------------------------------- /images/pageTitle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/pageTitle.gif -------------------------------------------------------------------------------- /images/room.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/room.gif -------------------------------------------------------------------------------- /images/shellyEM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/shellyEM.gif -------------------------------------------------------------------------------- /images/shellyEM2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/shellyEM2.gif -------------------------------------------------------------------------------- /images/toilet1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/toilet1.gif -------------------------------------------------------------------------------- /images/toilet11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/toilet11.gif -------------------------------------------------------------------------------- /images/toilet2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/toilet2.gif -------------------------------------------------------------------------------- /images/toilet22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/toilet22.gif -------------------------------------------------------------------------------- /images/toilet3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/toilet3.gif -------------------------------------------------------------------------------- /images/tree2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/tree2.gif -------------------------------------------------------------------------------- /images/wash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/wash.gif -------------------------------------------------------------------------------- /images/wash2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/wash2.gif -------------------------------------------------------------------------------- /images/wifi.bm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/wifi.bm1 -------------------------------------------------------------------------------- /images/xmasTree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/images/xmasTree.gif -------------------------------------------------------------------------------- /install/Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/install/Install.md -------------------------------------------------------------------------------- /libs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/libs.md -------------------------------------------------------------------------------- /src/Hub75/Hub75.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/src/Hub75/Hub75.ino -------------------------------------------------------------------------------- /src/Hub75/cCmdOs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/src/Hub75/cCmdOs.ino -------------------------------------------------------------------------------- /src/Hub75/eDisplay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/src/Hub75/eDisplay.ino -------------------------------------------------------------------------------- /src/Hub75/xGFXDisplay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/src/Hub75/xGFXDisplay.ino -------------------------------------------------------------------------------- /src/Hub75/zHub75Pages.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklossde/MatrixCOS/HEAD/src/Hub75/zHub75Pages.ino --------------------------------------------------------------------------------