Home AMX User Forum Scripting Languages

Does the muse controller have the ability to host a webpage?

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

Comments

  • clangerakclangerak Posts: 11

    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 like sys.path.append("<your folder>").

    I use "site-packages":

    import sys
    sys.path.insert(0, "site-packages")
    
Sign In or Register to comment.