From b9f10f56399cdb3a9164f8eafdfe5075cd799d3a Mon Sep 17 00:00:00 2001 From: Tod Kurt Date: Mon, 5 Aug 2024 10:29:18 -0700 Subject: [PATCH 1/3] add CircuitPython_TMIDI helper library --- circuitpython_community_library_list.md | 1 + 1 file changed, 1 insertion(+) diff --git a/circuitpython_community_library_list.md b/circuitpython_community_library_list.md index 073e21a..55eb50b 100644 --- a/circuitpython_community_library_list.md +++ b/circuitpython_community_library_list.md @@ -135,6 +135,7 @@ Here is a listing of current CircuitPython Community Libraries. These libraries * [CircuitPython SoftKeyboard](https://github.com/FoamyGuy/CircuitPython_SoftKeyboard.git) Soft Keyboard for Touchscreens ([PyPi](https://pypi.org/project/circuitpython-softkeyboard/)) \([Docs](https://circuitpython-softkeyboard.readthedocs.io/en/latest/)) * [CircuitPython Styles](https://github.com/jposada202020/CircuitPython_styles.git) Library helper to add styles to CircuitPython display functions CircuitPython widgets ([PyPi](https://pypi.org/project/circuitpython-styles)) \([Docs](https://circuitpython-styles.readthedocs.io/en/latest/)) * [CircuitPython_TemperatureTools](https://github.com/CedarGroveStudios/CircuitPython_TemperatureTools.git) A collection of Dew Point, Heat Index, and temperature unit helpers \([Docs](https://github.com/CedarGroveStudios/CircuitPython_TemperatureTools/blob/main/media/pseudo_rtd_cedargrove_temperaturetools.pdf)) +* [CircuitPython_TMIDI](https://github.com/todbot/CircuitPython_TMIDI.git) Alternate CircuitPython MIDI library, inherits from Winterbloom_SmolMIDI ([PyPi](https://pypi.org/project/circuitpython-tmidi/)) \([Docs](https://circuitpython-tmidi.readthedocs.io/en/latest/)) * [CircuitPython_TOML](https://github.com/elpekenin/circuitpython_toml.git) A subset of CPython's built-in module for working with TOML data. Useful for complex data on `settings.toml` where `os.getenv` is not enough. * [CircuitPython_TouchCalibrator](https://github.com/CedarGroveStudios/CircuitPython_TouchCalibrator.git) A resistive touchscreen calibrator for Adafruit built-in and TFT FeatherWing displays * [CircuitPython TZDB](https://github.com/evindunn/circuitpython_tzdb) IANA timezones for adafruit_datetime ([PyPi](https://pypi.org/project/circuitpython-tzdb/)) \([Docs](https://circuitpython-tzdb.readthedocs.io/en/latest/)) From d4a954f8ff91f269c7e4713fae32ae1ed4de6d12 Mon Sep 17 00:00:00 2001 From: Tod Kurt Date: Mon, 5 Aug 2024 11:21:07 -0700 Subject: [PATCH 2/3] added circuitpython_tmidi --- .gitmodules | 3 +++ libraries/helpers/circuitpython_tmidi | 1 + 2 files changed, 4 insertions(+) create mode 160000 libraries/helpers/circuitpython_tmidi diff --git a/.gitmodules b/.gitmodules index 754675d..8d65f81 100644 --- a/.gitmodules +++ b/.gitmodules @@ -454,3 +454,6 @@ [submodule "libraries/drivers/displayio_st7565"] path = libraries/drivers/displayio_st7565 url = https://github.com/mateusznowakdev/CircuitPython_DisplayIO_ST7565.git +[submodule "libraries/helpers/circuitpython_tmidi"] + path = libraries/helpers/circuitpython_tmidi + url = https://github.com/todbot/CircuitPython_TMIDI.git diff --git a/libraries/helpers/circuitpython_tmidi b/libraries/helpers/circuitpython_tmidi new file mode 160000 index 0000000..30633c3 --- /dev/null +++ b/libraries/helpers/circuitpython_tmidi @@ -0,0 +1 @@ +Subproject commit 30633c343d7412f7e24798824bc76dcea9204171 From a44acafb6607950b0c2fb0767ce1343874508187 Mon Sep 17 00:00:00 2001 From: Tod Kurt Date: Mon, 5 Aug 2024 11:23:22 -0700 Subject: [PATCH 3/3] fix circuitpython_tmidi name --- .gitmodules | 2 +- libraries/helpers/{circuitpython_tmidi => tmidi} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename libraries/helpers/{circuitpython_tmidi => tmidi} (100%) diff --git a/.gitmodules b/.gitmodules index 8d65f81..f5aaf8b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -455,5 +455,5 @@ path = libraries/drivers/displayio_st7565 url = https://github.com/mateusznowakdev/CircuitPython_DisplayIO_ST7565.git [submodule "libraries/helpers/circuitpython_tmidi"] - path = libraries/helpers/circuitpython_tmidi + path = libraries/helpers/tmidi url = https://github.com/todbot/CircuitPython_TMIDI.git diff --git a/libraries/helpers/circuitpython_tmidi b/libraries/helpers/tmidi similarity index 100% rename from libraries/helpers/circuitpython_tmidi rename to libraries/helpers/tmidi