diff options
author | Dmitry Butyugin <dmbutyugin@google.com> | 2021-12-08 21:44:07 +0100 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2021-12-30 18:14:53 -0500 |
commit | 309b8e030f68329d04573042ffc53a2745ac088b (patch) | |
tree | 7170b01e09b2e49c331d732971bfccaecc4963d4 /scripts | |
parent | 8b6753d68f681b0ed7e76b5e05b2bc7da6d5aa1d (diff) | |
download | kutter-309b8e030f68329d04573042ffc53a2745ac088b.tar.gz kutter-309b8e030f68329d04573042ffc53a2745ac088b.tar.xz kutter-309b8e030f68329d04573042ffc53a2745ac088b.zip |
scripts: Migrated shaper calibration scripts to Python3
Also updated instructions to install python3-numpy and
python3-matplotlib Python packages.
Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/calibrate_shaper.py | 2 | ||||
-rwxr-xr-x | scripts/graph_accelerometer.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/calibrate_shaper.py b/scripts/calibrate_shaper.py index 3d4bceff..8a0fcdf0 100755 --- a/scripts/calibrate_shaper.py +++ b/scripts/calibrate_shaper.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python3 # Shaper auto-calibration script # # Copyright (C) 2020 Dmitry Butyugin <dmbutyugin@google.com> diff --git a/scripts/graph_accelerometer.py b/scripts/graph_accelerometer.py index 990bd23b..8c09e847 100755 --- a/scripts/graph_accelerometer.py +++ b/scripts/graph_accelerometer.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python3 # Generate adxl345 accelerometer graphs # # Copyright (C) 2020 Kevin O'Connor <kevin@koconnor.net> |