I'm trying to use the simple "memory cell / counter" as described in the cookbook (https://wiki.factorio.com/Circuit-network_Cookbook) to mix an exact ratio of items on one belt. I've been trying to figure out for a while how to reset the counter. I thought this design would work (excuse my bad ascii art):
Code: Select all
-> I ===arith==
| iron * -1
| -> O ==========
| |
| -> I ============decider=============
| iron = -5 --> iron input count
| -> O ================================
| |
| -> -> I ===arith===
| | iron + 0
-> -> O ===========
|
-> I =====INSERTER========
enable when iron < 6
=====================
What happens instead is that the memory cell is set to -10, so I must be misunderstanding something. Any idea why this is happening? How can I work around it?
Thanks in advance!