From fa45326052ed3e51c93a674d82f3847b429f9ea8 Mon Sep 17 00:00:00 2001 From: d3m1g0d Date: Wed, 20 Feb 2019 18:46:39 +0100 Subject: [PATCH] hotfix --- utils/smbus-test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/smbus-test.py b/utils/smbus-test.py index bb33aa8..a91f13d 100644 --- a/utils/smbus-test.py +++ b/utils/smbus-test.py @@ -1,4 +1,4 @@ -import smbus +import smbus2 -bus = smbus.SMBus(1) +bus = smbus2.SMBus(1) print(bus.read_word_data(0x10, 0x07))