From a2fdb7937977f9090ca311af2e14afc404725383 Mon Sep 17 00:00:00 2001 From: Generoso Martello Date: Fri, 7 Dec 2018 00:11:22 +0100 Subject: [PATCH] Updated README.md file --- CM19Lib/Cm19Manager.cs | 2 +- Examples/cm19send/Program.cs | 2 +- README.md | 12 +++++++----- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CM19Lib/Cm19Manager.cs b/CM19Lib/Cm19Manager.cs index 11ba01d..69ecae3 100644 --- a/CM19Lib/Cm19Manager.cs +++ b/CM19Lib/Cm19Manager.cs @@ -116,7 +116,7 @@ public class Cm19Manager public event X10SecurityReceivedEventHandler RfSecurityReceived; /// - /// Occurs when x10 PTZ camera command is received. + /// Occurs when x10 PT camera command is received. /// public event X10CommandReceivedEventHandler RfCameraReceived; diff --git a/Examples/cm19send/Program.cs b/Examples/cm19send/Program.cs index 40a6aec..df36163 100644 --- a/Examples/cm19send/Program.cs +++ b/Examples/cm19send/Program.cs @@ -45,7 +45,7 @@ public static void Main(string[] args) Console.WriteLine(" mono cm19send.exe A1+ A2+ A3- A- A+\n"); Console.WriteLine(" Will turn ON A1 and A2, OFF A3 and then it will"); Console.WriteLine(" send a DIM and BRIGHT command (to house code A).\n"); - Console.WriteLine("Example of sending PTZ camera commands:\n"); + Console.WriteLine("Example of sending PT camera commands:\n"); Console.WriteLine(" mono cm19send.exe AU AL BD BR\n"); Console.WriteLine(" Will move camera with house code A UP and LEFT"); Console.WriteLine(" and the camera with house code B DOWN and RIGHT.\n"); diff --git a/README.md b/README.md index 0c3ffe4..b202f32 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,12 @@ ## Features +- Supports sending and receiving of following X10 RF messages: + - **Standard** module commands (On, Off, Dim, Bright, AllLightsOn, AllUnitsOff) + - **Camera** pan/tilt commands (Left, Right, Up, Down) + - **Security** sensors (Motion and door/window sensors, security remotes) - Event driven -- Hot plug -- Automatically restabilish connection on error/disconnect -- Compatible with Mono +- Hot plug and automatic re-connection on error ## Prerequisites @@ -75,7 +77,7 @@ the **+** (**ON**) or **-** (**OFF**) symbol. If no unit code is provided the **+** will perform a **BRIGHT** command or a **DIM** command in case the **-** symbol is used (eg. *+A* or -*A-*). -An X10 PTZ camera command starts with the house code followed by one of the following: +An X10 PT camera command starts with the house code followed by one of the following: **U** for up, **L** for left, **D** for down and **R** for right. ## Example code @@ -112,7 +114,7 @@ cm19.AllUnitsOff(HouseCode.A); // Alternative way of sending standard X10 commands cm19.SendCommand(HouseCode.E, UnitCode.Unit_12, Command.On); -// Sending PTZ camera commands +// Sending PT camera commands cm19.SendCameraCommand(HouseCode.A, Command.CameraDown); cm19.SendCameraCommand(HouseCode.A, Command.CameraLeft);