From 70f0a7447f63221398ed0440f8dee2d1b16c3b50 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 5 Mar 2016 00:47:24 +0800 Subject: [PATCH] coredevice/PCA9548: fix I2C address --- artiq/coredevice/i2c.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/coredevice/i2c.py b/artiq/coredevice/i2c.py index fb620e684..c48b89672 100644 --- a/artiq/coredevice/i2c.py +++ b/artiq/coredevice/i2c.py @@ -29,7 +29,7 @@ def i2c_read(busno: TInt32, ack: TBool) -> TInt32: class PCA9548: - def __init__(self, dmgr, busno=0, address=0x74): + def __init__(self, dmgr, busno=0, address=0xe8): self.core = dmgr.get("core") self.busno = busno self.address = address