Skip to content

Commit

Permalink
fix: Ardour ping mixewr command didn´t have osc data type
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Jan 16, 2020
1 parent e65d8d1 commit b84e965
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/constants/mixerProtocols/ardourMaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export const ArdourMaster: IMixerProtocol = {
pingCommand: [
{
mixerMessage: "/strip/list",
value: "",
type: "",
value: 0,
type: "i",
min: 0,
max: 1,
zero: 0.75
Expand All @@ -19,8 +19,8 @@ export const ArdourMaster: IMixerProtocol = {
pingResponseCommand: [
{
mixerMessage: "/strip/list",
value: "",
type: "",
value: 0,
type: "i",
min: 0,
max: 1,
zero: 0.75
Expand Down
1 change: 1 addition & 0 deletions server/utils/mixerConnections/OscMixerConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ export class OscMixerConnection {
pingMixerCommand() {
//Ping OSC mixer if mixerProtocol needs it.
this.mixerProtocol.pingCommand.map((command) => {
logger.verbose('Sending OSC command :' + command.mixerMessage, {})
this.sendOutMessage(
command.mixerMessage,
0,
Expand Down

0 comments on commit b84e965

Please sign in to comment.