Rednet timer

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Zjarek_S

New Member
Jul 29, 2019
802
0
0
I'd make a square wave every 20 ticks (1 sec) and connect output to counter that counts to 40. Output from counter will activate every 40 s.
 

draceus

New Member
Jul 29, 2019
8
0
0
Could you try abit more detailed explanation? Im not very good with rednet and Im finding it really hard to understand this stuff :)
 

Hoff

Tech Support
Oct 30, 2012
2,901
1,502
218
You're better off using a computer with the following code(Replace white with whatever color cable you're using and replace "back" with whatever side of the computer the rednet is touching):
Code:
while true do
   redstone.setBundledOutput("back", color.white)
   sleep(0.01)
   redstone.setBundledOutput("back", 0)
   sleep(40)
end

Fair warning that, that could be wrong since I haven't played with it in awhile.
 

Hoff

Tech Support
Oct 30, 2012
2,901
1,502
218
It's cheaper?

And in my opinion far easier to understand...
 

Staxed

New Member
Jul 29, 2019
1,019
-2
0
I managed to figure it out with help from Zjarek_S thanks allot!


post the solution, maybe a screenshot...for others that may be interested in the same thing in the future, or at least the concept?


(though, I'd have just used a computer too...much more compact :))
 

draceus

New Member
Jul 29, 2019
8
0
0
Ok here is how i fixed it... Probably allot more difficult then it needed to be but anyway.

Starting with a rednet controller

Pd 20 Wave (Square) [Timer] Q I/O R white

That then links from the right side of the controller via a white cable into another controller from the left with the following settings:


I I/O L white One-Shot Pulse O I/O R white

That then created the pulse I was looking for
 

ScottulusMaximus

New Member
Jul 29, 2019
1,533
-1
1
Ok here is how i fixed it... Probably allot more difficult then it needed to be but anyway.

Starting with a rednet controller

Pd 20 Wave (Square) [Timer] Q I/O R white

That then links from the right side of the controller via a white cable into another controller from the left with the following settings:


I I/O L white One-Shot Pulse O I/O R white

That then created the pulse I was looking for

Over 3 years later and this post helped me build an afk machine in Agrarian Skies 2... Thanks for the encouragement to post the solution Staxed!