Jump to content
C4 Forums | Control4

rakeshcea

c4Forums Member
  • Posts

    9
  • Joined

  • Last visited

Recent Profile Visitors

79 profile views

rakeshcea's Achievements

  1. With experience buttons and relay will I able to achieve like in first pic?
  2. I am developing a driver for assa abloy access control system. Have 17 doors to be opened from control 4. So like to have the option to list 17 doors with lock/unlock icon as well as a button to refresh cookies and token. Currently this is done in Crestron and Control4 send commands to Crestron. I like to move everything to c4.
  3. What is the easiest way to acquire horizonal or vertical tab buttons with some text and icon? When I use experience button it consumes too much space.
  4. Using the same driver developed for Honeywell Flex series. Open zone number is missing for 2 panels. What could be the reason?
  5. I forget to add remaining time property. Now working SetPartitionState (1,"EXIT_DELAY","AWAY",30,30,false)
  6. SetPartitionState (1,"EXIT_DELAY","AWAY",30) UI shows Exit Delay and the countdown wont start. If refresh shows 1 and stuck there. Am I missing something?
  7. I am very new to control4. Can someone share a code snippet to do add zone to partition window. Basically when I enter number of zones as a property value, it should be added to the partition table and displayed on Zones tab. From there i can select type, control etc. TIA
  8. What will be the equivalent code in lua to calculate checksum written in C tempString = rx$; checksum = 255; for (i = 1 to len(tempString)) { checksum = checksum ^ byte(tempString, i); } tx$ = tempString + chr(checksum); clearbuffer (rx$); I tried to changed in lua and build with notepad++. Its working in notepad++ but not in Composer pro. I believe ~ is no longer supported for xor operation. function check() local tempString = "ECSA1*1" local checksum = 255 local tx for i = 1 , string.len(tempString) do checksum = checksum ~ string.byte(tempString, i) end tx=string.format("Checksum = %s%x",tempString,checksum) end
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.