Minecraft – Redstone NOR gate with one of two inputs adjacent to output

minecraft-java-editionminecraft-redstone

I have a design issue with creating a NOR gate. I have a sticky piston facing upwards and a block immediately to the side and one unit above it with a stone pressure plate on top of it. About 6 or 7 blocks away, I have another iron pressure plate.

I want both the pressure plates to be inputs to a NOR gate whose output is routed to the sticky piston. If one of the plates is pressed, the sticky piston should retract.

The problem I'm currently having is that when the stone pressure plate is pushed, the redstone current immediately resulting from that is being routed to the sticky piston, keeping it extended. Any suggestions would be much appreciated.

Best Answer

You can, if the dust is placed under the block on a line doesn't touch the piston, it won't activate it and let you put around a NOR gate.

A simple solution would look like this :

side view :

1:  I    I
2:  BBBBBB
3: P

depth 3, top view :

 |
P|    | (<- both inputs start on this line)
Tv    |
B------

P : piston
T : torch attached to a block
B : block
I : input 
v : repeater facing downwards
| - : redstone dust

The problem with this : the piston is still influenced by the first input, by Update QC activation. You should place you input 2 blocks away to remove that influence.