Difference between revisions of "Sound.freq"

From MiniScript Wiki
Jump to navigation Jump to search
(Created Sound.freq, including working examples and references to relevant functions)
 
m
Line 1: Line 1:
<c>[[Sound]].freq</c> controls how many times a second a waveform is repeated.
+
<c>[[Sound]].freq</c> controls a Sound object's sound frequency, or how many times a second a waveform is repeated.
  
 
For example, a middle C on a piano produces a sound frequency of 261.626 times a second:
 
For example, a middle C on a piano produces a sound frequency of 261.626 times a second:

Revision as of 21:57, 27 April 2020

Sound.freq controls a Sound object's sound frequency, or how many times a second a waveform is repeated.

For example, a middle C on a piano produces a sound frequency of 261.626 times a second:

snd = new Sound
snd.init(2)
snd.freq = 261.626
snd.play

It can be assigned a single frequency, or a list of frequencies, and Micro Mini will interpolate between frequencies over the duration of the sound:

snd = new Sound
snd.init(2)
snd.freq = [noteFreq(58), noteFreq(43)]
snd.play

See also: Sound.init; noteFreq