1 # Example of blinking LED on BeagleBone Black
 
   2 # https://www.adafruit.com/product/1876
 
   4 # Wire the circuit as follows:
 
   5 # 1) connect anode (+) lead of LED to P9.12 pin
 
   6 # 2) connect cathode (-) lead to 1K Ohm resistor
 
   7 # 3) connect that 1K Ohm resistor to DGND (P9.1)
 
  13 print("hello blinky!")
 
  15 led = digitalio.DigitalInOut(board.P9_12)
 
  16 led.direction = digitalio.Direction.OUTPUT