We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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