forked from becio/Netduino-Emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPins.cs
More file actions
39 lines (36 loc) · 1.19 KB
/
Pins.cs
File metadata and controls
39 lines (36 loc) · 1.19 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Netduino.Core
{
/// <summary>
/// The pinout for the netduino
/// </summary>
public static class Pins
{
public const int GPIO_NONE = -1;
public const int GPIO_PIN_A0 = 59;
public const int GPIO_PIN_A1 = 60;
public const int GPIO_PIN_A2 = 61;
public const int GPIO_PIN_A3 = 62;
public const int GPIO_PIN_A4 = 10;
public const int GPIO_PIN_A5 = 11;
public const int GPIO_PIN_D0 = 27;
public const int GPIO_PIN_D1 = 28;
public const int GPIO_PIN_D10 = 54;
public const int GPIO_PIN_D11 = 17;
public const int GPIO_PIN_D12 = 16;
public const int GPIO_PIN_D13 = 18;
public const int GPIO_PIN_D2 = 0;
public const int GPIO_PIN_D3 = 1;
public const int GPIO_PIN_D4 = 12;
public const int GPIO_PIN_D5 = 51;
public const int GPIO_PIN_D6 = 52;
public const int GPIO_PIN_D7 = 3;
public const int GPIO_PIN_D8 = 4;
public const int GPIO_PIN_D9 = 53;
public const int ONBOARD_LED = 55;
public const int ONBOARD_SW1 = 29;
}
}