-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathSeesawModule.cs
52 lines (38 loc) · 1.18 KB
/
SeesawModule.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
// 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.Seesaw
{
/// <summary>
/// Seesaw module.
/// </summary>
public enum SeesawModule : byte
{
/// <summary>Status module.</summary>
Status = 0x00,
/// <summary>GPIO module.</summary>
Gpio = 0x01,
/// <summary>Serial communication 0 module.</summary>
Sercom0 = 0x02,
/// <summary>Timer module.</summary>
Timer = 0x08,
/// <summary>ADC module.</summary>
Adc = 0x09,
/// <summary>DAC module.</summary>
Dac = 0x0A,
/// <summary>Interrupt module.</summary>
Interrupt = 0x0B,
/// <summary>DAP module.</summary>
Dap = 0x0C,
/// <summary>EEPROM module.</summary>
Eeprom = 0x0D,
/// <summary>Neopixel module.</summary>
Neopixel = 0x0E,
/// <summary>Touch module.</summary>
Touch = 0x0F,
/// <summary>Keypad module.</summary>
Keypad = 0x10,
/// <summary>Encoder module.</summary>
Encoder = 0x11
}
}