Cloudmanager web management interface
Posted: Tue Dec 06, 2016 9:03 am
Now that I have cloudmanager's mbm_sync service able to use pycharm's deploy functionality to push code to my esp8266 boards on save. I have been wanting a command UI that has more power than a REPL, more like iPython/Jupyter notebook.
So I've started working on a web interface for cloudmanager and it is already useful, although certainly not complete or all that easy to set up.
So far I have implemented:
A basic index page that allows for selecting from the registered boards to operate on

A code editor and the ability to execute code on the board
This works pretty much like jupyter/ipython with a few limitations:
Package installation via a shortcut command (magic) "!install"


So I've started working on a web interface for cloudmanager and it is already useful, although certainly not complete or all that easy to set up.
So far I have implemented:
A basic index page that allows for selecting from the registered boards to operate on

A code editor and the ability to execute code on the board
This works pretty much like jupyter/ipython with a few limitations:
- It currently only supports a single cell
- The output code doesn't currently async update (the client that runs on the board supports, the UI doesn't yet)
- There is no way to interrupt a running script.

Package installation via a shortcut command (magic) "!install"

