diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-04-06 00:47:02 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-04-06 00:47:02 +0200 |
commit | dfb57bb771d5b8c06e932ef90ae09a3c8bf70dca (patch) | |
tree | 046f0c691fb8dea288e9a029d1b6b6ca705f61ab /cmd/dolmetschctld/dolmetschctld.go | |
parent | mixer: basic osc message handling for /info operation (diff) |
new mixer interface mostly done, remaining issues with floats and rounding errors...
Diffstat (limited to 'cmd/dolmetschctld/dolmetschctld.go')
-rw-r--r-- | cmd/dolmetschctld/dolmetschctld.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/dolmetschctld/dolmetschctld.go b/cmd/dolmetschctld/dolmetschctld.go index a6d9ed8..3242dde 100644 --- a/cmd/dolmetschctld/dolmetschctld.go +++ b/cmd/dolmetschctld/dolmetschctld.go @@ -67,8 +67,8 @@ func main() { log.Printf("state machine successfully initialized!") // TODO: make this configurable - addLanguage(sm, "en", 0x20, 0x24) - addLanguage(sm, "de", 0x22, 0x25) + addLanguage(sm, "en", "auxin/01", "auxin/05") + addLanguage(sm, "de", "auxin/03", "auxin/06") sm.Start() defer sm.Shutdown() |