-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathFirmwareVersion.cs
46 lines (40 loc) · 1.46 KB
/
FirmwareVersion.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Iot.Device.Pn532
{
/// <summary>
/// PN532 firmware version
/// </summary>
public class FirmwareVersion
{
/// <summary>
/// Creates PN532 firmware version object
/// </summary>
/// <param name="identificationCode">The identification code for PN532 should be 0x32.</param>
/// <param name="version">The version, latest know one is 1.6.</param>
/// <param name="versionSupported">All card version supported.</param>
public FirmwareVersion(byte identificationCode, Version version, VersionSupported versionSupported)
{
IdentificationCode = identificationCode;
Version = version;
VersionSupported = versionSupported;
}
/// <summary>
/// The identification code for PN532 should be 0x32
/// </summary>
public byte IdentificationCode { get; set; }
/// <summary>
/// The version, latest know one is 1.6
/// </summary>
public Version Version { get; set; }
/// <summary>
/// All card version supported
/// </summary>
public VersionSupported VersionSupported { get; set; }
/// <summary>
/// Is it a PN532?
/// </summary>
public bool IsPn532 => IdentificationCode == 0x32;
}
}