From abc1717fe3979a468ee57140ef50ae53b36bd2b5 Mon Sep 17 00:00:00 2001 From: Gregory White Date: Mon, 4 Dec 2023 20:31:06 +0000 Subject: [PATCH] Documentation: Updating SawLFO Updating sawlfo.md to fit with latest documentation specs. --- docs/library/oscillators/sawlfo.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/docs/library/oscillators/sawlfo.md b/docs/library/oscillators/sawlfo.md index 9a407d71..5bea4674 100644 --- a/docs/library/oscillators/sawlfo.md +++ b/docs/library/oscillators/sawlfo.md @@ -1,10 +1,22 @@ +title: SawLFO node documentation +description: SawLFO: Produces a sawtooth LFO at the fiven `frequency` and `phase` offset, with output ranging from `min` to `max`. + [Reference library](../index.md) > [Oscillators](index.md) > [SawLFO](sawlfo.md) # SawLFO -Produces a sawtooth LFO, with output ranging from min to max. - -Signature: ```python SawLFO(frequency=1.0, min=0.0, max=1.0, phase=0.0) ``` + +Produces a sawtooth LFO at the fiven `frequency` and `phase` offset, with output ranging from `min` to `max`. + +### Examples + +```python + +# Siren effect, using a sawtooth LFO to modulate a sine wave's frequency +lfo = SawLFO(1, 200, 1000) +sine = SineOscillator(lfo) +sine.play() +``` \ No newline at end of file