mappVision - Triggered image on mappView HMI query

Hi Ravi,
in our case, we are using a counter with the Image Widget, to get the actual capture, for example:

// Refresh Image widget
tempStr := UINT_TO_STRING(counter);
Imagepath := ‘http://xxx.xxx.xxx.x:8080/jpg?Q=30?t=’;
Imagepath := CONCAT(Imagepath,tempStr);

At the end of the programm:
counter := counter + 1;

I hope, it helps you!

1 Like