You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
365 B
C#
21 lines
365 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.DoUtils.enumInfo
|
|
{
|
|
public enum DOName
|
|
{
|
|
Red = 0x01,
|
|
Green = 0x02,
|
|
Yellow = 0x03,
|
|
Buzzer = 0x04,
|
|
dO_5 = 0x05,
|
|
dO_6 = 0x06,
|
|
dO_7 = 0x07,
|
|
dO_8 = 0x08,
|
|
}
|
|
}
|