예제 #1
0
 public void Menu(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_MENU, pressRelease);
 }
예제 #2
0
 public void Right(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_TRACK_PLUS, pressRelease);
 }
예제 #3
0
 public void Menu(bool pressRelease)
 {
     IrPort.PressRelease("Menu", pressRelease);
 }
예제 #4
0
 public void Up(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_UP_ARROW, pressRelease);
 }
예제 #5
0
 public void Down(bool pressRelease)
 {
     IrPort.PressRelease("-", pressRelease);
 }
예제 #6
0
 public void Stop(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_STOP, pressRelease);
 }
예제 #7
0
 public void DvrList(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_DVR, pressRelease);
 }
예제 #8
0
 public void ChannelDown(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_CH_MINUS, pressRelease);
 }
예제 #9
0
 public void LastChannel(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_LAST, pressRelease);
 }
예제 #10
0
 /// <summary>
 /// Corresponds to "dash" IR command
 /// </summary>
 public void Dash(bool pressRelease)
 {
     IrPort.PressRelease("dash", pressRelease);
 }
예제 #11
0
 /// <summary>
 /// Corresponds to "numericEnter" IR command
 /// </summary>
 public void KeypadEnter(bool pressRelease)
 {
     IrPort.PressRelease("numericEnter", pressRelease);
 }
예제 #12
0
 public void KeypadAccessoryButton2(bool pressRelease)
 {
     IrPort.PressRelease(KeypadAccessoryButton2Command, pressRelease);
 }
예제 #13
0
 public void Digit9(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_9, pressRelease);
 }
예제 #14
0
 public void Exit(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_EXIT, pressRelease);
 }
예제 #15
0
 public void Record(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_RECORD, pressRelease);
 }
예제 #16
0
 public void Guide(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_GUIDE, pressRelease);
 }
예제 #17
0
 public void Rewind(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_RSCAN, pressRelease);
 }
예제 #18
0
 public void Info(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_INFO, pressRelease);
 }
예제 #19
0
 public void PowerOff()
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_POWER_OFF, true);
     IrPort.PressRelease(IROutputStandardCommands.IROut_POWER_OFF, false);
 }
예제 #20
0
 public void Green(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_GREEN, pressRelease);
 }
예제 #21
0
 public void Replay(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_REPLAY, pressRelease);
 }
예제 #22
0
 public void Yellow(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_YELLOW, pressRelease);
 }
예제 #23
0
 public void Up(bool pressRelease)
 {
     IrPort.PressRelease("+", pressRelease);
 }
예제 #24
0
 public void Blue(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_BLUE, pressRelease);
 }
예제 #25
0
 public void Left(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_TRACK_MINUS, pressRelease);
 }
예제 #26
0
 public void ChapMinus(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_REPLAY, pressRelease);
 }
예제 #27
0
 public void Select(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_ENTER, pressRelease);
 }
예제 #28
0
 public void FFwd(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_FSCAN, pressRelease);
 }
예제 #29
0
 public void Pause(bool pressRelease)
 {
     IrPort.PressRelease("PLAY/PAUSE", pressRelease);
 }
예제 #30
0
 public void Right(bool pressRelease)
 {
     IrPort.PressRelease(IROutputStandardCommands.IROut_RIGHT_ARROW, pressRelease);
 }