mirror of
https://github.com/KevinMidboe/python-gpiozero.git
synced 2025-10-29 17:50:37 +00:00
Ensure PWMOutputDevice pin argument not mandatory, close #43
This commit is contained in:
@@ -156,7 +156,7 @@ class PWMOutputDevice(DigitalOutputDevice):
|
|||||||
"""
|
"""
|
||||||
Generic Output device configured for PWM (Pulse-Width Modulation).
|
Generic Output device configured for PWM (Pulse-Width Modulation).
|
||||||
"""
|
"""
|
||||||
def __init__(self, pin):
|
def __init__(self, pin=None):
|
||||||
super(PWMOutputDevice, self).__init__(pin)
|
super(PWMOutputDevice, self).__init__(pin)
|
||||||
self._frequency = 100
|
self._frequency = 100
|
||||||
self._pwm = GPIO.PWM(self._pin, self._frequency)
|
self._pwm = GPIO.PWM(self._pin, self._frequency)
|
||||||
|
|||||||
Reference in New Issue
Block a user