Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #import the library
- from pyA20.gpio import gpio
- from pyA20.gpio import port
- from time import sleep
- #initialize the gpio module
- gpio.init()
- #устанавливаем порт (same as raspberry pi's gpio.setup() function)
- gpio.setcfg(port.PA7, gpio.OUTPUT)
- #теперь мы что-то делаем (включаем свет на светодеоде)
- gpio.output(port.PA7, gpio.HIGH)
- #выключаем свет после 2 секунд
- sleep(2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement