MCU440

From MinecraftOnline
Jump to navigation Jump to search
Mapmarker labicon.png Monoflop
About
ID MCU440
Self Triggered No
Clickable No
Input Redstone
Sign post icon.png Sign Format
First line MONOFLOP
Second line [MCU440]
Craftbook Page

A count down timer which keeps the output off for a set amount of time.

Details

  • Second Line
    • [MCU440]
  • Third Line
    • down_count:clock_rate:on_count
  • down_count = The value to start the down count from.
  • clock_rate = Optional. The amount of ticks until a cycle is complete.
  • on_count = Optional. The amount of time the output should stay on after finishing a cycle.


Examples


[MCU440]
5

Will count down from 5.


[MCU440]
5:100

Will count down from 5, but take 100 ticks per count to do so.


[MCU440]
5:5:5

Will count down from 5, 5 ticks per count and leave the output on for 5 cycles.


[MCU440]1
5

Will count down from 5, and then cycle back off after the next clock cycle.


[MCU440]+
5

Will NOT or invert the output. Output will be on and then after count will switch off.

Notable and Practical Uses

Often used in builds where redstone timing is important. Examples:


See Also