siemens logo help

Talk Electrician Forum

Help Support Talk Electrician Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.

Andy™

©Resident Geordie™
Supporting Member
Joined
Jan 1, 2009
Messages
30,531
Reaction score
1,220
Location
S. Tyneside
@Sidewinder? (or anyone else)

short version, have a logo with 2 inputs, 1 & 2 controlling output 1 (its a bit more complicated than that, but for the part im stuck with thats all i need)

what im trying to do: when input 1 is on i need output 1 on except if input 2 is on then input 1 must not be on (basically, input 2 is a stop signal). any hints?

 
595c08f3e06d7_RelayLogicversusLadderLogic.jpg.92ce6ff75d2aa3957157a61fbb3e5701.jpg


Is it something like this you're trying to do?

Edit

Ignore this , just seen new post

 
Last edited by a moderator:
Andy,

Yes, I can help, I'm playing with Logo's at the moment too!

It should be straight forward, but, not after a gallon of lager, & 30+ minutes on the phone to GWR, don't ask.

Just so I am getting this you have:

IP1 (after processing a bit)  + Not IP2 (after a bit of processing) = OP1?

Or something else?

You might need to use flags or markers to get this to work so that you have an intermediate step.

Just remember though that a stop control must overrule everything else, and I hope its not safety related as the Logo isn't.

I am out first thing in the morning, for a few hours, and probably at home working on a 10 ip, 8 op Logo programme and an engine controller programme, so I'll have my Siemens PG out.

Steps has gone to the whole truth table version!

 
Last edited by a moderator:
it should be straight forward but i cant figure it out. its nothing safety related (most dangerous thing it does is turn on a 12-230 inverter in my van)

so far i have an AND & OR gate. output from AND is input 1, output from OR is input 2. input 2 is the stop, input 1 needs to get to the output unless input 2 is on

So you need 

0 0 0

0 1 0

1 1 0

1 0 1


yep, thats it. just cant figure out how to achieve it

 
Just connect input 1 to output 1 via a relay that is controlled by input 2.

 
Last edited by a moderator:
On/off delay with timer set to zero.

Input 1 to relay trigger, input 2 to reset. Output to output 1.

 
Last edited by a moderator:
That reminds me, I'm supposed to be doing a job with a Logo this week, need to find out what it was!`

 
even simpler...use an AND gate with an inverted input... why has it taken me 2 hours to figure that out...


Not sure that will work. What happens when the stop button is active and the input is off? Probably makes more sense with all your extra logic though.

 
even simpler...use an AND gate with an inverted input... why has it taken me 2 hours to figure that out...
Sometimes you just can't see the wood for the trees,

That's why a different set of eyes is such a good help at times like this.

You think so hard about stuff you overcomplicate what can be something simple.

A nudge in the right direction and you realise its actually somuch easier than you were making it.

I'll not even mention it was down to my logic table, 

:innocent

:coat

:slap

Not sure that will work. What happens when the stop button is active and the input is off? Probably makes more sense with all your extra logic though.
It only works when 

1 is 1

And

2 is 0

 
but it did work... i tried it before i posted


Ah yeah, I read that as inverted output. My bad. You've made me fire up the software now, I was supposed to be getting up and leaving the computer for tonight then.

 
Sometimes you just can't see the wood for the trees,

That's why a different set of eyes is such a good help at times like this.

You think so hard about stuff you overcomplicate what can be something simple.

A nudge in the right direction and you realise its actually somuch easier than you were making it.

I'll not even mention it was down to my logic table, 

:innocent

:coat
usually the way things go, missed the obvious looking for something else

 
Top