Logic Machine Forum
Mosaic Widget - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: Mosaic Widget (/showthread.php?tid=4482)



Mosaic Widget - 2MAX - 09.01.2023

Hi,

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


RE: Mosaic Widget - Daniel - 09.01.2023

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.


RE: Mosaic Widget - 2MAX - 09.01.2023

(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


RE: Mosaic Widget - Daniel - 09.01.2023

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.