From 358d2a6ba38c6388c373b27d7a63436368b13393 Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Fri, 25 Mar 2016 12:51:55 +0100 Subject: [PATCH] i2c: fix variable name (closes #347) --- 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 55148402a..d834117f5 100644 --- a/artiq/coredevice/i2c.py +++ b/artiq/coredevice/i2c.py @@ -109,4 +109,4 @@ class TCA6424A: A bit set to 1 means the TTL is an output. """ self._write24(0x8c, 0) # set all directions to output - self._write24(0x84, output) # set levels + self._write24(0x84, outputs) # set levels