Browse Source

don't accept 0xFF as XBee Wifi strength

v_master
Sara Damiano 5 years ago
parent
commit
bcc6eeb05c
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/TinyGsmClientXBee.h

+ 2
- 0
src/TinyGsmClientXBee.h View File

@ -657,6 +657,8 @@ public:
XBEE_COMMAND_END_DECORATOR
if (beeType == XBEE3_LTEM_ATT && intRes == 105) intRes = 0; // tends to reply with "69" when signal is unknown
if (beeType == XBEE3_LTEM_ATT && intRes == 0xFF) intRes = 0; // 0xFF returned for unknown
if (beeType == XBEE_S6B_WIFI) return -93 + intRes; // the maximum sensitivity is -93dBm
else return -1*intRes; // need to convert to negative number
}


Loading…
Cancel
Save