aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-03-17 21:07:31 -0400
committerKevin O'Connor <kevin@koconnor.net>2019-03-17 21:07:31 -0400
commit53290664ee685c06c28a8e36aa06ace6a656ed93 (patch)
tree56bf6299f7ad56010bb23bec8702e2ffed1f09d5 /klippy
parent4a35f927fc1d7b8c3b34f32c1c889fb433752dcc (diff)
downloadkutter-53290664ee685c06c28a8e36aa06ace6a656ed93.tar.gz
kutter-53290664ee685c06c28a8e36aa06ace6a656ed93.tar.xz
kutter-53290664ee685c06c28a8e36aa06ace6a656ed93.zip
pins: Document support for '~' to enable pull-down resistors
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r--klippy/pins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/pins.py b/klippy/pins.py
index 683285f7..f764b414 100644
--- a/klippy/pins.py
+++ b/klippy/pins.py
@@ -183,7 +183,7 @@ class PrinterPins:
if [c for c in '^~!: ' if c in pin]:
format = ""
if can_pullup:
- format += "[^] "
+ format += "[^~] "
if can_invert:
format += "[!] "
raise error("Invalid pin description '%s'\n"