Skip to content

Commit

Permalink
Replaced CC operator with !
Browse files Browse the repository at this point in the history
  • Loading branch information
neauoire committed May 6, 2019
1 parent 19b8e42 commit 7980660
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -57,7 +57,7 @@ npm start
#### Send

- `:` **midi**: Sends a MIDI note.
- `^` **cc**: Sends a MIDI CC value.
- `!` **cc**: Sends a MIDI CC value.
- `%` **mono**: Sends a Monophonic MIDI value.
- `;` **udp**: Sends a UDP message.
- `=` **osc**: Sends a OSC message.
Expand Down
4 changes: 2 additions & 2 deletions desktop/core/library.js
Expand Up @@ -40,9 +40,9 @@ module.exports = {
'*': require('./library/_bang'),
'#': require('./library/_comment'),
':': require('./library/_midi'),
'%': require('./library/_mono'),
'!': require('./library/_cc'),
';': require('./library/_udp'),
'=': require('./library/_osc'),
'^': require('./library/_cc'),
'%': require('./library/_mono'),
'&': require('./library/_keys')
}
2 changes: 1 addition & 1 deletion desktop/core/library/_cc.js
Expand Up @@ -3,7 +3,7 @@
const Operator = require('../operator')

function OperatorCC (orca, x, y) {
Operator.call(this, orca, x, y, '^', true)
Operator.call(this, orca, x, y, '!', true)

this.name = 'Midi CC'
this.info = 'Sends a MIDI control change message.'
Expand Down
2 changes: 1 addition & 1 deletion desktop/sources/scripts/terminal.js
Expand Up @@ -11,7 +11,7 @@ function Terminal () {
const Theme = require('./lib/theme')
const Controller = require('./lib/controller')

this.version = 111
this.version = 112
this.library = require('../../core/library')

this.orca = new Orca(this)
Expand Down
2 changes: 1 addition & 1 deletion examples/misc/io.orca
Expand Up @@ -11,7 +11,7 @@
.#.MIDI..#..#.CC..#..#.UDP.#..#.OSC.#....
.........................................
.H.3Kabc....H.3Kabc..H.3Kabc..H.3Kabc....
.*Y*:gaz....*Y*^gaz..*Y*;gaz..*Y*=gaz....
.*Y*:gaz....*Y*!gaz..*Y*;gaz..*Y*=gaz....
.........................................
.........................................
.........................................

0 comments on commit 7980660

Please sign in to comment.