author | StephaneLenclud |
Thu, 18 Aug 2016 18:49:03 +0200 | |
changeset 241 | 3b5a94f31400 |
parent 228 | 6a84d8282226 |
child 253 | 2dae7a163fff |
permissions | -rw-r--r-- |
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;
10 namespace SharpDisplayManager
11 {
13 [DataContract]
14 [AttributeObject(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 }
25 Cec.Client.Static.Scan();
26 }
27 }
28 }