author | StephaneLenclud |
Tue, 30 Aug 2016 21:14:18 +0200 | |
changeset 261 | e2729a990e8b |
parent 253 | 2dae7a163fff |
permissions | -rw-r--r-- |
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;
11 namespace SharpDisplayManager
12 {
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 }
26 Cec.Client.Static.Scan();
27 }
28 }
29 }