Skip to content

Commit 7674ad5

Browse files
P wm (#30)
* fix digital ouptut, use state dict * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * pwm * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * spelling all caps pwm --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 81d2b43 commit 7674ad5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yaqd_rpi_gpio/_gpio_pwm_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class GpioPwmOutput(HasLimits, HasPosition, IsDaemon):
1616

1717
def __init__(self, name, config, config_filepath):
1818
super().__init__(name, config, config_filepath)
19-
self._controller = gpiozero.PwmOutputDevice(
19+
self._controller = gpiozero.PWMOutputDevice(
2020
pin=config["index"], frequency=config["pwm_frequency"]
2121
)
2222
self._watchdog_fed_time = time.time()

0 commit comments

Comments
 (0)