Does the muse controller have the ability to host a webpage?
MattCohen
Posts: 1
I have a program that I wanted to port from Crestron to AMX Muse. It allows monitoring of control devices via a webpage that is hosted on the controller itself.
Is it possible to upload some simple web pages to the muse controller. If so what is the path of the www root.
Thanks in Advance
Matt
0
Comments
It's not currently possible natively, but I believe it's on the roadmap.
It is however, possible to run a Python web server on a custom port. I have successfully used Tornado on a MUSE controller.
Until the next firmware release with PIP support, you have to manage the dependencies yourself, but it's super easy. Just download the aarch64 Python 3.8 wheel files from PyPi, unzip and add to your project in a folder. Then add the path to
sys.path
. Something likesys.path.append("<your folder>")
.I use "site-packages":