Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.47 KB

README.adoc

File metadata and controls

45 lines (32 loc) · 1.47 KB

MidiSensors Library for Teensy

Super simple library for Teensy for making MIDI communication from analog or touch pins as painless as possible.

Setup

Configure Teensy USB Type to Serial+MIDI or MIDI

Setup the MidiManager Parameters:

  • interval for sending the messages (in ms)

  • baudRate (-1 for no serial)

Add the MidiSensors Parameters:

  • type: ANALOG_SENSOR or TOUCH_SENSOR

  • pin: pin to read from (for example A2)

  • min: minimum value of the reading

  • max: maximum value of the reading

  • channel: midi channel

  • number: midi note number

  • threshold: threshold for noteOn/noteOff messages, -1 for ControlChange message

run MidiSensor.loop() every frame or MidiSensor.loog(true) to get values on serial port

License

Copyright (c) 2016 Krzysztof Goliński. All right reserved.

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA