├── .gitignore ├── LICENSE ├── README.md ├── examples ├── Basic_IO │ └── Basic_IO.ino ├── ESP32_NoteOnOffEverySec │ └── ESP32_NoteOnOffEverySec.ino ├── NoteOnOffEverySec │ └── NoteOnOffEverySec.ino └── wESP32_NoteOnOffEverySec │ └── wESP32_NoteOnOffEverySec.ino ├── keywords.txt ├── library.properties └── src ├── ipMIDI.h └── ipMIDI_Namespace.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/README.md -------------------------------------------------------------------------------- /examples/Basic_IO/Basic_IO.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/examples/Basic_IO/Basic_IO.ino -------------------------------------------------------------------------------- /examples/ESP32_NoteOnOffEverySec/ESP32_NoteOnOffEverySec.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/examples/ESP32_NoteOnOffEverySec/ESP32_NoteOnOffEverySec.ino -------------------------------------------------------------------------------- /examples/NoteOnOffEverySec/NoteOnOffEverySec.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/examples/NoteOnOffEverySec/NoteOnOffEverySec.ino -------------------------------------------------------------------------------- /examples/wESP32_NoteOnOffEverySec/wESP32_NoteOnOffEverySec.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/examples/wESP32_NoteOnOffEverySec/wESP32_NoteOnOffEverySec.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/library.properties -------------------------------------------------------------------------------- /src/ipMIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/src/ipMIDI.h -------------------------------------------------------------------------------- /src/ipMIDI_Namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathoub/Arduino-ipMIDI/HEAD/src/ipMIDI_Namespace.h --------------------------------------------------------------------------------