Visit ComfyUI Online for ready-to-use ComfyUI environment
Generate schedule from binary input for animation/scheduling tasks, maps bits to time intervals, supports looping.
The CR Bit Schedule node is designed to generate a schedule based on a binary string input, which can be used for various animation or scheduling tasks. This node processes the binary string by removing any spaces or line returns and then creates a schedule where each bit in the string is associated with a specific time interval. The schedule can be looped multiple times, allowing for repeated sequences. This node is particularly useful for creating precise, bit-based schedules that can be easily integrated into larger animation or control systems.
The binary_string
parameter is a multiline string input where you can enter a sequence of binary digits (0s and 1s). This string is the basis for the schedule that will be generated. The node will remove any spaces or line returns from this string before processing it. The default value is an empty string.
The interval
parameter is an integer that specifies the time interval between each bit in the schedule. This interval determines how frequently each bit in the binary string will be scheduled. The minimum value is 1, the maximum value is 99999, and the default value is 1.
The loops
parameter is an integer that specifies how many times the binary string should be repeated in the schedule. This allows for the creation of longer schedules by repeating the same sequence of bits multiple times. The minimum value is 1, the maximum value is 99999, and the default value is 1.
The SCHEDULE
output is a string that contains the generated schedule. Each line in this string represents a scheduled bit, formatted as "time,bit", where "time" is the time interval and "bit" is the corresponding bit from the binary string. This output can be used directly in other nodes or systems that require a bit-based schedule.
The show_text
output is a string that provides a URL to the help documentation for this node. This URL points to a wiki page that offers additional information and examples on how to use the CR Bit Schedule node effectively.
binary_string
contains only 0s and 1s, as any other characters will cause errors.interval
parameter to control the timing precision of your schedule. Smaller intervals result in more frequent bit changes.loops
parameter to extend the length of your schedule without manually repeating the binary string.binary_string
contains characters other than 0s and 1s.binary_string
contains only 0s and 1s. Remove any other characters, including spaces and line returns.interval
value is set outside the allowed range (1 to 99999).interval
value to be within the allowed range.loops
value is set outside the allowed range (1 to 99999).loops
value to be within the allowed range.© Copyright 2024 RunComfy. All Rights Reserved.