Skip to content

Commit

Permalink
Forgot to define the 16 banks
Browse files Browse the repository at this point in the history
christofmuc committed Jan 28, 2025
1 parent 757a05c commit 3b63880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adaptations/Waldorf_M.py
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ def channelIfValidDeviceResponse(message):


def bankDescriptors():
return [{"bank": 0, "name": f"RAM", "size": 64, "type": "Patch"}]
return [{"bank": x, "name": f"Bank {x+1}", "size": 128, "type": "Patch"} for x in range(16)]


def createEditBufferRequest(device_id):

0 comments on commit 3b63880

Please sign in to comment.