diff options
author | cbdev <cb@cbcdn.com> | 2017-07-04 01:36:18 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2017-07-04 01:36:18 +0200 |
commit | e34bca6f01768ebce852f43d7ec55fc18126555b (patch) | |
tree | baf2312c0e52cbd3ca01e6c5747db4d7b48d3c64 | |
parent | c7964771d85e27685a21a3aafbd6331834868021 (diff) | |
download | midimonster-e34bca6f01768ebce852f43d7ec55fc18126555b.tar.gz midimonster-e34bca6f01768ebce852f43d7ec55fc18126555b.tar.bz2 midimonster-e34bca6f01768ebce852f43d7ec55fc18126555b.zip |
Fix README layout
-rw-r--r-- | README.md | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -197,25 +197,25 @@ osc1./1/xy1:0 > osc2./1/fader1 Note that any multi-value channel that is to be output will need to be set up in the instance configuration (not yet implemented). -#### Value ranges +#### Supported types & value ranges OSC allows controls to have individual value ranges and supports different parameter types. The following types are currently supported by the MIDImonster: -* `i`: 32-bit signed integer -* `f`: 32-bit IEEE floating point -* `h`: 64-bit signed integer -* `d`: 64-bit double precision floating point +* **i**: 32-bit signed integer +* **f**: 32-bit IEEE floating point +* **h**: 64-bit signed integer +* **d**: 64-bit double precision floating point For each type, there is a default value range which will be assumed if the channel is not otherwise configured using the instance configuration. Values out of a channels range will be clipped. The default ranges are: -* `i`: `0` to `255` -* `f`: `0.0` to `1.0` -* `h`: `0` to `1024` -* `d`: `0.0` to `1.0` +* **i**: `0` to `255` +* **f**: `0.0` to `1.0` +* **h**: `0` to `1024` +* **d**: `0.0` to `1.0` #### Known bugs / problems |