Skip to content

Commit 1244977

Browse files
committed
Add Binary Test for fixed Ulrich Radig ESP32-S3 Node with fw 1.97
1 parent 600e5f5 commit 1244977

1 file changed

Lines changed: 62 additions & 0 deletions

File tree

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
using ArtNetSharp;
2+
3+
namespace ArtNetTests.Binary_Tests.Ulrich_Radig;
4+
5+
internal class Ulrich_Radig_ESP32_S3_Node_v1_97 : AbstractArtPollReplyBinaryTestSubject
6+
{
7+
private static readonly byte[] DATA = [
8+
0x41, 0x72, 0x74, 0x2d, 0x4e, 0x65, 0x74, 0x00,
9+
0x00, 0x21, 0xc0, 0xa8, 0xb2, 0x5b, 0x36, 0x19,
10+
0x01, 0x97, 0x00, 0x00, 0xff, 0x00, 0x00, 0x02,
11+
0x11, 0x01, 0x45, 0x53, 0x50, 0x33, 0x32, 0x2d,
12+
0x53, 0x33, 0x20, 0x4e, 0x6f, 0x64, 0x65, 0x00,
13+
0x00, 0x00, 0x00, 0x00, 0x45, 0x53, 0x50, 0x33,
14+
0x32, 0x2d, 0x53, 0x33, 0x20, 0x62, 0x61, 0x73,
15+
0x65, 0x64, 0x20, 0x41, 0x72, 0x74, 0x2d, 0x4e,
16+
0x65, 0x74, 0x20, 0x44, 0x4d, 0x58, 0x20, 0x4e,
17+
0x6f, 0x64, 0x65, 0x20, 0x28, 0x72, 0x61, 0x64,
18+
0x69, 0x67, 0x2e, 0x6f, 0x6e, 0x6c, 0x69, 0x6e,
19+
0x65, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
20+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
21+
0x00, 0x00, 0x00, 0x00, 0x23, 0x30, 0x30, 0x30,
22+
0x31, 0x20, 0x5b, 0x30, 0x30, 0x30, 0x30, 0x5d,
23+
0x20, 0x76, 0x31, 0x2e, 0x39, 0x37, 0x20, 0x50,
24+
0x6f, 0x77, 0x65, 0x72, 0x20, 0x4f, 0x6e, 0x00,
25+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
26+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
27+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
28+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
29+
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00,
30+
0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x82, 0x00,
31+
0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06, 0x00,
32+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
33+
0x00, 0x70, 0xb3, 0xd5, 0xfa, 0xfd, 0x78, 0xc0,
34+
0xa8, 0xb2, 0x5b, 0x01, 0x0a, 0x00, 0x00, 0x00,
35+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
36+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
37+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 ];
38+
39+
private static readonly PortTestSubject[] PORTS =
40+
[
41+
new PortTestSubject(EPortType.OutputFromArtNet,(PortAddress)6,(PortAddress)6),
42+
];
43+
public Ulrich_Radig_ESP32_S3_Node_v1_97() : base(
44+
"Ulrich Radig ESP32-S3 Node (FW 1.97)",
45+
DATA,
46+
0,
47+
"ESP32-S3 Node",
48+
"ESP32-S3 based Art-Net DMX Node (radig.online)",
49+
new MACAddress("70:B3:D5:FA:FD:78"),
50+
new IPv4Address("192.168.178.91"),
51+
new IPv4Address("192.168.178.91"),
52+
0xff00,
53+
0x0111,
54+
EStCodes.StNode,
55+
PORTS,
56+
true,
57+
0x01,
58+
0x97,
59+
new NodeReport(ENodeReportCodes.RcPowerOk, "v1.97 Power On", 0))
60+
{
61+
}
62+
}

0 commit comments

Comments
 (0)