Created
February 25, 2018 16:18
-
-
Save mattintosh4/195535d32cb778b6f3d936d503b19e2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/ruby | |
| require 'pi_piper' | |
| led = PiPiper::Pin.new :pin => 21, :direction => :out | |
| loop do | |
| p "LED ON" | |
| led.on | |
| sleep 1 | |
| p "LED OFF" | |
| led.off | |
| sleep 1 | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment