author | StephaneLenclud |
Tue, 26 Jul 2016 11:51:50 +0200 | |
changeset 219 | 99c407831232 |
child 222 | 0e8c6c2f4777 |
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 [AttributeAction(Id = "Cec.Scan", Name = "CEC Scan", Description = "Scan devices on your CEC HDMI network.")]
15 class ActionCecScan : SharpLib.Ear.Action
16 {
17 public override void Execute()
18 {
19 if (Cec.Client.Static == null)
20 {
21 Console.WriteLine("WARNING: No CEC client installed.");
22 }
24 Cec.Client.Static.Scan();
25 }
26 }
27 }