Send momentarily value from WinCC to Step7

PeterJ

Member
Join Date
Feb 2014
Location
DK
Posts
1
Hi

Is there a way to send a ex. '1' from a WinCC button to the PLC just momentarily for an edge detection?

I need it for an alarm reset logic, that do not start the machine up again after reset of the fault.

Thank you in advance :)
 
You could just send set the value 1 to an integer and then in the PLC reset it as you like, thus making it momentary.
 
The standard way I've seen to do momentary push buttons on an HMI is to set a bit when the button is pushed, and then reset it when the button is released. The value is true while the operator presses the button, and is changed to false when it is no longer pressed. If you need to send an integer instead of a bit, same concept applies: Press change value to 1, release change value to 0.

If you need it to be truly momentary edge detection, true for only one cycle, then rQx's solution seems like the best solution. Have the HMI send a value, and then let the PLC do it's edge detection and reset the value from the code.
 

Similar Topics

So I had an odd request from a customer for the above. I have written the logic and tested it all in one PLC with only using 7 outputs and 7...
Replies
15
Views
437
can the slc500 5/05 send a email and text over Ethernet ?
Replies
3
Views
190
Hello Friends I have took the sample program from AB webpage and modified, but I can only send 127 chars...
Replies
1
Views
189
I have followed the videos & still having issues getting the email out. Does anyone have knowledge or has sent an email notification via gp pro ex?
Replies
0
Views
196
Hi there! I have a question to a (maybe) simple issue that I hope some of you can help me with. I''ve made an FC containing the TCON, TDISCON...
Replies
13
Views
3,201
Back
Top Bottom