21 lines
512 B
Python
21 lines
512 B
Python
# SPDX-FileCopyrightText: 2018 Dan Halbert for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
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)
|