home/ modules/ meter-and-first-grooves

Meter, Note Values and Your First Grooves

  • learner can read meter, time signatures, note values and dotted rhythms
  • learner can place kick, snare and hi-hat on the 16-step grid to build a backbeat groove
  • learner can create syncopation and choose sample and tempo appropriate to a target genre

Program a two-bar drum groove on a 16-step grid at a genre-appropriate tempo: kick on the downbeat, a backbeat snare, offbeat hats, one syncopated accent and one dotted-rhythm variation — with samples chosen to fit the genre.

This module builds toward the first genuinely musical thing most live coders and bedroom producers make: a two-bar drum groove that sounds like it belongs to a genre. Whether you are step-sequencing an 808-style pattern in a browser sandbox or typing a drum line into a live-coding buffer, the same skill is at work — hearing a pulse, knowing where the strong and weak positions sit, and placing kick, snare and hats so the groove drives rather than plods. This is the rhythmic literacy every later module leans on.

The arc starts on paper, not the grid. First you learn how meter groups beats into bars, how a time signature encodes that, and how note values and the dot work — the fractional-proportion naming of note lengths and the dotted-note rule are your JIT references here. Then you translate that notation onto the sequencer: the 16-step grid atom shows how two bars of 4/4 become slots 1–16, and the drum pattern construction procedure walks you through a supported first pattern — kick anchored on the downbeat, snare answering on the backbeat, hats riding above. From there the supports come off: you add an offbeat open hat, push one accent onto a weak position using the syncopation concept, and finish by picking samples and a tempo that fit your target genre before programming a fresh groove unassisted.

Every required atom is load-bearing for that capstone: you cannot place a dotted-rhythm variation without note values, or a genre-appropriate tempo without the BPM ranges. The supporting atoms widen the frame — what drum programming is historically, why a groove can feel faster or slower than its BPM, and how the two-step strips a break to its skeleton — enriching taste without gating the task.

Runnable examples

Generated from the context/ instrument corpus by concept (redistributable idioms only). Do not edit — regenerate with gen-module-examples.mjs.

four-on-the-floor

s("bd*4")

strudel-0001 · CC0

setcps 0.52

tidal-0044 · CC0

offbeat-hats

s("~ hh ~ hh")

strudel-0002 · CC0

d1 $ sound "~ hh ~ hh"

tidal-0002 · CC0

backbeat

s("~ sd ~ sd")

strudel-0003 · CC0

d1 $ sound "~ sn ~ sn"

tidal-0003 · CC0

breakbeat

out: speed 4.0 >> seq 60 _ _ 60 _ 60 _ _ >> bd 0.2 >> mul 0.6

glicol-0035 · MIT

setcpm(174/4)
stack(
  s("amencutup*8").chop(8).sometimesBy(0.3, x => x.speed(2)),
  note("c1 ~ ~ c1 ~ g1 ~ ~").s("sawtooth").lpf(500),
  s("~ cp").room(0.2)
)

strudel-0050 · CC0

subdivision

seq [55, 82.5, 110, 82.5] & osc >> audio

punctual-0014 · CC0-1.0

d1 $ n "0 .. 7" # scale "minor" # sound "arpy"

tidal-0030 · CC0

syncopation

Pbind(\degree, Pseq([0, 4, 7], inf), \dur, 0.5, \amp, Pseq([0.4, 0.1, 0.1, 0.1], inf)).play

supercollider-0036 · CC0

Atoms in this module

Required — these gate the capstone

Meter groups beats into bars of two, three or four, notated by a time signature
Concept L1 Foundations A
A time signature specifies the number of beats per bar (numerator) and the beat note value (denominator)
Concept L1 Foundations A
Note values (whole, half, quarter, eighth, sixteenth) are fractional proportions of a whole note
Fact L1 Foundations A
A dot after a note extends its duration by half, creating in-between values useful for compound rhythms
Fact L1 Foundations A
The 16-step drum machine grid represents two bars of 4/4 time as sixteen eighth notes
Concept L1 Foundations AF
Nearly all dance music places the kick drum on the downbeat of the first measure
Principle L1 Foundations A
The backbeat — a loud snare answering the kick — is the foundational pattern under most contemporary popular music
Fact L1 Foundations AC
A drum pattern sets the groove by placing kick, snare, and hi-hat on specific beats in a bar
Procedure L1 Foundations AN
Syncopation places accents on normally weak beats, creating tension against an internalized pulse
Concept L1 Foundations A
An open hi-hat on every off beat anchors the eighth-note pulse in Detroit techno
Concept L1 Foundations A
Drum sample choice should match the genre before any programming begins
Procedure L1 Foundations AC
Electronic genres cluster around characteristic tempo ranges
Fact L1 Foundations AF

Supporting — enrichment, not gating

Drum programming sequences rhythmic patterns using electronic or digital sounds instead of a live kit
Concept L0 Orientation AN
Perceived tempo is set by rhythmic density and note length, and can diverge sharply from the metronomic BPM
Concept L2 First instrument AB
The two-step is a simple kick-snare rhythm that no longer sounds like a breakbeat
Concept L1 Foundations AO
A 4/4 bar divided into 16 sixteenth-notes is the working canvas for drum programming in most electronic genres
Concept L1 Foundations AF
Chosen subdivision sets a genre's speed feel independently of tempo
Principle L2 First instrument AF
A drum kit's four functional slots each have a default placement: kick=pulse, snare=backbeat, hi-hat=subdivision, percussion=fill
Concept L1 Foundations AF