Hi,
is it possible to program
Arduino Duemilanove USB Microcontroller Board
with Java? if so, are there libraries available?
thank you )
Hi,
is it possible to program
Arduino Duemilanove USB Microcontroller Board
with Java? if so, are there libraries available?
thank you )
No.
I don't even know what the state of "picoJava" is anymore, but it was intended for supporting machines in the same sort of hardware class that the Arduino controllers use. But the Arduino's processor is definitely not a bytecode-driven architecture.
The Arduino tools compile C++ into the general-purpose 8-bit architecture machine language ready for the Atmel hardware used on the board. It is theoretically possible to make a new compiler that used a small subset of Java syntax and made machine language output, but to the best of my knowledge this does not exist.
I've not had reason to mess with it yet, but there is nanovm http://www.harbaum.org/till/nanovm/index.shtml
runs on an atmega8
FYI, the release notes for 1.6 indicate atmega168 compatability:
Thank you all! I've got my answer