mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-31 23:19:32 +00:00
7 lines
105 B
Python
7 lines
105 B
Python
#!/usr/bin/env python3
|
|
|
|
import pigpio
|
|
pi = pigpio.pi()
|
|
pi.set_mode(24, pigpio.OUTPUT)
|
|
pi.write(24, True)
|