Signal instability

Don't know how to use a machine? Looking for efficient setups? Stuck in a mission?
User avatar
hitzu
Filter Inserter
Filter Inserter
Posts: 539
Joined: Tue Sep 09, 2014 5:55 pm
Contact:

Signal instability

Post by hitzu »

I made a simple timer clock that should send signal "1" every 16 ticks. But something went wrong and it skips sometimes and doesn't output the signal every time it should. How to fix this?

It seems that it just doesn't have time to check the condition every tick. If I increase the number in the bottom combinator then the frequency of the output signal becomes more even. Unfortunately it is very important to set up the duration of the output signal equal exactly 1 tick.
Factorio 2015-09-27 01.05.53.jpg
Factorio 2015-09-27 01.05.53.jpg (117.97 KiB) Viewed 9354 times
User avatar
DaveMcW
Smart Inserter
Smart Inserter
Posts: 3749
Joined: Tue May 13, 2014 11:06 am
Contact:

Re: Signal instability

Post by DaveMcW »

Generate more electricity. Combinators are one of the first things to stop when your power is low.
User avatar
hitzu
Filter Inserter
Filter Inserter
Posts: 539
Joined: Tue Sep 09, 2014 5:55 pm
Contact:

Re: Signal instability

Post by hitzu »

DaveMcW wrote:Generate more electricity. Combinators are one of the first things to stop when your power is low.
There is no issues with electricity. I overproduce it 5 times.
Lupoviridae
Fast Inserter
Fast Inserter
Posts: 155
Joined: Mon Apr 20, 2015 6:26 pm
Contact:

Re: Signal instability

Post by Lupoviridae »

Change your last combinator in the series to when "0" == 15, output "0" = 1.

Theres a difference between a signal of 0 and no signal. In this type of clock setup when "0" reaches a value of 15 (and 15+1 = 16) "0" < 16 returns false. Instead of ouputting "0" = 0 for 1 tick, it output no signal for 1 tick (or rather, it should. Its a bit glitchy with this). Next tick it outputs "0" = 1, but never "0" = 0. Thus in your current setup, the last combinator never turns on.
Post Reply

Return to “Gameplay Help”