Add tests for pigpio

This commit is contained in:
Oleg Kalachev
2021-11-22 17:45:39 +03:00
parent 9dc4407afc
commit a72bf9cbad
2 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#!/usr/bin/env python3
import pigpio
pi = pigpio.pi()
pi.set_mode(24, pigpio.OUTPUT)
pi.write(24, True)