gitextract_7rauuwcn/ ├── .gitignore ├── History.txt ├── License.txt ├── Manifest.txt ├── README.markdown ├── Rakefile ├── bin/ │ └── rad ├── lib/ │ ├── examples/ │ │ ├── add_hysteresis.rb │ │ ├── basic_blink.rb │ │ ├── blink_m_address_assignment.rb │ │ ├── blink_m_hello.rb │ │ ├── blink_m_multi.rb │ │ ├── blink_with_serial.rb │ │ ├── configure_pa_lcd_boot.rb │ │ ├── debounce_methods.rb │ │ ├── external_variable_fu.rb │ │ ├── external_variables.rb │ │ ├── first_sound.rb │ │ ├── frequency_generator.rb │ │ ├── hello_array.rb │ │ ├── hello_array2.rb │ │ ├── hello_array_eeprom.rb │ │ ├── hello_clock.rb │ │ ├── hello_eeprom.rb │ │ ├── hello_eeprom_lcdpa.rb │ │ ├── hello_format_print.rb │ │ ├── hello_lcd_charset.rb │ │ ├── hello_pa_lcd.rb │ │ ├── hello_servos.rb │ │ ├── hello_spectra_sound.rb │ │ ├── hello_world.rb │ │ ├── hello_xbee.rb │ │ ├── hysteresis_duel.rb │ │ ├── i2c_with_clock_chip.rb │ │ ├── midi_beat_box.rb │ │ ├── midi_scales.rb │ │ ├── motor_knob.rb │ │ ├── servo_buttons.rb │ │ ├── servo_calibrate_continuous.rb │ │ ├── servo_throttle.rb │ │ ├── software_serial.rb │ │ ├── sparkfun_lcd.rb │ │ ├── spectra_soft_pot.rb │ │ ├── times_method.rb │ │ ├── toggle.rb │ │ ├── twitter.rb │ │ └── two_wire.rb │ ├── libraries/ │ │ └── Wire/ │ │ └── utility/ │ │ ├── twi.c │ │ └── twi.h │ ├── plugins/ │ │ ├── bitwise_ops.rb │ │ ├── blink.rb │ │ ├── blink_m.rb │ │ ├── debounce.rb │ │ ├── debug_output_to_lcd.rb │ │ ├── hysteresis.rb │ │ ├── input_output_state.rb │ │ ├── lcd_padding.rb │ │ ├── mem_test.rb │ │ ├── midi.rb │ │ ├── parallax_ping.rb │ │ ├── servo_pulse.rb │ │ ├── servo_setup.rb │ │ ├── smoother.rb │ │ ├── spark_fun_serial_lcd.rb │ │ ├── spectra_symbol.rb │ │ └── twitter_connect.rb │ ├── rad/ │ │ ├── README.rdoc │ │ ├── antiquated_todo.txt │ │ ├── arduino_plugin.rb │ │ ├── arduino_sketch.rb │ │ ├── darwin_installer.rb │ │ ├── generators/ │ │ │ └── makefile/ │ │ │ ├── makefile.erb │ │ │ └── makefile.rb │ │ ├── hardware_library.rb │ │ ├── init.rb │ │ ├── linux_installer.rb │ │ ├── progressbar.rb │ │ ├── rad_processor.rb │ │ ├── rad_rewriter.rb │ │ ├── rad_type_checker.rb │ │ ├── sim/ │ │ │ └── arduino_sketch.rb │ │ ├── sketch_compiler.rb │ │ ├── tasks/ │ │ │ ├── build_and_make.rake │ │ │ └── rad.rb │ │ ├── todo.txt │ │ ├── variable_processing.rb │ │ └── version.rb │ └── rad.rb ├── rad.gemspec ├── scripts/ │ └── txt2html ├── setup.rb ├── spec/ │ ├── examples/ │ │ ├── hello_world.rb │ │ └── serial_motor.rb │ ├── models/ │ │ ├── arduino_sketch_spec.rb │ │ ├── sketch_compiler_spec.rb │ │ └── spec_helper.rb │ ├── sim/ │ │ └── hello_world_spec.rb │ └── spec.opts ├── test/ │ ├── hello_world_test/ │ │ ├── Makefile │ │ └── hello_world.cpp │ ├── test_array_processing.rb │ ├── test_plugin_loading.rb │ ├── test_translation_post_processing.rb │ └── test_variable_processing.rb └── website/ ├── examples/ │ ├── assembler_test.rb.html │ ├── gps_reader.rb.html │ ├── hello_world.rb.html │ └── serial_motor.rb.html ├── index.html ├── index.txt ├── javascripts/ │ └── rounded_corners_lite.inc.js ├── stylesheets/ │ ├── code.css │ └── screen.css └── template.rhtml