-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathProgram.cs
175 lines (138 loc) · 5.79 KB
/
Program.cs
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using System;
using System.Threading;
using System.Net;
using nanoFramework.Networking.Thread;
namespace Samples
{
public class Program
{
private const int UDP_PORT = 1234;
private static OpenThread _ot;
private static AutoResetEvent _waitNetAttached = new AutoResetEvent(false);
public static Led _led = new Led();
public static void Main()
{
Console.WriteLine();
Display.Log("Sample UDP thread UDP client");
try
{
// Target is mesh broadcast address
// this will be received by all mesh devices except sleepy devices.
// If you use a specific mesh local address here it will only received by 1 target
string remoteAdress = "ff03::1";
_led.Set(ThreadDeviceRole.Disabled);
// Initialize OpenThread stack
InitThread();
Display.Log("Wait for OpenThread to be attached...");
_waitNetAttached.WaitOne();
IPAddress meshLocal = _ot.MeshLocalAddress;
Display.Log($"Own mesh local IPV6 address {meshLocal}");
Display.Log("Display current active dataset");
CommandAndResult("dataset active");
Display.Log("Display interface IP addresses");
CommandAndResult("ipaddr");
Display.Log("Open UDP socket for communication");
NetUtils.OpenUdpSocket("", UDP_PORT, _ot.MeshLocalAddress);
Display.Log("Start a receive thread for UDP message responses");
Thread ReceiveUdpthread = new Thread(() => NetUtils.ReceiveUdpMessages());
ReceiveUdpthread.Start();
while (true)
{
Display.Log($"Send (broadcast) messages on port:{UDP_PORT}");
NetUtils.SendMessageSocketTo(UDP_PORT, remoteAdress, $"Test message via socket @ {DateTime.UtcNow}");
_led.SetRxTX();
Thread.Sleep(5000);
}
}
catch (Exception e)
{
Display.Log($"Exception : {e.Message}");
Display.Log($"Stack : {e.StackTrace}");
}
Thread.Sleep(Timeout.Infinite);
}
/// <summary>
/// Initialize the OpenThread
/// </summary>
static void InitThread()
{
OpenThreadDataset data = new OpenThreadDataset()
{
// Minimum data required to set up/connect to Thread network
NetworkName = "nanoFramework",
// 000102030405060708090A0B0C0D0E0F
NetworkKey = new byte[16] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
PanId = 0x1234,
Channel = 15
};
Display.Log("---- Thread Dataset ------");
Display.Log($"Network name {data.NetworkName}");
Display.Log($"NetworkKey {BitConverter.ToString(data.NetworkKey)}");
Display.Log($"Channel {data.Channel}");
Display.Log("---- Thread Dataset end ------");
// Use local radio, ESP32_C6 or ESP32_H2
_ot = OpenThread.CreateThreadWithNativeRadio(ThreadDeviceType.Router);
// Set up event handlers
_ot.OnStatusChanged += Ot_OnStatusChanged;
_ot.OnRoleChanged += Ot_OnRoleChanged;
_ot.OnConsoleOutputAvailable += Ot_OnConsoleOutputAvailable;
_ot.Dataset = data;
Display.Log($"Starting OpenThread stack");
_ot.Start();
Display.Log($"Current Role");
Display.Role(_ot.Role);
}
static void CommandAndResult(string cmd)
{
Console.WriteLine($"{Display.LH} command>{cmd}");
string[] results = _ot.CommandLineInputAndWaitResponse(cmd);
Display.Log(results);
}
#region OpenThread events handlers
private static void Ot_OnConsoleOutputAvailable(OpenThread sender, OpenThreadConsoleOutputAvailableArgs args)
{
Display.Log(args.consoleLines);
}
private static void Ot_OnRoleChanged(OpenThread sender, OpenThreadRoleChangeEventArgs args)
{
Display.Role(args.currentRole);
_led.Set(args.currentRole);
}
private static void Ot_OnStatusChanged(OpenThread sender, OpenThreadStateChangeEventArgs args)
{
switch ((ThreadDeviceState)args.currentState)
{
case ThreadDeviceState.Detached:
Display.Log("Status - Detached");
break;
case ThreadDeviceState.Attached:
Display.Log("Status - Attached");
_waitNetAttached.Set();
break;
case ThreadDeviceState.GotIpv6:
Display.Log("Status - Got IPV6 address");
break;
case ThreadDeviceState.Start:
Display.Log("Status - Started");
break;
case ThreadDeviceState.Stop:
Display.Log("Status - Stopped");
break;
case ThreadDeviceState.InterfaceUp:
Display.Log("Status - Interface UP");
break;
case ThreadDeviceState.InterfaceDown:
Display.Log("Status - Interface DOWN");
break;
default:
Display.Log($"Status - changed to {args.currentState}");
break;
}
}
#endregion
}
}