Skip to content

Commit

Permalink
remove akai client
Browse files Browse the repository at this point in the history
  • Loading branch information
misko committed Oct 7, 2024
1 parent 7fe395b commit 087f00d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions hudes/hudes_play.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import argparse

import pygame.midi

from hudes.akai_client import AkaiClient
# from hudes.akai_client import AkaiClient
from hudes.keyboard_client import KeyboardClient
from hudes.keyboard_client_openGL import KeyboardClientGL
from hudes.view import OpenGLView, View
Expand Down Expand Up @@ -31,9 +29,9 @@ def main():
mesh_grid_size=args.grid_size,
)
view = OpenGLView(grid_size=args.grid_size, grids=args.grids)
elif args.input == "akai":
controller = AkaiClient(seed=args.seed)
view = View()
# elif args.input == "akai":
# controller = AkaiClient(seed=args.seed)
# view = View()
elif args.input == "xtouch":
controller = XTouchClient(seed=args.seed)
view = View(use_midi=True)
Expand Down

0 comments on commit 087f00d

Please sign in to comment.