mirror of
https://github.com/Roslund/meshtastic-map.git
synced 2026-05-09 23:05:07 +02:00
More relaxed snr limits
This commit is contained in:
@@ -2971,9 +2971,9 @@
|
||||
}
|
||||
|
||||
function getColourForSnr(snr) {
|
||||
if(snr >= 0) return "#16a34a"; // good
|
||||
if(snr > -10) return "#fff200"; // meh
|
||||
if(snr <= -10) return "#dc2626"; // bad
|
||||
if(snr >= -5) return "#16a34a"; // good
|
||||
if(snr > -15) return "#fff200"; // meh
|
||||
if(snr <= -15) return "#dc2626"; // bad
|
||||
}
|
||||
|
||||
function cleanUpNodeNeighbours() {
|
||||
|
||||
Reference in New Issue
Block a user