Fix LwDecode.be colors
- Add hot-reload to all vendor drivers
This commit is contained in:
parent
5493323272
commit
51af5be778
@ -309,7 +309,6 @@ class lwdecode_cls
|
||||
end
|
||||
|
||||
def header(name, name_tooltip, battery, battery_last_seen, rssi, last_seen)
|
||||
var color_text = format('%s', tasmota.webcolor(0))
|
||||
var msg = format("<tr class='ltd htr'><td><b title='%s'>%s</b></td>", name_tooltip, name)
|
||||
|
||||
if battery < 1000
|
||||
@ -319,15 +318,15 @@ class lwdecode_cls
|
||||
if batt_percent < 0 batt_percent = 0 end
|
||||
if batt_percent > 98 batt_percent = 98 end # 98% / 14px = 7
|
||||
batt_percent /= 7 # 1..14px showing battery load
|
||||
msg += format("<td><i class=\"bt\" title=\"%.3fV (%s)\" style=\"--bl:%dpx;color:%s\"></i></td>",
|
||||
battery, self.dhm(battery_last_seen), batt_percent, color_text)
|
||||
msg += format("<td><i class=\"bt\" title=\"%.3fV (%s)\" style=\"--bl:%dpx;color:var(--c_txt)\"></i></td>",
|
||||
battery, self.dhm(battery_last_seen), batt_percent)
|
||||
elif battery >= 100000 && battery <= 100100 # battery already expressed in %
|
||||
var pbatt = battery - 100000
|
||||
var batt_percent = pbatt
|
||||
if batt_percent > 98 batt_percent = 98 end # 98% / 14px = 7
|
||||
batt_percent /= 7 # 1..14px showing battery load
|
||||
msg += format("<td><i class=\"bt\" title=\"%d%% (%s)\" style=\"--bl:%dpx;color:%s\"></i></td>",
|
||||
pbatt, self.dhm(battery_last_seen), batt_percent, color_text)
|
||||
msg += format("<td><i class=\"bt\" title=\"%d%% (%s)\" style=\"--bl:%dpx;color:var(--c_txt)\"></i></td>",
|
||||
pbatt, self.dhm(battery_last_seen), batt_percent)
|
||||
else
|
||||
msg += "<td> </td>"
|
||||
end
|
||||
@ -344,7 +343,7 @@ class lwdecode_cls
|
||||
msg += "<td> </td>"
|
||||
end
|
||||
|
||||
msg += format("<td style='color:%s'>🕗%s</td></tr>", color_text, self.dhm(last_seen))
|
||||
msg += format("<td style='color:var(--c_txt)'>🕗%s</td></tr>", self.dhm(last_seen))
|
||||
|
||||
return msg
|
||||
end #sensor()
|
||||
@ -367,7 +366,6 @@ class lwdecode_cls
|
||||
end
|
||||
|
||||
if msg
|
||||
var color_text = format('%s', tasmota.webcolor(0 #-COL_TEXT-#)) # '#eaeaea'
|
||||
var full_msg = format("</table>" # Terminate current two column table and open new table
|
||||
"<style>"
|
||||
# Table CSS
|
||||
@ -377,11 +375,11 @@ class lwdecode_cls
|
||||
".htr{line-height:20px}"
|
||||
# Signal Strength Indicator
|
||||
".si{display:inline-flex;align-items:flex-end;height:15px;padding:0}"
|
||||
".si i{width:3px;margin-right:1px;border-radius:3px;background-color:%s}" # WebColor(COL_TEXT)
|
||||
".si i{width:3px;margin-right:1px;border-radius:3px;background-color:var(--c_txt)}" # WebColor(COL_TEXT)
|
||||
".si .b0{height:25%%}.si .b1{height:50%%}.si .b2{height:75%%}.si .b3{height:100%%}.o30{opacity:.3}"
|
||||
"</style>"
|
||||
"{t}%s</table>{t}",
|
||||
color_text, msg)
|
||||
msg)
|
||||
|
||||
self.web_msg_cache = full_msg
|
||||
self.cache_timeout = current_time + 5000
|
||||
|
||||
@ -6,7 +6,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.DrgD20Nodes = {}
|
||||
if !global.DrgD20Nodes # data survive to decoder reload
|
||||
global.DrgD20Nodes = {}
|
||||
end
|
||||
|
||||
class LwDecoDrgD20
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -6,7 +6,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.dds75lbNodes = {}
|
||||
if !global.dds75lbNodes # data survive to decoder reload
|
||||
global.dds75lbNodes = {}
|
||||
end
|
||||
|
||||
class LwDecoDDS75LB
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -6,7 +6,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.lds02Nodes = {}
|
||||
if !global.lds02Nodes # data survive to decoder reload
|
||||
global.lds02Nodes = {}
|
||||
end
|
||||
|
||||
class LwDecoLDS02
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -6,7 +6,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.lht52Nodes = {}
|
||||
if !global.lht52Nodes # data survive to decoder reload
|
||||
global.lht52Nodes = {}
|
||||
end
|
||||
|
||||
class LwDecoLHT52
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -6,7 +6,10 @@
|
||||
|
||||
import string
|
||||
var LHT65_BatteryStatus = ["Very low <= 2.5V","Low <=2.55V","OK","Good >= 2.65V"]
|
||||
global.lht65Nodes = {}
|
||||
|
||||
if !global.lht65Nodes # data survive to decoder reload
|
||||
global.lht65Nodes = {}
|
||||
end
|
||||
|
||||
class LwDecoLHT65
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -7,7 +7,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.psli5Nodes = {}
|
||||
if !global.psli5Nodes # data survive to decoder reload
|
||||
global.psli5Nodes = {}
|
||||
end
|
||||
|
||||
class LwDecoPSLI5
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -8,7 +8,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.se01LNodes = {}
|
||||
if !global.se01LNodes # data survive to decoder reload
|
||||
global.se01LNodes = {}
|
||||
end
|
||||
|
||||
class LwDecoSE01L
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -6,7 +6,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.DrgSN50v3LNodes = {}
|
||||
if !global.DrgSN50v3LNodes # data survive to decoder reload
|
||||
global.DrgSN50v3LNodes = {}
|
||||
end
|
||||
|
||||
class LwDecoDrgSN50v3L
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -6,7 +6,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.dw10Nodes = {}
|
||||
if !global.dw10Nodes # data survive to decoder reload
|
||||
global.dw10Nodes = {}
|
||||
end
|
||||
|
||||
class LwDecoDW10
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -6,7 +6,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.ws202Nodes = {}
|
||||
if !global.ws202Nodes # data survive to decoder reload
|
||||
global.ws202Nodes = {}
|
||||
end
|
||||
|
||||
class LwDecoWS202
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -6,7 +6,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.ws301Nodes = {}
|
||||
if !global.ws301Nodes # data survive to decoder reload
|
||||
global.ws301Nodes = {}
|
||||
end
|
||||
|
||||
class LwDecoWS301
|
||||
static def decodeUplink(Name, Node, RSSI, FPort, Bytes)
|
||||
|
||||
@ -6,7 +6,9 @@
|
||||
|
||||
import string
|
||||
|
||||
global.ws522Nodes = {}
|
||||
if !global.ws522Nodes # data survive to decoder reload
|
||||
global.ws522Nodes = {}
|
||||
end
|
||||
|
||||
def uint16le(value)
|
||||
return string.format( "%02x%02x",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user