From c91282321e669bc5f4bedd0ac12406c2f74232eb Mon Sep 17 00:00:00 2001 From: Bogdan Popescu <68062990+bopopescu@users.noreply.github.com> Date: Fri, 24 Jul 2020 15:36:12 +0300 Subject: [PATCH] Discarding the master/slave lingo --- nfc/pyBusPirateLite/pyBusPirateLite/I2Chigh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfc/pyBusPirateLite/pyBusPirateLite/I2Chigh.py b/nfc/pyBusPirateLite/pyBusPirateLite/I2Chigh.py index abb358c..b1e6d16 100644 --- a/nfc/pyBusPirateLite/pyBusPirateLite/I2Chigh.py +++ b/nfc/pyBusPirateLite/pyBusPirateLite/I2Chigh.py @@ -50,7 +50,7 @@ def set_byte(self, i2caddr, addr, value): def command(self, i2caddr, cmd): - """ Writes one byte command to slave """ + """ Writes one byte command to subordinate """ self.send_start_bit(); stat = self.bulk_trans(2, [i2caddr<<1, cmd]); self.send_stop_bit();