├── .gitignore ├── 3dxmas.sh ├── README.md ├── WebInterface ├── README.md ├── dj.php ├── index.html ├── pi.php ├── shutdown.php └── sp.php ├── diagnostics.py └── examples ├── Xmas Tree multi_random_function-VF3.py ├── cascade-dj.py ├── fade.py ├── kjetil.py ├── led-finder.py ├── ledtester.py ├── morsecode.py ├── spinning-simple.py └── thepihut.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /3dxmas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/3dxmas.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/README.md -------------------------------------------------------------------------------- /WebInterface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/WebInterface/README.md -------------------------------------------------------------------------------- /WebInterface/dj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/WebInterface/dj.php -------------------------------------------------------------------------------- /WebInterface/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/WebInterface/index.html -------------------------------------------------------------------------------- /WebInterface/pi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/WebInterface/pi.php -------------------------------------------------------------------------------- /WebInterface/shutdown.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WebInterface/sp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/WebInterface/sp.php -------------------------------------------------------------------------------- /diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/diagnostics.py -------------------------------------------------------------------------------- /examples/Xmas Tree multi_random_function-VF3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/examples/Xmas Tree multi_random_function-VF3.py -------------------------------------------------------------------------------- /examples/cascade-dj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/examples/cascade-dj.py -------------------------------------------------------------------------------- /examples/fade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/examples/fade.py -------------------------------------------------------------------------------- /examples/kjetil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/examples/kjetil.py -------------------------------------------------------------------------------- /examples/led-finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/examples/led-finder.py -------------------------------------------------------------------------------- /examples/ledtester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/examples/ledtester.py -------------------------------------------------------------------------------- /examples/morsecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/examples/morsecode.py -------------------------------------------------------------------------------- /examples/spinning-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/examples/spinning-simple.py -------------------------------------------------------------------------------- /examples/thepihut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/thepihut3dxmastree-examples/HEAD/examples/thepihut.py --------------------------------------------------------------------------------