diff options
Diffstat (limited to 'klippy/extras/adxl345.py')
-rw-r--r-- | klippy/extras/adxl345.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/klippy/extras/adxl345.py b/klippy/extras/adxl345.py index 7870bd4a..4d64ad14 100644 --- a/klippy/extras/adxl345.py +++ b/klippy/extras/adxl345.py @@ -3,8 +3,13 @@ # Copyright (C) 2020-2023 Kevin O'Connor <kevin@koconnor.net> # # This file may be distributed under the terms of the GNU GPLv3 license. -import logging, time, collections, multiprocessing, os -from . import bus, bulk_sensor +import collections +import logging +import multiprocessing +import os +import time + +from . import bulk_sensor, bus # ADXL345 registers REG_DEVID = 0x00 |