csound-expression-0.3.3: Csound combinator library

Safe HaskellSafe-Infered

CsoundExpr.Opcodes.OSCNetwork.OSC

Description

OSC

Synopsis

Documentation

oscInit :: Irate -> IrateSource

  • opcode : OSCinit
  • syntax :
   ihandle OSCinit iport
  • description :

Starts a listening process, which can be used by OSClisten.

oscListen :: X x0 => Irate -> Irate -> Irate -> [x0] -> KrateSource

  • opcode : OSClisten
  • syntax :
   kans OSClisten ihandle, idest, itype [, xdata1, xdata2,...]
  • description :

On each k-cycle looks to see if an OSC message has been send to a given path of a given type.

oscSend :: (K k0, K k1) => k0 -> Irate -> Irate -> Irate -> Irate -> [k1] -> SignalOutSource

  • opcode : OSCsend
  • syntax :
   OSCsend kwhen, ihost, iport, idestination, itype [, kdata1, kdata2,...]
  • description :

Uses the OSC protocol to send message to other OSC listening processes.