diff --git a/src/escpos/printer.py b/src/escpos/printer.py index 319d773..54eb74a 100644 --- a/src/escpos/printer.py +++ b/src/escpos/printer.py @@ -236,6 +236,11 @@ class Network(Escpos): """ self.device.sendall(msg) + def _read(self): + """ Read data from the TCP socket """ + + return self.device.recv(16) + def close(self): """ Close TCP connection """ if self.device is not None: