luci-olsr: add snr for olsr neighbours and update Legend
[project/luci.git] / applications / luci-olsr / luasrc / tools / olsr.lua
index 425d09a..dfd8262 100644 (file)
@@ -26,3 +26,17 @@ function etx_color(etx)
        return color
 end
 
+function snr_color(snr)
+       local color = "#bb3333"
+       if snr == 0 then
+               color = "#bb3333"
+       elseif snr > 30 then
+               color = "#00cc00"
+       elseif snr > 20 then
+               color = "#ffcb05"
+       elseif snr > 5 then
+               color = "#ff6600"
+       end
+       return color
+end
+