summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-olsr/luasrc/tools
diff options
context:
space:
mode:
authorPatrick Grimm <patrick@lunatiki.de>2013-07-10 17:52:38 +0000
committerPatrick Grimm <patrick@lunatiki.de>2013-07-10 17:52:38 +0000
commit25c4b954a6037811ecafcf8189ab79b0f74d0aed (patch)
tree07a0561ba11d7f7876ca59699a8e545c800ff4de /applications/luci-olsr/luasrc/tools
parent46c61acd06b3c54f3d98fa809e4b9450bae04975 (diff)
luci-olsr: add snr for olsr neighbours and update Legend
Diffstat (limited to 'applications/luci-olsr/luasrc/tools')
-rw-r--r--applications/luci-olsr/luasrc/tools/olsr.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/applications/luci-olsr/luasrc/tools/olsr.lua b/applications/luci-olsr/luasrc/tools/olsr.lua
index 425d09a31..dfd8262f0 100644
--- a/applications/luci-olsr/luasrc/tools/olsr.lua
+++ b/applications/luci-olsr/luasrc/tools/olsr.lua
@@ -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
+