From eae0e52cddea319ff9469009f54cfefd93a3a982 Mon Sep 17 00:00:00 2001 From: Kacper Date: Sat, 26 Feb 2022 23:48:47 +0000 Subject: [PATCH] Update lis3dh.py --- lis3dh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lis3dh.py b/lis3dh.py index c98f0e5..8a3b9be 100644 --- a/lis3dh.py +++ b/lis3dh.py @@ -74,7 +74,7 @@ class lis3dh: status = smbus2.i2c_msg.read(self.addr, 1) self.i2c.i2c_rdwr(check_status, status) while (int.from_bytes(status.buf[0],"big") & 0b1111) != 0b1111: - print(status.buf[0], "\n") + #print(status.buf[0], "\n") sleep(0.01) self.i2c.i2c_rdwr(check_status, status) if (int.from_bytes(status.buf[0],"big") & 0b1111) == 0b1111: