Posted 19 March 2014 - 11:35 PM
I'm trying to change the signal strength in a minefactory reloaded Rednet Cable. Rednet Cables only accept colored inputs. The problem i'm having is mixing analog output and bundled output. This is to get a colored output with variable redstone strength. I don't understand why it doesn't work. I checked the Rednet Cable with the Rednet Meter but the signal strength is only 15 or 0. Any help would be appreciated.
–
S=side
P=Strength of signal
C=Color of signal
–
function str(S,P,C)
redstone.setAnalogOutput(S,P)
sleep(1)
redstone.setBundledOutput(S,C)
sleep(1)
redstone.setBundledOutput(S,0)
end
str("right",13,1)
–
S=side
P=Strength of signal
C=Color of signal
–
function str(S,P,C)
redstone.setAnalogOutput(S,P)
sleep(1)
redstone.setBundledOutput(S,C)
sleep(1)
redstone.setBundledOutput(S,0)
end
str("right",13,1)