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.
1 parent 7a1ce5b commit 0598b37Copy full SHA for 0598b37
monitor.sh
@@ -281,7 +281,8 @@ connectable_present_devices () {
281
do scan_result=$(hcitool rssi "$known_addr" 2>&1); \
282
scan_result=${scan_result//[^0-9]/}; \
283
scan_result=${scan_result:-99}; \
284
- [[ "$scan_result" == "0" ]] && scan_result=99; \
+ # https://github.com/andrewjfreyer/monitor/pull/362
285
+ # [[ "$scan_result" == "0" ]] && scan_result=99; \
286
counter=$((counter+1)); \
287
avg_total=$((avg_total + scan_result )); \
288
sleep 0.5; \
0 commit comments