Sha256: 478d007d8e13f265dd4295a8a397440d61f96c729d16622757c8a758568c7461

Contents?: true

Size: 1.39 KB

Versions: 23

Compression:

Stored size: 1.39 KB

Contents

class HelloPaLcd < ArduinoSketch


# demonstrate 4 x 20 pa_lcd toggle between normal and Bignum mode
# with @toggle external variable thrown in for fun

# change your pins to suit your setup
  
  @toggle = false
  
  input_pin 6,  :as => :button_one, :device => :button
  input_pin 7,  :as => :button_two, :device => :button
  input_pin 8, :as => :button_three, :device => :button
  
  output_pin 5, :as => :my_lcd, :device => :pa_lcd, :rate => 19200, :clear_screen => :true

  def setup
    delay 3000
    my_lcd.setxy 0,0
    my_lcd.print "Press button"
    my_lcd.setxy 0,1
    my_lcd.print "One, two or three...."
  end
  
  def loop  
    say_hello     if button_one.read_input 
    say_more      if button_two.read_input 
    say_it_large  if button_three.read_input 
  end
  
  def say_hello
    @toggle = true
    my_lcd.clearscr "Any sufficiently    advanced technology"
    my_lcd.setxy 0,2
    my_lcd.setxy 0,3, "toggle state: "
    my_lcd.print @toggle
  end
  
  def say_more # passing print strings to home and setxy (also works on clearscr)
    @toggle = false
    my_lcd.clearscr "is indistinguishablefrom magic"
    my_lcd.setxy 0,3, "toggle state: "
    my_lcd.print @toggle
  end
  
  
  def say_it_large

    my_lcd.intoBignum
    my_lcd.clearscr            # line 0, col 0
    1.upto(32) do |i|
      my_lcd.setxy 0,1
      my_lcd.print i * i
      delay 200
    end
    my_lcd.outofBignum
  end
 
end

Version data entries

23 entries across 23 versions & 4 rubygems

Version Path
neo_rad-0.4.0 lib/examples/hello_pa_lcd.rb
atduskgreg-rad-0.2.5 lib/examples/hello_pa_lcd.rb
atduskgreg-rad-0.3.0.1 lib/examples/hello_pa_lcd.rb
atduskgreg-rad-0.3.1 lib/examples/hello_pa_lcd.rb
madrona-rad-0.2.6 lib/examples/hello_pa_lcd.rb
madrona-rad-0.2.7 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.1.1 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.1 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.2 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.3 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.4 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.5 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.6 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.7 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.8 lib/examples/hello_pa_lcd.rb
madrona-rad-0.3.9 lib/examples/hello_pa_lcd.rb
madrona-rad-0.4.0 lib/examples/hello_pa_lcd.rb
madrona-rad-0.5.0 lib/examples/hello_pa_lcd.rb
madrona-rad-0.4.3 lib/examples/hello_pa_lcd.rb
madrona-rad-0.4.2 lib/examples/hello_pa_lcd.rb