Thought you might want to fold this in at some point. Returns a Signal Quality from 0-5 ``` def signalStrength(self): resp = self._uart_xfer("+CSQ") if resp[-1].strip().decode() == "OK": return resp[1].strip().decode().split(":")[1] return None ```