make code slightly clearer

This commit is contained in:
flux 2022-07-30 08:45:02 -07:00
parent 9d34a1601e
commit 01513d3e4f
No known key found for this signature in database
GPG Key ID: 9333B27816848A15
1 changed files with 9 additions and 7 deletions

View File

@ -420,14 +420,16 @@ yc.command_sbi = function(params, eeprom, L, Lv)
if status == nil then return nil, nil end
local b = params[1]:byte()
if #params[1]==1 and 65 <= b and b <= 68 then -- is a port
if status == "1" then
Lv = yc.set_portstate (params[1], true, Lv)
else
Lv = yc.set_portstate (params[1], false, Lv)
if #params[1]==1 then
local b = params[1]:byte()
if 65 <= b and b <= 68 then -- is a port
if status == "1" then
Lv = yc.set_portstate (params[1], true, Lv)
else
Lv = yc.set_portstate (params[1], false, Lv)
end
return eeprom, Lv;
end
return eeprom, Lv;
end
--is an eeprom address