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.

Paradox EVO192 integration
#7
(26.06.2021, 05:27)mishoboss Wrote: Hi, is there a way to control Paradox PGMs (outputs)?

I didn't find any straight solution because there is no command to control PGM output directly. PGM output is meant to control via some statements inside paradox.

But, this solution should work (haven't tested it by myself) but paradox uses this solution with RF remotes.
You can try to use utility key and create this kind of configuration (picture 1 attached). I think there is possible to create similar configuration in BabyWare also.

In LM add this code in residential script to test it out:

Code:
  utility_key1_grp_addr = 'x/x/x' -- turn PGM on group address
  utility_key2_grp_addr = 'x/x/x' -- turn PGM off group address

  utility_key1 = grp.getvalue(utility_key1_grp_addr) -- PGM on
  utility_key2 = grp.getvalue(utility_key2_grp_addr) -- PGM off
 
  if utility_key1==true or utility_key1==1 then
     port:write('UK001\r')
     grp.update(utility_key1_grp_addr, false)
     os.sleep(0.2)
  elseif utility_key2==true or utility_key2==1 then
     port:write('UK002\r')
     grp.update(utility_key2_grp_addr, false)
     os.sleep(0.2)
  end

enable log(event) in residential script to see if command is accepted.

Unfortunately there is no request/status command to see what is PGM state.

Hope this helps.

Attached Files Thumbnail(s)
   
Reply


Messages In This Thread
Paradox EVO192 integration - by edgars - 13.11.2019, 09:00
RE: Paradox EVO192 integration - by gtsamis - 25.03.2022, 02:02
RE: Paradox EVO192 integration - by mishoboss - 01.12.2020, 21:05
RE: Paradox EVO192 integration - by mishoboss - 26.06.2021, 05:27
RE: Paradox EVO192 integration - by fleeceable - 30.06.2021, 11:54
RE: Paradox EVO192 integration - by Angeles - 27.10.2021, 11:41
RE: Paradox EVO192 integration - by admin - 22.02.2022, 12:09
RE: Paradox EVO192 integration - by admin - 22.02.2022, 15:16
RE: Paradox EVO192 integration - by JMemphix - 10.10.2022, 00:10
RE: Paradox EVO192 integration - by mishoboss - 22.04.2024, 08:47
RE: Paradox EVO192 integration - by Daniel - 22.04.2024, 08:54

Forum Jump: