How to run Erlang based robot? Is it possible to convert it into .hex and run over microcontroller?

You might want to have a look to this project:

http://erlang-embedded.com/

They presented it today at the Erlang Factory Conference in London.

Also, you might want to contact someone from the DMI (formerly DIIT) from Catania, Italy. They spent many years working on Erlang powered robots:

http://eurobot.dmi.unict.it/?p=16

Hope this helps.


To the best of my knowledge:

  1. there isn't any port of Erlang VM over micro-controllers (assuming it would even make sense)

  2. there isn't any way to turn Erlang BEAM code to .hex format: BEAM VM code needs a virtual machine to operate in.

If you want something lightweight with task/threading capability for micro-controllers, why not consider TinyOS ?