using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; namespace PepperDash.Core { /// /// Crestron Control Methods for a comm object /// public enum eControlMethod { /// /// /// None = 0, /// /// RS232/422/485 /// Com, /// /// Crestron IpId (most Crestron ethernet devices) /// IpId, /// /// Crestron IpIdTcp (HD-MD series, etc.) /// IpidTcp, /// /// Crestron IR control /// IR, /// /// SSH client /// Ssh, /// /// TCP/IP client /// Tcpip, /// /// Telnet /// Telnet, /// /// Crestnet device /// Cresnet, /// /// CEC Control, via a DM HDMI port /// Cec, /// /// UDP Server /// Udp, /// /// HTTP client /// Http, /// /// HTTPS client /// Https, /// /// Websocket client /// Ws, /// /// Secure Websocket client /// Wss, /// /// Secure TCP/IP /// SecureTcpIp } }