PureData CEAMMC library web documentation
aliases: [seq.t]
available since version: 0.9.1
Output 1 on event start and 0 on event stop The event length is controlled via @length property. It can be fixed, percent or subtractive. Percent values are calculated from whole event duration. Positive values >=0 treated as fixed event length. Values <0 are calculated as EVENT_DUR-value • 'percent': @length 60% and @t 100ms - for event value '2', event duration is 200ms, event length is 120ms • 'fixed': @length 10 or @length 10ms and @t 100ms - event any duration, event length is fixed: 10ms • 'subtract': @length -40 and @t 100ms - for event value '2', event duration is 200ms, event length is 160 (200-40). For event value '1', event duration is 100ms, event length is 60 (100-40)
reset
reset all counters and stop
rewind
reset all counters without stopping
start
start sequencer from current position
stop
stop sequencer
tick
output current sequence element and move to next
@div
Get/set beat subdivision
type: int
range: 1..64
default: 1
@t
Get/set time between beats. Unit values like 100ms, 240bpm or 60|4bpm also can be used
type: float
units: ms
range: 1..20000
default: 100
@p
Get/set sequencer pattern in beat duration units
type: list
@r
Get/set number of whole sequence repeats. If -1: repeat infinitely
type: int
min value: -1
default: 1
@inf
Get/set alias to @r -1, repeats infinitely
type: alias
@once
Get/set alias to @r 1, play once
type: alias
@dur
Get/set whole sequence duration. (Recalculates @t property accordingly)
type: float
units: ms
min value: 0
default: 0
@upbeat
Get/set wait specified number of beats before sequence start
type: float
min value: 0
default: 0
@length
Get/set event length. In case of float or float wuth 'ms' suffix - event length is
fixed for any event duration. In case of V% - @length expected to be in 0..100
range and event length is percent of duration. In case of negative @length
event duration is calculated as duration+@length, but not less then 1
type: float
default: 75
@i (readonly)
Get current sequence iteration
type: int
default: 0
@ri (readonly)
Get current repeat iteration
type: int
default: 0
@mode
Get/set sequencer mode. 'inc': from first to last, 'dec': from last to first, 'tri':
from first to last, then back
type: symbol
enum: inc, dec, tri
default: inc
seq sequencer toggle pattern rhythm
Authors: Serge Poltavsky
License: GPL3 or later