Used more local variables

This commit is contained in:
Ollo 2021-02-10 19:45:28 +01:00
parent 7941501cc5
commit 40447dd521
2 changed files with 4 additions and 5 deletions

View File

@ -84,7 +84,7 @@ function normalOperation()
end
print("Fg Color: " .. tostring(string.byte(color,1)) .. "x" .. tostring(string.byte(color,2)) .. "x" .. tostring(string.byte(color,3)) )
connect_counter=0
local connect_counter=0
-- Wait to be connect to the WiFi access point.
local wifitimer = tmr.create()
wifitimer:register(5000, tmr.ALARM_SINGLE, function (t)

View File

@ -1,8 +1,8 @@
-- Global variable
m=nil
mqttConnected = false
local m=nil
local mqttConnected = false
-- Temp:
t=nil
local t=nil
function handleSingleCommand(client, topic, data)
if (data == "ON") then
@ -157,7 +157,6 @@ function startMqttClient()
local temp = nil
if (t ~= nil) then
temp=readTemp()
print(tostring(temp) .. "°C")
end
if (oldBrightness ~= briPercent) then
m:publish(mqttPrefix .. "/brightness", tostring(briPercent), 0, 0)