I've seen that there are a few virtual signals that provide data of the connected machines, per example, with the reactor or the heating tower if you enable the "Read temperature" it outputs the current temperature on the "T" signal.
The problem is that it seems that there is not a virtual signal for the "Fuel bar" that is on every machine that works with fuel. I want to automate the insertion of items on these things by doing this logic:
Code: Select all
IF Temperature < 600º AND Fuel <=0% THEN
GREEN VIRTUAL SIGNAL = 1 (Connected to the inserter enable)
ENDIF
Anyone know a way to read the fuel value? I can't just detect if "FUEL CELL" <= 0 because it would insert a new fuel cell while it is still heating up and has not reached the configured temperature (First cell would be consumed inmediatelly but another fuel cell would be inserted as the slot would be empty)
EDIT: Nevermind... I've seen that if the red fuel bar is not empty it detects as if there were a fuel cell inside, it just works... I am dumb as fuck lol.