Server/Actions/ActionCecScan.cs
author StephaneLenclud
Fri, 29 Jul 2016 14:46:30 +0200
changeset 229 7c631055b94b
parent 223 f6272f65d8fc
child 231 4c706feaf706
permissions -rw-r--r--
Adding event test button.
     1 using CecSharp;
     2 using SharpLib.Ear;
     3 using System;
     4 using System.Collections.Generic;
     5 using System.Linq;
     6 using System.Runtime.Serialization;
     7 using System.Text;
     8 using System.Threading.Tasks;
     9 
    10 namespace SharpDisplayManager
    11 {
    12 
    13     [DataContract]
    14     [AttributeAction(Id = "Cec.Scan", Name = "CEC Scan", Description = "Scan devices on your CEC HDMI network.")]
    15     class ActionCecScan : SharpLib.Ear.Action
    16     {
    17         protected override void DoExecute()
    18         {
    19             if (Cec.Client.Static == null)
    20             {
    21                 Console.WriteLine("WARNING: No CEC client installed.");
    22                 return;
    23             }
    24 
    25             Cec.Client.Static.Scan();
    26         }
    27     }
    28 }