Adafruit_Learning_System_Gu.../CircuitPython_Quick_Starts/pwm_test_script.py
2018-03-14 17:44:20 -04:00

13 lines
543 B
Python

import board
import pulseio
for pin_name in dir(board):
pin = getattr(board, pin_name)
try:
p = pulseio.PWMOut(pin)
p.deinit()
print("PWM on:", pin_name) # Prints the valid, PWM-capable pins!
except ValueError: # This is the error that comes up when the pin is invalid.
print("No PWM on:", pin_name) # Prints the invalid pins.
except RuntimeError: # This is the error the comes up when there is a timer conflict.
print("Timers in use:", pin_name) # Prints the timer conflict pins.