Indicator of MagicFile running

Summary

Add an indicator if a MagicFile is running in the background.

Why is it needed?

If the robot has a lot of time running(years) it can take a log time to run the magicfiles to copy the information to the USB.

When Im backing up information of some of the 60 cobots we have in our plant, sometimes it is anoying not knowing if the magic file has finished its execution. Sometimes it can cause a waste of time if I remove it earlier and see the green “USB >” splash and I have to put it and wait a log time again.

It would be a small detail to make it more user friendly.

3 Likes

I agree this would be a nice feature. You can sorta do this on the .sh side if you adjust the script

but this is not a great fix since it will not stay displayed on the teach pendant.

I find it a lot easier to FTP into the robot to get the log files when the robot has had a lot of running time.

2 Likes

Agreed this would be a very helpful feature, especially when taking large backups, and you have to watch the teach pendant for a really long time!

2 Likes

Hi,
if you just want to know if the Magicfile is finished, just add a popup at the end. This popup will stay on the screen until you clic on “OK”

Blockquote
#Ending Popup via Dashboard
echo “$(/usr/bin/python -c ’
import socket;
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);
s.connect((“127.0.0.1”,29999));
s.send(“popup Recuperation des fichiers terminee !”);
s.close();
')”

Blockquote

Notify user it is ok to remove USB key

echo “<- USB” | DISPLAY=:0 aosd_cat -x 200 -y -210 -n “Arial Black 80”

3 Likes

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.