Hi everyone!
We have recently developed the ability to run MicroPython "bare metal" in a web browser. This is acomplished using unicorn.js, which is an Emscripted version of unicorn, which is a stripped-down version of QEMU. We have used unicorn.js to implement a Cortex-M3 based "virtual microcontroller" that runs in the browser. And then this virtual microcontroller runs a port of MicroPython, the unicorn port.
Running this unicorn port of MicroPython will give you a good idea of what it's like running MicroPython on the bare metal of real hardware, and allows you to test stuff out quickly, and get to know (new) features of MicroPython.
Find a running version at: https://micropython.org/unicorn/
Find the source code at: https://github.com/micropython/micropython-unicorn
At the moment the port is pretty minimal and doesn't have many features enabled. Plans for the future include different builds of unicorn MicroPython to show-case size vs features, as well as modules such as "machine".
Enjoy!
Damien // George Robotics.
MicroPython running "bare metal" in the browser via unicorn.js
Re: MicroPython running "bare metal" in the browser via unicorn.js
Just saw that the link has been updated with examples to select/test virtual LEDs, Servos and ADC in the browser.
Awesome.
Awesome.
- pythoncoder
- Posts: 3216
- Joined: Fri Jul 18, 2014 8:01 am
- Location: UK
- Contact:
Re: MicroPython running "bare metal" in the browser via unicorn.js
As far as I'm concerned Clarke's third law applies to this. Amazing 

Peter Hinch
-
- Posts: 377
- Joined: Wed Apr 08, 2015 5:19 am
Re: MicroPython running "bare metal" in the browser via unicorn.js
This is really helpful for demonstrating / teaching MicroPython! Well done.
Re: MicroPython running "bare metal" in the browser via unicorn.js
Shame it also became a victim of the ever-changing APIs.
For instance, the "Pin LED" demo errors with: TypeError: 'PIN' object is not callable
For instance, the "Pin LED" demo errors with: TypeError: 'PIN' object is not callable
Re: MicroPython running "bare metal" in the browser via unicorn.js
Thanks for pointing this out. Unicorn is still very much a work-in-progress. The ability to call pin objects was actually implemented recently (see https://github.com/micropython/micropyt ... e2ba40055d), and this commit is now deployed on the website.deshipu wrote:For instance, the "Pin LED" demo errors with: TypeError: 'PIN' object is not callable
Re: MicroPython running "bare metal" in the browser via unicorn.js
I just came by to look at micropython again after a long time away, and it is pretty great to see some of the progress. The ability to run demo code online is extremely cool. Unfortunately, the servo demos seem not to be working at the moment. No errors, just nothing actually moves. When I put in some messages to print between each servo command, they all seemed to run at the same time, so maybe that is a clue.