-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathProgram.cs
More file actions
52 lines (43 loc) · 1.62 KB
/
Copy pathProgram.cs
File metadata and controls
52 lines (43 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using ArtNetSharp;
using ArtNetSharp.Communication;
Console.WriteLine("Config Example!");
//Add Logging
//ArtNet.SetLoggerFectory(YOUR_LOGGER_FACTORY);
//Set Networkinterfaces
//var broadcastIp = new IPAddress(new byte[] { 2, 255, 255, 255 });
//ArtNet.Instance.NetworkClients.ToList().ForEach(ncb => ncb.Enabled = IPAddress.Equals(broadcastIp, ncb.BroadcastIpAddress));
// Create Instance
ConfigInstance controllerInstance = new ConfigInstance(ArtNet.Instance);
controllerInstance.Name = controllerInstance.ShortName = "Config Example";
// Configure Ports
//for (byte i = 1; i <= 32; i++)
// controllerInstance.AddPortConfig(new PortConfig(i, new PortAddress((ushort)(i - 1)), false, true) { PortNumber = (byte)i, Type = EPortType.InputToArtNet | EPortType.ArtNet });
// Add Instance
ArtNet.Instance.AddInstance(controllerInstance);
controllerInstance.RemoteClientDiscovered += (o, e) =>
{
Console.WriteLine($"Discovered: {e.IpAddress}");
e.PortDiscovered += (o1, e1) =>
{
e1.PropertyChanged += (o2, e2) =>
{
if (e2.PropertyName?.Equals(nameof(RemoteClientPort.LastSeen)) ?? true)
return;
Console.WriteLine($"{e.IpAddress}/{e1.PortIndex}:{e2.PropertyName} changed");
};
};
}; controllerInstance.RemoteClientTimedOut += (o, e) =>
{
Console.WriteLine($"TimedOuted: {e.IpAddress}");
};
Console.ReadLine();
// Genrerate some DMX-Data
//byte[] data = new byte[512];
//while (true)
//{
// await Task.Delay(200);
// for (short k = 0; k < 512; k++)
// data[k]++;
// for (ushort i = 0; i < 32; i++)
// controllerInstance.WriteDMXValues(i, data);
//}