Server/Actions/ActionCecScan.cs
author StephaneLenclud
Wed, 27 Jul 2016 11:07:35 +0200
changeset 222 0e8c6c2f4777
parent 214 4961ede27e0a
child 223 f6272f65d8fc
permissions -rw-r--r--
Adding send and release CEC key actions.
Edit action ComboBox now sorted and selecting proper item.
StephaneLenclud@214
     1
using CecSharp;
StephaneLenclud@214
     2
using SharpLib.Ear;
StephaneLenclud@214
     3
using System;
StephaneLenclud@214
     4
using System.Collections.Generic;
StephaneLenclud@214
     5
using System.Linq;
StephaneLenclud@214
     6
using System.Runtime.Serialization;
StephaneLenclud@214
     7
using System.Text;
StephaneLenclud@214
     8
using System.Threading.Tasks;
StephaneLenclud@214
     9
StephaneLenclud@214
    10
namespace SharpDisplayManager
StephaneLenclud@214
    11
{
StephaneLenclud@214
    12
StephaneLenclud@214
    13
    [DataContract]
StephaneLenclud@214
    14
    [AttributeAction(Id = "Cec.Scan", Name = "CEC Scan", Description = "Scan devices on your CEC HDMI network.")]
StephaneLenclud@214
    15
    class ActionCecScan : SharpLib.Ear.Action
StephaneLenclud@214
    16
    {
StephaneLenclud@214
    17
        public override void Execute()
StephaneLenclud@214
    18
        {
StephaneLenclud@214
    19
            if (Cec.Client.Static == null)
StephaneLenclud@214
    20
            {
StephaneLenclud@214
    21
                Console.WriteLine("WARNING: No CEC client installed.");
StephaneLenclud@222
    22
                return;
StephaneLenclud@214
    23
            }
StephaneLenclud@214
    24
StephaneLenclud@214
    25
            Cec.Client.Static.Scan();
StephaneLenclud@214
    26
        }
StephaneLenclud@214
    27
    }
StephaneLenclud@214
    28
}