-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathProgram.cs
55 lines (49 loc) · 1.8 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
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using System;
using System.Text;
using System.Threading;
using nanoFramework.Hardware.Esp32.Rmt;
namespace InfraredRemote
{
//
// Sample program to show using the RMT device to read infrared signals with VS1838 and parse them into usefull objects.
//
public class Program
{
public static void Main()
{
var signalDecoder = new NecSignalDecoder(signalLengthTolerance: 0.25);
InfraredListener listener = new InfraredListener(15);
listener.SignalEvent += (sender, signal) =>
{
DisplayCurrentReadCommand(signal);
var data = signalDecoder.Decode(signal);
Console.WriteLine($"Protocol: {data.Protocol} Address: {data.AddressNumber} Command: {data.CommandNumber} from Payload: {data.Payload}");
};
listener.Start();
Thread.Sleep(Timeout.Infinite);
}
private static void DisplayCurrentReadCommand(RmtCommand[] response)
{
Console.WriteLine($"Length:{response.Length.ToString()}");
StringBuilder sb = new StringBuilder();
foreach (var rmtCommand in response)
{
sb.Append("new RmtCommand(");
sb.Append(rmtCommand.Duration0);
sb.Append(",");
sb.Append(rmtCommand.Level0.ToString().ToLower());
sb.Append(",");
sb.Append(rmtCommand.Duration1);
sb.Append(",");
sb.Append(rmtCommand.Level1.ToString().ToLower());
sb.Append("),");
sb.Append("\r\n");
}
Console.WriteLine(sb.ToString());
}
}
}