Server/Actions/ActionCecScan.cs
author StephaneLenclud
Wed, 08 Mar 2017 18:33:00 +0100
changeset 283 f18d6170a223
parent 253 2dae7a163fff
permissions -rw-r--r--
Starting renaming to HTCIC.
Setup update and test.
     1 using CecSharp;
     2 using SharpLib.Ear;
     3 using System;
     4 using System.Collections.Generic;
     5 using System.Diagnostics;
     6 using System.Linq;
     7 using System.Runtime.Serialization;
     8 using System.Text;
     9 using System.Threading.Tasks;
    10 
    11 namespace SharpDisplayManager
    12 {
    13 
    14     [DataContract]
    15     [AttributeObject(Id = "Cec.Scan", Name = "CEC Scan", Description = "Scan devices on your CEC HDMI network.")]
    16     class ActionCecScan : SharpLib.Ear.Action
    17     {
    18         protected override async Task DoExecute()
    19         {
    20             if (Cec.Client.Static == null)
    21             {
    22                 Trace.WriteLine("WARNING: No CEC client installed.");
    23                 return;
    24             }
    25 
    26             Cec.Client.Static.Scan();
    27         }
    28     }
    29 }