初始化CRICS
This commit is contained in:
85
Domain/TvKey.cs
Normal file
85
Domain/TvKey.cs
Normal file
@@ -0,0 +1,85 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Domain
|
||||
{
|
||||
public enum TvKey
|
||||
{
|
||||
/// <summary>
|
||||
/// 静音
|
||||
/// </summary>
|
||||
Mute = 0x01,
|
||||
|
||||
/// <summary>
|
||||
/// 电源
|
||||
/// </summary>
|
||||
Power = 0x02,
|
||||
|
||||
/// <summary>
|
||||
/// 音量+
|
||||
/// </summary>
|
||||
VoiceInc = 0x03,
|
||||
|
||||
/// <summary>
|
||||
/// 音量-
|
||||
/// </summary>
|
||||
VoiceDec = 0x04,
|
||||
|
||||
/// <summary>
|
||||
/// 频道+
|
||||
/// </summary>
|
||||
ChannelInc = 0x05,
|
||||
|
||||
/// <summary>
|
||||
/// 频道-
|
||||
/// </summary>
|
||||
ChannelDec = 0x06,
|
||||
|
||||
/// <summary>
|
||||
/// 向上
|
||||
/// </summary>
|
||||
Up = 0x07,
|
||||
|
||||
/// <summary>
|
||||
/// 向下
|
||||
/// </summary>
|
||||
Down = 0x08,
|
||||
|
||||
/// <summary>
|
||||
/// 向左
|
||||
/// </summary>
|
||||
Left = 0x09,
|
||||
|
||||
/// <summary>
|
||||
/// 向右
|
||||
/// </summary>
|
||||
Right = 0x0A,
|
||||
|
||||
/// <summary>
|
||||
/// 确定
|
||||
/// </summary>
|
||||
Ok = 0x0B,
|
||||
|
||||
/// <summary>
|
||||
/// 主页
|
||||
/// </summary>
|
||||
Home = 0x0C,
|
||||
|
||||
/// <summary>
|
||||
/// 菜单
|
||||
/// </summary>
|
||||
Menu = 0x0D,
|
||||
|
||||
/// <summary>
|
||||
/// 信源
|
||||
/// </summary>
|
||||
Source = 0x0E,
|
||||
|
||||
/// <summary>
|
||||
/// 回看
|
||||
/// </summary>
|
||||
Replay = 0x0F
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user