In survival minecraft 1.20 Java I want to create a "counter" of some kind but I do not know how to start.
I have ten independent redstone lines as output, and a pressure plate as input. When I activate the pressure plate the first redstone line should get active. If I activate the pressure plate again, the second line should get active, and the first line should get inactive. So whenever I activate the pressure plate, the next (and only the next) redstone light should get active.
How to build such a device the simplest way possible? Or what term to look for for such a device?
There are a ton of solutions for a problem like this, but this is a pretty simple one.
Here you have 10 (or as many as you want) output lines, with 1 input line (the pressure plate). Each press of the pressure plate, no matter how long or short, will advance the output by 1. Once the item reaches the end, you can simply push the red button to dispense another item into the system.
In survival minecraft 1.20 Java I want to create a "counter" of some kind but I do not know how to start.
I have ten independent redstone lines as output, and a pressure plate as input. When I activate the pressure plate the first redstone line should get active. If I activate the pressure plate again, the second line should get active, and the first line should get inactive. So whenever I activate the pressure plate, the next (and only the next) redstone light should get active.
How to build such a device the simplest way possible? Or what term to look for for such a device?
Hello,
There are a ton of solutions for a problem like this, but this is a pretty simple one.
Here you have 10 (or as many as you want) output lines, with 1 input line (the pressure plate). Each press of the pressure plate, no matter how long or short, will advance the output by 1. Once the item reaches the end, you can simply push the red button to dispense another item into the system.
I hope this helps!
-TechnoBro03