25 lines
374 B
C#
25 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace arDev.Arduino
|
|
{
|
|
public enum IODirection
|
|
{
|
|
Input = 0,
|
|
Output
|
|
}
|
|
|
|
public enum MessageType
|
|
{
|
|
Normal = 0,
|
|
SendData,
|
|
ReceiveData,
|
|
Message,
|
|
RxIOData,
|
|
RxSetData,
|
|
}
|
|
|
|
}
|