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.

Mosaic Widget
#1
Hi,

is it possible to do scene selector with feedback of highlighted button in mosaic visualisation? Something like attached image?

Attached Files Thumbnail(s)
   
Reply
#2
Right now there is no direct way to do it, widget objects have only a bit status. Our scenes can be triggered from a bit object but how do you know if a scene is still active? You could monitor all status objects and update it via a script.
------------------------------
Ctrl+F5
Reply
#3
(09.01.2023, 13:43)Daniel Wrote: Right now there is no direct way to do it, widget objects have only a bit status. Our scenes can be triggered from a bit object but how do you know if a scene is still active? You could monitor all status objects and update it via a script.

I´m using scene to select which adress is send to the bus on event and the feedback in visu would be fine.

select=grp.getvalue("32/1/3")
if (select == 0)
  then
elseif (select == 1)
  then
  grp.write("1/0/1", event.getvalue())
elseif (select == 2)
  then
  grp.write("1/0/2", event.getvalue())
elseif (select == 3)
  then
  grp.write("1/0/1", event.getvalue())
  grp.write("1/0/2", event.getvalue())
end
Reply
#4
You can make 3 bit objects and on press of one to true you trigger your first scene and write false to other two. Do the same with all three. 3 event scripts and you done.
------------------------------
Ctrl+F5
Reply


Forum Jump: