|
From: <an...@us...> - 2007-02-22 12:41:22
|
Revision: 134
http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=134&view=rev
Author: and-81
Date: 2007-02-22 04:41:20 -0800 (Thu, 22 Feb 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/plugins/MCEReplacementTray/MceIrApi.cs
trunk/plugins/TV3MceBlaster/MceIrApi.cs
Modified: trunk/plugins/MCEReplacementTray/MceIrApi.cs
===================================================================
--- trunk/plugins/MCEReplacementTray/MceIrApi.cs 2007-02-22 09:54:55 UTC (rev 133)
+++ trunk/plugins/MCEReplacementTray/MceIrApi.cs 2007-02-22 12:41:20 UTC (rev 134)
@@ -57,22 +57,29 @@
}
/// <summary>
- /// Speed to transmit at
+ /// Speed to transmit IR codes at
/// </summary>
public enum BlasterSpeed
{
/// <summary>
+ /// None - Do not set the blaster speed
+ /// (Note: If an IR code has been sent with a speed setting previously
+ /// then that speed setting will continue to take effect, until the
+ /// unit's power is cycled)
+ /// </summary>
+ None = 0,
+ /// <summary>
/// Fast - Set blaster speed to fast
/// </summary>
- Fast = 0,
+ Fast = 1,
/// <summary>
/// Medium - Set blaster speed to medium
/// </summary>
- Medium = 1,
+ Medium = 2,
/// <summary>
/// Slow - Set blaster speed to slow
/// </summary>
- Slow = 2
+ Slow = 3,
}
/// <summary>
Modified: trunk/plugins/TV3MceBlaster/MceIrApi.cs
===================================================================
--- trunk/plugins/TV3MceBlaster/MceIrApi.cs 2007-02-22 09:54:55 UTC (rev 133)
+++ trunk/plugins/TV3MceBlaster/MceIrApi.cs 2007-02-22 12:41:20 UTC (rev 134)
@@ -57,22 +57,29 @@
}
/// <summary>
- /// Speed to transmit at
+ /// Speed to transmit IR codes at
/// </summary>
public enum BlasterSpeed
{
/// <summary>
+ /// None - Do not set the blaster speed
+ /// (Note: If an IR code has been sent with a speed setting previously
+ /// then that speed setting will continue to take effect, until the
+ /// unit's power is cycled)
+ /// </summary>
+ None = 0,
+ /// <summary>
/// Fast - Set blaster speed to fast
/// </summary>
- Fast = 0,
+ Fast = 1,
/// <summary>
/// Medium - Set blaster speed to medium
/// </summary>
- Medium = 1,
+ Medium = 2,
/// <summary>
/// Slow - Set blaster speed to slow
/// </summary>
- Slow = 2
+ Slow = 3,
}
/// <summary>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|