コード例 #1
0
ファイル: ArtNetDevice.cs プロジェクト: akutruff/HueShift
 public void Start()
 {
     communicator = new UdpCommunicator();
     communicator.DataReceived += Communicator_DataReceived;
     communicator.Start(Address, Port);
 }
コード例 #2
0
ファイル: ArtNetDevice.cs プロジェクト: lioaphy/ArtNet3DotNet
 public void Start()
 {
     communicator = new UdpCommunicator ();
     communicator.DataReceived += Communicator_DataReceived;
     communicator.Start (Address, Port);
 }