Sunday, August 19, 2007

RAD Ruby for Microcontroller

Just found an AWESOME project Ruby RAD! I always dreamed of writing all my embedded programs for a microcontroller in ruby instead of C. There is so much highlevel languages can do in the embedded space I just never had time or the skill to implement it.

Demo Video of Ruby for Microcontrollers

class MySketch < ArduinoSketch
output_pin 7, :as => :led
def loop
blink led, 500
end
end

code stolen from an Informative RAD blog post

No comments: