blob: 301448c28d488e5a2c1d75f74c8bee6ae2b26dfe (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.ComponentModel;
namespace Tango.Integration.Observables
{
public enum TechIos
{
/// <summary>
/// (Digital Out 1)
/// </summary>
[Description("Digital Out 1")]
PIN0 = 0,
/// <summary>
/// (Digital Out 2)
/// </summary>
[Description("Digital Out 2")]
PIN1 = 1,
}
}
|