asad110

Delta Plc Solenoid Pulse

5 posts in this topic

Hi there,

I'm working on a project on a cupcake machine. I have to throw empty wrappers so I'm using a photoelectric sensor to sense the empty cupcake and after 2.5-sec air solenoid activated with delta PLC to throw that empty wrapper.

The thing which I want to discuss here is that I want to operate my solenoid with pulse means when the empty wrapper comes to the solenoid through the conveyor then the solenoid gives a pulse of air so the upcoming filled wrapped will not disturb with this air.

how Should I program my delta plc it is a transistor base. Can I use PWM?

Best Regards,

Asad Raza

Share this post


Link to post
Share on other sites

Use a timer in your program so that once you detect and empty, you set the output on and then turn it off after some time delay.  You will need to determine how long that time is.

PWM is typically for stepper motors, not for on/off control.

Not familiar with Delta PLC, but did similar with an Omron decades ago.

Share this post


Link to post
Share on other sites
6 hours ago, Crossbow said:

Use a timer in your program so that once you detect and empty, you set the output on and then turn it off after some time delay.  You will need to determine how long that time is.

PWM is typically for stepper motors, not for on/off control.

Not familiar with Delta PLC, but did similar with an Omron decades ago.

hi Crossbow,

I hope you are doing well. I had used timer before and it is working but I want to give a pulse to my solenoid with Plc. So my upcoming filled packets will not disturb.

Share this post


Link to post
Share on other sites

@asad110 I'm not a Delta programmer, but I think @Crossbow was meaning use what starts the timer to latch the output on and use the end of the timer to unlatch the output.

Share this post


Link to post
Share on other sites

Hello,

When you the signal you want, set a memroy (M, or tag of type bit).
When you have that memroy ON :

  • Start a timer
  • Power your output

When that timer has reached the value, reset the memroy.

That timer can be very short. So, you will have on pulse.

Or, may you want more than one ?

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now