Hello,
I watched lots of videos and couple of articles however couldnt find the answer.
Here is scenario:
I want to control two filter inserter with circuit network.
There is a box in the middle and it has 2 different items on it.. Lets say Red Science and Green Science.
One Filter insterter (FA) is putting these items into box.
Other Filter Insterter (FB) is taking away these items from box.
I want those FA and FB to work only if there is less than 19 of each items.. Lets say working condition is True.
16 red and 16 green = True
20 red and 20 green = False
16 Red and 20 green = False
20 Red and 15 green = False.
Please see attached photo for setup.
I tried to put two deciders.
DA and DB.
input DA connected to Box in the middle
Input DB connected to Box in the middle.
Output of DA connected to both FA and FB
Output of DB connected to both FA and FB
enable/disable condition on both FA and FB set to equal of output signal from DA and DB. didnt work
Circuit Network - Couldn't find the solution
Circuit Network - Couldn't find the solution
- Attachments
-
- faact.jpg (161.3 KiB) Viewed 1247 times
Re: Circuit Network - Couldn't find the solution
two combinators
if (red < 19) then A1
if (green < 19) then A1
connect the output of both to the two inserters
enable condition is: A==2
if (red < 19) then A1
if (green < 19) then A1
connect the output of both to the two inserters
enable condition is: A==2
Re: Circuit Network - Couldn't find the solution
one constant combinator:
red = 2147483629, green = 2147483629
inserter condition:
everything > 0
red = 2147483629, green = 2147483629
inserter condition:
everything > 0
Re: Circuit Network - Couldn't find the solution
Thank you for the replies but it didnt work.
As soon as one of the items on the chest exceeds 19, insterters stop working.
example:
in the middle chest:
red: 10
Green: 20
insterter doesnt work.
As soon as one of the items on the chest exceeds 19, insterters stop working.
example:
in the middle chest:
red: 10
Green: 20
insterter doesnt work.
Re: Circuit Network - Couldn't find the solution
That is exactly what you wanted!
> I want those FA and FB to work only if there is less than 19 of each items.
> I want those FA and FB to work only if there is less than 19 of each items.