From 1a0457524e9c1dc47d7f4326138bb3860736d83b Mon Sep 17 00:00:00 2001 From: caternuson Date: Thu, 14 Jan 2021 11:27:32 -0800 Subject: [PATCH] change default i2c freq --- src/busio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/busio.py b/src/busio.py index 35e7c88..cc37936 100755 --- a/src/busio.py +++ b/src/busio.py @@ -27,7 +27,7 @@ class I2C(Lockable): for both MicroPython and Linux. """ - def __init__(self, scl, sda, frequency=400000): + def __init__(self, scl, sda, frequency=100000): self.init(scl, sda, frequency) def init(self, scl, sda, frequency): -- 2.49.0