mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-19 08:31:41 +00:00
224000c4c7
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
13 lines
218 B
C#
13 lines
218 B
C#
// <copyright file="PinLevel.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace EightBit
|
|
{
|
|
public enum PinLevel
|
|
{
|
|
Low,
|
|
High,
|
|
}
|
|
}
|