Skip to content

ajboni/ArduinoMidiFilter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Arduino MIDI filter

This is very simple midi filter for arduino UNO (will probably work with others).

The program has two modes:

  1. Whitelist: Deny everything except allowed messages.
  2. Blacklist: Allow everything except allowed messages.

To configure just set to 1 the messages that you want to filter in/out.

// Deny everything except clock related messages.
// FILTER MODE: 0 = Whitelist , 1 = Blacklist
int FILTER_MODE         = 0;
int NOTE                = 0;
int CONTROL_CHANGE      = 0;
int PROGRAM_CHANGE      = 0;
int AFTERTOUCH_POLY     = 0;
int AFTERTOUCH_CHANNEL  = 0;
int PITCHBEND           = 0;
int SYSTEM              = 0;
int CLOCK               = 1;
int ERRORS              = 0;

This project was made using this great post as reference.

About

Extremely simple midi filter for arduino.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages