Commit ceaa2362 authored by Marek Vrbka's avatar Marek Vrbka
Browse files

Update lcd.py

parent e9cf8666
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ class LCDSpyDevice:
        while len(data) >= 2:
            high_tx, low_tx, *data = data
            high_rs, high_rw, high_nibble = self.extract(high_tx)
            print(f"RS: {high_rs} | RW: {low_rw} | Data: {high_nibble}")
            print(f"RS: {high_rs} | RW: {high_rw} | Data: {high_nibble}")
            low_rs, low_rw, low_nibble = self.extract(low_tx)
            message_data = high_nibble << 4 | low_nibble
            if high_rs != low_rs or high_rw != low_rw: