From 2f1d949dcc6a7019b09fbcee267d09b2ef7b81d5 Mon Sep 17 00:00:00 2001 From: BlubbFish Date: Mon, 9 Dec 2019 17:26:54 +0100 Subject: [PATCH] coding Styles --- .../IGpioController.cs | 82 +++++++++---------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/Unosquare.RaspberryIO.Abstractions/IGpioController.cs b/Unosquare.RaspberryIO.Abstractions/IGpioController.cs index f78c737..95e8fb0 100644 --- a/Unosquare.RaspberryIO.Abstractions/IGpioController.cs +++ b/Unosquare.RaspberryIO.Abstractions/IGpioController.cs @@ -6,45 +6,45 @@ namespace Unosquare.RaspberryIO.Abstractions { /// Interface for Raspberry Pi GPIO controller. /// /// - public interface IGpioController : IReadOnlyCollection { - /// - /// Gets the with the specified BCM pin. - /// - /// - /// The . - /// - /// The BCM pin number. - /// A reference to the GPIO pin. - IGpioPin this[Int32 bcmPinNumber] { get; } - - /// - /// Gets the with the specified BCM pin. - /// - /// - /// The . - /// - /// The BCM pin. - /// A reference to the GPIO pin. - IGpioPin this[BcmPin bcmPin] { get; } - - /// - /// Gets the with the specified pin number. - /// - /// - /// The . - /// - /// The pin number in header P1. - /// A reference to the GPIO pin. - IGpioPin this[P1 pinNumber] { get; } - - /// - /// Gets the with the specified pin number. - /// - /// - /// The . - /// - /// The pin number in header P5. - /// A reference to the GPIO pin. - IGpioPin this[P5 pinNumber] { get; } - } + public interface IGpioController : IReadOnlyCollection { + /// + /// Gets the with the specified BCM pin. + /// + /// + /// The . + /// + /// The BCM pin number. + /// A reference to the GPIO pin. + IGpioPin this[Int32 bcmPinNumber] { get; } + + /// + /// Gets the with the specified BCM pin. + /// + /// + /// The . + /// + /// The BCM pin. + /// A reference to the GPIO pin. + IGpioPin this[BcmPin bcmPin] { get; } + + /// + /// Gets the with the specified pin number. + /// + /// + /// The . + /// + /// The pin number in header P1. + /// A reference to the GPIO pin. + IGpioPin this[P1 pinNumber] { get; } + + /// + /// Gets the with the specified pin number. + /// + /// + /// The . + /// + /// The pin number in header P5. + /// A reference to the GPIO pin. + IGpioPin this[P5 pinNumber] { get; } + } }