Hello I have hydraulic controls I am implementing and was hoping to setup some kind of control locking mechanism
For example if a perspective user turns on the hydraulic motor, they are the only ones who can control the hydraulics, on every other perspective session that is not that user the controls for the hydraulics will be disabled
I am doing this because the hydraulics should only be controlled by one person at a time and interference may cause damage and unexpected input (Yes if I can get this working there will be an emergency shut off that any session can use to cut the hydraulics off and release control)
There are 2 ways I have thought about going to solve this problem:
- Use a while loop to check if the controls are in use and flag a property on the session that is controlling the hydraulics (Would rather avoid this route)
- Sending a message from a tag change script attached to the hydraulic motor which will trigger a message handler in session events which will send a message to the control components
I have tried 2, I'm not sure if there is an issue with my setup because nothing seems to be happening when I update the tag
Tag Change Script:
def valueChanged(tag, tagPath, previousValue, currentValue, initialChange, missedEvents):
system.util.sendMessage('plant-fredonia', 'hydraulics')
Session Events message handler named hydraulics:
def handleMessage(session, payload):
system.perspective.sendMessage('hydraulic', {})
Component message handler named hydraulic:
def onMessageReceived(self, payload):
# implement your handler here
system.perspective.print("Hello World")
When the tag value changes:
- I check the browser console I see nothing
- the gateway scripts start up logger is displaying this error: Gateway script MessageHandlerException, project 'plant-fredonia', message handler 'hydraulics': com.inductiveautomation.ignition.common.script.message.MessageHandlerException: The message handler "hydraulics" could not be found! Check your event script message handlers.
Any help or advice would be appreciated!