Adafruit_Learning_System_Gu.../seesaw/seesaw_blink.py
Dan Halbert bf250bb237 pylint
2018-06-25 11:06:24 -04:00

17 lines
411 B
Python

import time
import board
import busio
from adafruit_seesaw.seesaw import Seesaw
myI2C = busio.I2C(board.SCL, board.SDA)
ss = Seesaw(myI2C)
ss.pin_mode(15, ss.OUTPUT)
while True:
ss.digital_write(15, True) # turn the LED on (True is the voltage level)
time.sleep(1) # wait for a second
ss.digital_write(15, False) # turn the LED off by making the voltage LOW
time.sleep(1)