diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-04-05 19:04:21 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-04-05 19:04:21 +0200 |
commit | c7f887a174bf0a95a858e6d31f113da7b6bfffd8 (patch) | |
tree | c3f82fef73516a003cb20bd325834d99ee2affb6 /cmd/dolmetschctld/dolmetschctld.go | |
parent | add go-modules support and fix midi library API change (diff) |
begin of major change: switching from midi to OSC
Diffstat (limited to 'cmd/dolmetschctld/dolmetschctld.go')
-rw-r--r-- | cmd/dolmetschctld/dolmetschctld.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dolmetschctld/dolmetschctld.go b/cmd/dolmetschctld/dolmetschctld.go index 38f71ad..7105ae1 100644 --- a/cmd/dolmetschctld/dolmetschctld.go +++ b/cmd/dolmetschctld/dolmetschctld.go @@ -44,7 +44,7 @@ func main() { // ************************************* // * initialize core - m, err := mixer.NewMixer(mixer.Config{DevIn: "ESI MIDIMATE eX MIDI 2", DevOut: "ESI MIDIMATE eX MIDI 1"}) + m, err := mixer.NewMixer(mixer.Config{Host: "192.168.48.232"}) if err != nil { log.Printf("Error opening the mixer: %v", err) os.Exit(1) |