Parsing and encoding of MIDI messages. Bring your own transport.
Find a file
2022-10-20 06:02:13 +13:00
config chore: set up git_ops and auto-releasing 2021-12-08 18:14:14 +13:00
lib chore(credo): fix linting issues. 2021-12-09 13:26:48 +13:00
test Tidy up for initial release. 2020-05-10 20:04:16 +12:00
.formatter.exs Empty mix app. 2020-05-05 15:41:36 +12:00
.gitignore Configure CI, etc. 2020-05-05 15:45:50 +12:00
.gitlab-ci.yml chore: set up git_ops and auto-releasing 2021-12-08 18:14:14 +13:00
CHANGELOG.md chore: set up git_ops and auto-releasing 2021-12-08 18:14:14 +13:00
LICENSE Improve README and add LICENSE file. 2020-05-10 17:44:58 +12:00
mix.exs chore(deps): update dependency ex_doc to ~> 0.29 2022-10-20 06:02:13 +13:00
mix.lock chore(deps): update dependency ex_doc to ~> 0.29 2022-10-20 06:02:13 +13:00
README.md Improve README and add LICENSE file. 2020-05-10 17:44:58 +12:00
renovate.json chore: update renovate.json 2021-12-09 11:25:00 +13:00

MidiProto

This package allows for easy encoding and decoding of the MIDI protocol.

It deals simply with encoding and decoding the byte protocol, and cares nothing about transport - allowing you to easily put it into any use case.

Additionally, it supports a common subset of the Firmata protocol that I needed.

Installation

If available in Hex, the package can be installed by adding midi_proto to your list of dependencies in mix.exs:

def deps do
  [
    {:midi_proto, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/midi_proto.