Soo, im trying to make some "visual" way of knowing if a power switch is on or off, but since i cant take any output from the power switch directly, i got to use the circuit network.
However, i tryed many ways and i cant find a way (without using accumulators or inserter-chest types of checks) of getting it to work.
Constant Combinators apparently dont need power to work and when a power from a decider/aritmethic combinator os taken, they remain outputting the same, even with power off
Does anyone know a way of checking a state using ONLY circuit network
[HELP] Power Switch State Check
Re: [HELP] Power Switch State Check
When combinators are out of power the freeze their output signal.
So put a clock combinator setup behind the power switch. Then check if the clock is still running (compare current value with past value).
So put a clock combinator setup behind the power switch. Then check if the clock is still running (compare current value with past value).
Re: [HELP] Power Switch State Check
Even simpler make half of an RS-Latch. One decider always outputing S = 1 while R = 0 and place another decider always outputting R = 1 in the switched off circuit.
if power is available R will be 1 and if it's off S is 1.
if power is available R will be 1 and if it's off S is 1.
My Mods: mods.factorio.com
Re: [HELP] Power Switch State Check
That's the issue the OP is having, when combinators run out of power they still output the same signals they where generating when power went out. They just don't change those outputs according to inputs anymore.Optera wrote:Even simpler make half of an RS-Latch. One decider always outputing S = 1 while R = 0 and place another decider always outputting R = 1 in the switched off circuit.
if power is available R will be 1 and if it's off S is 1.
So a decider which always outputs R=1 will continue outputing R=1, even after being disconnected from power.
Re: [HELP] Power Switch State Check
Can u guys explain me better? Images?
im kinda noob in circuit network :p
im kinda noob in circuit network :p
Re: [HELP] Power Switch State Check
General is NOT the Help Board!
Moved.
Moved.
Cool suggestion: Eatable MOUSE-pointers.
Have you used the Advanced Search today?
Need help, question? FAQ - Wiki - Forum help
I still like small signatures...
Have you used the Advanced Search today?
Need help, question? FAQ - Wiki - Forum help
I still like small signatures...
Re: [HELP] Power Switch State Check
My bad. I never stumbled across this new behavior.Yoyobuae wrote:That's the issue the OP is having, when combinators run out of power they still output the same signals they where generating when power went out. They just don't change those outputs according to inputs anymore.Optera wrote:Even simpler make half of an RS-Latch. One decider always outputing S = 1 while R = 0 and place another decider always outputting R = 1 in the switched off circuit.
if power is available R will be 1 and if it's off S is 1.
So a decider which always outputs R=1 will continue outputing R=1, even after being disconnected from power.
Accommodating for the new behavior using a modified old version of a backup power switch: Prime the chest with 10-20 plates.
When 0 plates are on the belt the top decider switches to red
When > 0 plates are on the belt the bottom decider switches to green
Using the belt instead of the chest prevents flickering when toggling the switch
My Mods: mods.factorio.com
Re: [HELP] Power Switch State Check
Yoyobuae wrote:When combinators are out of power the freeze their output signal.
So put a clock combinator setup behind the power switch. Then check if the clock is still running (compare current value with past value).