Skip to content
/ muse-brain Public

Convert Muse Monitor OSC packets to UDP datagram

Notifications You must be signed in to change notification settings

alx/muse-brain

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

muse-brain

muse-brain

Convert Muse Monitor OSC packets to UDP datagram

Require Muse Monitor Android app.

Installation

git clone https://github.com/alx/muse-brain.git
cd muse-brain
yarn
yarn start:dev

Configuration

Inside src/index.js :

// Creating osc2udp gateway
const osc2udp = new Osc2Udp({
  oscIn: {
    ip: "0.0.0.0",
    port: 57121,
  },
  udpOut: {
    ip: "0.0.0.0",
    port: 9999
  },
  dataLength: 100,
});

// Creating our screen
const terminalDisplay = new TerminalDisplay({
  lineLength: 50,
  dataSource: osc2udp
});

Inside Muse Monitor Android app, set the OSC IP and Port as indicated on the title bar of the muse-brain window.

About

Convert Muse Monitor OSC packets to UDP datagram

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published