Fixing music doc issues
This commit is contained in:
30
docs/reference/music/beat.md
Normal file
30
docs/reference/music/beat.md
Normal file
@ -0,0 +1,30 @@
|
||||
# Beat
|
||||
|
||||
Returns the duration of a beat in milli-seconds
|
||||
|
||||
## Simulator
|
||||
|
||||
This function only works on the micro:bit and in some browsers.
|
||||
|
||||
```sig
|
||||
music.beat(BeatFraction.Whole)
|
||||
```
|
||||
|
||||
### Parameters
|
||||
|
||||
* ``BeatFraction`` means fraction of a beat (BeatFraction.Whole, BeatFraction.Sixteenth etc)
|
||||
|
||||
### Returns
|
||||
|
||||
* a [number](/reference/types/number) that means the amount of milli-seconds a beat fraction represents.
|
||||
|
||||
|
||||
## Example
|
||||
|
||||
```blocks
|
||||
music.playTone(Note.C, music.beat(BeatFraction.Quarter))
|
||||
```
|
||||
|
||||
### See also
|
||||
|
||||
[play tone](/reference/music/play-tone), [ring tone](/reference/music/ring-tone), [rest](/reference/music/rest), [set tempo](/reference/music/set-tempo), [change tempo by](/reference/music/change-tempo-by)
|
Reference in New Issue
Block a user