diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-11-24 00:36:49 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-11-24 00:36:49 -0500 |
commit | a726c58671bf6069c0587c3be2ec7848b0d6d600 (patch) | |
tree | e8349ef7da0693cbbeca260afd06182b1c69872e /klippy/extras/mcp4451.py | |
parent | 147d8052319dce13744d5ad30fc2c4e253eaff26 (diff) | |
download | kutter-a726c58671bf6069c0587c3be2ec7848b0d6d600.tar.gz kutter-a726c58671bf6069c0587c3be2ec7848b0d6d600.tar.xz kutter-a726c58671bf6069c0587c3be2ec7848b0d6d600.zip |
mcp4451: Minor update - remove unnecessary mcu import
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/mcp4451.py')
-rw-r--r-- | klippy/extras/mcp4451.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/mcp4451.py b/klippy/extras/mcp4451.py index 2fe82494..ddf322b1 100644 --- a/klippy/extras/mcp4451.py +++ b/klippy/extras/mcp4451.py @@ -3,7 +3,7 @@ # Copyright (C) 2018 Kevin O'Connor <kevin@koconnor.net> # # This file may be distributed under the terms of the GNU GPLv3 license. -import mcu, bus +import bus WiperRegisters = [0x00, 0x01, 0x06, 0x07] |