This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Resending timer script
#8
(25.01.2021, 17:04)admin Wrote: Try changing "delta - timeout" calculation in line 3 to "timeout - delta"

Code:
--Set temperature
Tc = '11/0/5' -- 09.001 Temperature (2Bytes)

--Reference Temperature
TRef = '11/0/20' -- 09.001 Temperature (2Bytes)

--Output object that enables resident script
addr = '11/0/32' --01. 1 bit (boolean)

--Countdown in days
RstDays = '11/0/31' --1 Bytes unsigned integer

--Countdown in hours
RstHours = '11/0/30' --1 Bytes unsigned integer

----------------------------------------------------------------------

obj = grp.find(addr)

if obj and obj.data then
delta = os.time() - obj.updatetime
timeout = (grp.getvalue(RstDays) * 24 + grp.getvalue(RstHours)) * 60 * 60
remaining = math.max(0, timeout - delta)

days = math.floor(remaining / 86400)
hours = math.floor((remaining % 86400) / 3600)
minutes = math.floor((remaining % 3600) / 60)

txtremaining = days .. 'd ' .. hours .. 'h ' .. minutes .. 'm '
grp.checkupdate('11/0/33', txtremaining)

-- switch off when timer expires
if remaining == 0 then
  grp.write(addr, false)
  grp.write(Tc, grp.getvalue(TRef))
end
end


Ok thanks, that's how it works. I want to get the counter reset to 0 when 'Tc' == 'TRef'. What can I add to the script?

This script runs every 1 second to be immediate, but the timer status sends it every second, I changed it to check.uptade to correct that. My question is if it is better like this or run it every 60 seconds ....?

To take advantage of this script to other functions, can I add seconds? I have tried but without positive result.  Sad
Reply


Messages In This Thread
Resending timer script - by Tokatubs - 06.04.2020, 20:37
RE: Resending timer script - by Tokatubs - 06.04.2020, 23:33
RE: Resending timer script - by davidchispas - 25.01.2021, 08:54
RE: Resending timer script - by admin - 25.01.2021, 09:08
RE: Resending timer script - by davidchispas - 25.01.2021, 17:01
RE: Resending timer script - by admin - 25.01.2021, 17:04
RE: Resending timer script - by davidchispas - 26.01.2021, 10:54
RE: Resending timer script - by davidchispas - 27.01.2021, 08:47
RE: Resending timer script - by admin - 27.01.2021, 08:50
RE: Resending timer script - by davidchispas - 27.01.2021, 08:53

Forum Jump: