coding Styles

This commit is contained in:
BlubbFish 2019-12-09 17:26:54 +01:00
parent 3eb4f3a4ac
commit 2f1d949dcc

View File

@ -7,44 +7,44 @@ namespace Unosquare.RaspberryIO.Abstractions {
/// </summary> /// </summary>
/// <seealso cref="System.Collections.Generic.IReadOnlyCollection{IGpioPin}" /> /// <seealso cref="System.Collections.Generic.IReadOnlyCollection{IGpioPin}" />
public interface IGpioController : IReadOnlyCollection<IGpioPin> { public interface IGpioController : IReadOnlyCollection<IGpioPin> {
/// <summary> /// <summary>
/// Gets the <see cref="IGpioPin"/> with the specified BCM pin. /// Gets the <see cref="IGpioPin"/> with the specified BCM pin.
/// </summary> /// </summary>
/// <value> /// <value>
/// The <see cref="IGpioPin"/>. /// The <see cref="IGpioPin"/>.
/// </value> /// </value>
/// <param name="bcmPinNumber">The BCM pin number.</param> /// <param name="bcmPinNumber">The BCM pin number.</param>
/// <returns>A reference to the GPIO pin.</returns> /// <returns>A reference to the GPIO pin.</returns>
IGpioPin this[Int32 bcmPinNumber] { get; } IGpioPin this[Int32 bcmPinNumber] { get; }
/// <summary> /// <summary>
/// Gets the <see cref="IGpioPin"/> with the specified BCM pin. /// Gets the <see cref="IGpioPin"/> with the specified BCM pin.
/// </summary> /// </summary>
/// <value> /// <value>
/// The <see cref="IGpioPin"/>. /// The <see cref="IGpioPin"/>.
/// </value> /// </value>
/// <param name="bcmPin">The BCM pin.</param> /// <param name="bcmPin">The BCM pin.</param>
/// <returns>A reference to the GPIO pin.</returns> /// <returns>A reference to the GPIO pin.</returns>
IGpioPin this[BcmPin bcmPin] { get; } IGpioPin this[BcmPin bcmPin] { get; }
/// <summary> /// <summary>
/// Gets the <see cref="IGpioPin"/> with the specified pin number. /// Gets the <see cref="IGpioPin"/> with the specified pin number.
/// </summary> /// </summary>
/// <value> /// <value>
/// The <see cref="IGpioPin"/>. /// The <see cref="IGpioPin"/>.
/// </value> /// </value>
/// <param name="pinNumber">The pin number in header P1.</param> /// <param name="pinNumber">The pin number in header P1.</param>
/// <returns>A reference to the GPIO pin.</returns> /// <returns>A reference to the GPIO pin.</returns>
IGpioPin this[P1 pinNumber] { get; } IGpioPin this[P1 pinNumber] { get; }
/// <summary> /// <summary>
/// Gets the <see cref="IGpioPin"/> with the specified pin number. /// Gets the <see cref="IGpioPin"/> with the specified pin number.
/// </summary> /// </summary>
/// <value> /// <value>
/// The <see cref="IGpioPin"/>. /// The <see cref="IGpioPin"/>.
/// </value> /// </value>
/// <param name="pinNumber">The pin number in header P5.</param> /// <param name="pinNumber">The pin number in header P5.</param>
/// <returns>A reference to the GPIO pin.</returns> /// <returns>A reference to the GPIO pin.</returns>
IGpioPin this[P5 pinNumber] { get; } IGpioPin this[P5 pinNumber] { get; }
} }
} }