Desbloquear pantalla

saludos.
podría ayudarme alguien, tengo un proyecto, en el cual transcurrido 30 segundos se bloquea y quiero quitarle esta opción ya que me interesa que la pantalla este siempre activa y no se como. podrian ayudarme :woozy_face:
image

It looks like you started from one of the template projects that has a timer script to lock you out after inactivity:
https://docs.inductiveautomation.com/display/DOC81/Client+Event+Scripts#ClientEventScripts-TimerScripts
https://docs.inductiveautomation.com/display/DOC81/system.security.lockScreen

en los Guiones de eventos del cliente entendí para que sirven y en que me pueden ayudar a futuro, pero no entiendo muy claro es el problema que tengo no se como quitarle el bloqueo de pantalla

Look for any existing client event scripts in your project. There should be something like this somewhere in it:

if system.util.getInactivitySeconds() > 15 and not system.security.isScreenLocked():
   system.security.lockScreen()
elif system.util.getInactivitySeconds() > 30:
   system.security.logout()

You could also try Find & Replace (Ctrl + F): Find and Replace - Ignition User Manual 8.1 - Ignition Documentation
I would search for getInactivitySeconds, to look for calls to system.util.getInactivitySeconds - Ignition User Manual 8.1 - Ignition Documentation

FUNCIONO gracias por tu ayuda

1 Like