commit | 76db7e6658eed2b383b6cb315b0c47d4395955a3 | [log] [tgz] |
---|---|---|
author | Brett Reinhard <brett@reinhards.us> | Fri Dec 16 07:37:29 2016 -0800 |
committer | GitHub <noreply@github.com> | Fri Dec 16 07:37:29 2016 -0800 |
tree | 01f7a00fcaebe5fa4d4089f5b65d1fdac532cd44 | |
parent | 321ca837fd62fb2feff87cefebc2b37acf41810c [diff] |
Missing a letter in a return value Missing a letter in a return value for sofPwmWrite, changed to softPwmWrite to keep consistency
diff --git a/wiringpi-class.py b/wiringpi-class.py index 74ca602..a14df56 100644 --- a/wiringpi-class.py +++ b/wiringpi-class.py
@@ -154,7 +154,7 @@ def softPwmCreate(self,*args): return softPwmCreate(*args) def softPwmWrite(self,*args): - return sofPwmWrite(*args) + return softPwmWrite(*args) def softToneCreate(self,*args): return softToneCreate(*args)