diff options
Diffstat (limited to 'applications/luci-olsr/luasrc/tools/olsr.lua')
-rw-r--r-- | applications/luci-olsr/luasrc/tools/olsr.lua | 14 |
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 425d09a31e..dfd8262f0d 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 + |