Arduino Stack Exchange is a question and answer site for developers of open-source hardware and software that is compatible with Arduino. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

If Arduino IDE itself is built on Java can I run JVM on the Arduino? If yes how should I do it?

share|improve this question
    
An Arduino is the wrong choice for this task. – Chris Stratton Apr 28 at 7:18
    
Ah, why do you want to do this? – Nick Gammon Apr 28 at 10:49
    
Which limited memory hardware I can use here? I want to use in robotics and want to run machine on java. – Shatayu Darbhe Apr 28 at 11:18
up vote 1 down vote accepted

Search for "embedded java". Oracle supports it for ARM cores, which is what some of the arduino-like boards such as the Teensy 3.X have, but I doubt they have enough resources to support it.

There is haiku-vm (google it!) that's designed with AVR processors in mind, but I don't know how actively it is being worked on.

Googling "embedded java avr" yields a tremendous amount of results; did you even try that?

share|improve this answer
    
Thank you very much for suggestions. I've tried searching vms. They support limited java libraries though. I want to know some other options if any.Also I don't know what hardware resources are required to support jvm.I went through nano vm too.Your suggestions helped me. – Shatayu Darbhe Apr 28 at 4:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.