├── .gitattributes ├── .gitignore ├── .vs ├── config │ └── applicationhost.config └── restore.dg ├── Icon.png ├── README.md ├── Raspberry.IO.Components ├── Class1.cs ├── Clocks │ └── Ds1307Connection.cs ├── Controllers │ ├── HT16K33 │ │ └── HT16K33Connection.cs │ ├── Pca9685 │ │ ├── IPwmDevice.cs │ │ ├── Pca9685Connection.cs │ │ └── PwmChannel.cs │ └── Tlc59711 │ │ ├── ExtensionMethods │ │ └── ByteExtensionMethods.cs │ │ ├── IPwmChannels.cs │ │ ├── IPwmDevice.cs │ │ ├── ITlc59711Cluster.cs │ │ ├── ITlc59711Connection.cs │ │ ├── ITlc59711Device.cs │ │ ├── ITlc59711Settings.cs │ │ ├── Tlc59711Channels.cs │ │ ├── Tlc59711Cluster.cs │ │ ├── Tlc59711ClusterChannels.cs │ │ ├── Tlc59711Connection.cs │ │ ├── Tlc59711Device.cs │ │ └── Tlc59711Settings.cs ├── Converters │ ├── Mcp3002 │ │ ├── Mcp3002AnalogPinExtensionMethods.cs │ │ ├── Mcp3002Channel.cs │ │ ├── Mcp3002InputAnalogPin.cs │ │ └── Mcp3002SpiConnection.cs │ ├── Mcp3008 │ │ ├── Mcp3008AnalogPinExtensionMethods.cs │ │ ├── Mcp3008Channel.cs │ │ ├── Mcp3008InputAnalogPin.cs │ │ └── Mcp3008SpiConnection.cs │ ├── Mcp3208 │ │ ├── Mcp3208AnalogPinExtensionMethods.cs │ │ ├── Mcp3208Channel.cs │ │ ├── Mcp3208InputAnalogPin.cs │ │ └── Mcp3208SpiConnection.cs │ └── Mcp4822 │ │ ├── Mcp4822AnalogPinExtensionMethods.cs │ │ ├── Mcp4822Channel.cs │ │ ├── Mcp4822OutputAnalogPin.cs │ │ └── Mcp4822SpiConnection.cs ├── Devices │ └── PiFaceDigital │ │ ├── InputPinChangedArgs.cs │ │ ├── InputPinChangedHandler.cs │ │ ├── PiFaceDigitalDevice.cs │ │ ├── PiFaceInputPin.cs │ │ ├── PiFaceOutputPin.cs │ │ └── PiFacePin.cs ├── Displays │ ├── Hd44780 │ │ ├── Command.cs │ │ ├── CursorShiftFlags.cs │ │ ├── DisplayFlags.cs │ │ ├── EntryModeFlags.cs │ │ ├── Functions.cs │ │ ├── Hd44780A00Encoding.cs │ │ ├── Hd44780LcdConnection.cs │ │ ├── Hd44780LcdConnectionSettings.cs │ │ ├── Hd44780Pins.cs │ │ └── Hd44780Position.cs │ ├── Sda5708 │ │ ├── Sda5708Brightness.cs │ │ ├── Sda5708Connection.cs │ │ └── Sda5708Font.cs │ └── Ssd1306 │ │ ├── Command.cs │ │ ├── Fonts │ │ ├── Fixed1L.cs │ │ ├── IFont.cs │ │ ├── Proportional2L.cs │ │ └── Proportional3L.cs │ │ ├── ScrollDirection.cs │ │ ├── ScrollSpeed.cs │ │ └── Ssd1306Connection.cs ├── Expanders │ ├── Mcp23008 │ │ ├── Mcp23008I2cConnection.cs │ │ ├── Mcp23008InputBinaryPin.cs │ │ ├── Mcp23008OutputBinaryPin.cs │ │ ├── Mcp23008Pin.cs │ │ ├── Mcp23008PinDirection.cs │ │ ├── Mcp23008PinExtensionMethods.cs │ │ ├── Mcp23008PinPolarity.cs │ │ └── Mcp23008PinResistor.cs │ ├── Mcp23017 │ │ ├── Mcp23017I2cConnection.cs │ │ ├── Mcp23017InputBinaryPin.cs │ │ ├── Mcp23017OutputBinaryPin.cs │ │ ├── Mcp23017Pin.cs │ │ ├── Mcp23017PinDirection.cs │ │ ├── Mcp23017PinExtensionMethods.cs │ │ ├── Mcp23017PinPolarity.cs │ │ └── Mcp23017PinResistor.cs │ └── Pcf8574 │ │ ├── Pcf8574I2cConnection.cs │ │ ├── Pcf8574InputBinaryPin.cs │ │ ├── Pcf8574OutputBinaryPin.cs │ │ ├── Pcf8574Pin.cs │ │ └── Pcf8574PinExtensionMethods.cs ├── Leds │ ├── BiColor24Bargraph │ │ └── BiColor24Bargraph.cs │ ├── GroveBar │ │ └── GroveBarConnection.cs │ └── GroveRgb │ │ ├── GroveRgbConnection.cs │ │ └── RgbColor.cs ├── Properties │ └── AssemblyInfo.cs ├── Raspberry.IO.Components.xproj ├── Sensors │ ├── Distance │ │ └── HcSr04 │ │ │ ├── HcSr04Connection.cs │ │ │ └── Units.cs │ ├── Light │ │ └── BH1750Connection.cs │ ├── Pressure │ │ └── Bmp085 │ │ │ ├── Bmp085Data.cs │ │ │ ├── Bmp085I2CConnection.cs │ │ │ ├── Bmp085I2cConnectionExtensionMethods.cs │ │ │ └── Bmp085Precision.cs │ ├── ResistiveDivider.cs │ ├── Temperature │ │ ├── Dht │ │ │ ├── Dht11Connection.cs │ │ │ ├── Dht22Connection.cs │ │ │ ├── DhtConnection.cs │ │ │ ├── DhtData.cs │ │ │ └── InvalidChecksumException.cs │ │ ├── Ds18b20 │ │ │ └── Ds18b20Connection.cs │ │ └── Tmp36 │ │ │ └── Tmp36Connection.cs │ └── VariableResistiveDividerConnection.cs ├── project.json └── project.lock.json ├── Raspberry.IO.GeneralPurpose.nuspec ├── Raspberry.IO.GeneralPurpose ├── Behaviors │ ├── BlinkBehavior.cs │ ├── ChaserBehavior.cs │ ├── PatternBehavior.cs │ ├── PinsBehavior.cs │ └── PinsBehaviorExtensionMethods.cs ├── Configuration │ └── GpioConnectionConfigurationSection.cs ├── ConnectedPin.cs ├── ConnectedPins.cs ├── ConnectorPin.cs ├── FileGpioConnectionDriver.cs ├── FileGpioHandle.cs ├── GpioBinaryPinExtensionMethods.cs ├── GpioConnection.cs ├── GpioConnectionDriver.cs ├── GpioConnectionDriverCapabilities.cs ├── GpioConnectionDriverExtensionMethods.cs ├── GpioConnectionSettings.cs ├── GpioInputBinaryPin.cs ├── GpioInputOutputBinaryPin.cs ├── GpioOutputBinaryPin.cs ├── HelperConfiguration.cs ├── HelperFileStream.cs ├── IGpioConnectionDriver.cs ├── InputPinConfiguration.cs ├── Interop.cs ├── MemoryGpioConnectionDriver.cs ├── OutputPinConfiguration.cs ├── PinConfiguration.cs ├── PinConfigurationExtensionMethods.cs ├── PinDetectedEdges.cs ├── PinDirection.cs ├── PinMapping.cs ├── PinResistor.cs ├── PinStatusEventArgs.cs ├── ProcessorPin.cs ├── ProcessorPinExtensionMethods.cs ├── ProcessorPins.cs ├── Properties │ └── AssemblyInfo.cs ├── Raspberry.IO.GeneralPurpose.xproj ├── SwitchInputPinConfiguration.cs ├── project.json └── project.lock.json ├── Raspberry.IO.InterIntegratedCircuit ├── I2cAction.cs ├── I2cDeviceConnection.cs ├── I2cDriver.cs ├── I2cReadAction.cs ├── I2cTransaction.cs ├── I2cWriteAction.cs ├── Interop.cs ├── Properties │ └── AssemblyInfo.cs ├── Raspberry.IO.InterIntegratedCircuit.xproj ├── project.json └── project.lock.json ├── Raspberry.IO.Interop ├── ControlDevice.cs ├── EnumTypes │ ├── MemoryFlags.cs │ ├── MemoryProtection.cs │ └── UnixFileMode.cs ├── ErrNum.cs ├── Exceptions │ ├── MemoryMapFailedException.cs │ └── MemoryUnmapFailedException.cs ├── IControlDevice.cs ├── IFile.cs ├── IMemory.cs ├── ManagedMemory.cs ├── MemoryMap.cs ├── MemorySubset.cs ├── Properties │ └── AssemblyInfo.cs ├── Raspberry.IO.Interop.xproj ├── UnixFile.cs ├── UnmanagedMemory.cs ├── project.json └── project.lock.json ├── Raspberry.IO.SerialPeripheralInterface ├── Endianness.cs ├── EnumTypes │ ├── SpiMode.cs │ └── SpiTransferMode.cs ├── Exceptions │ ├── ReadonlyTransferBufferException.cs │ ├── SendSpiMessageException.cs │ ├── SetBitsPerWordException.cs │ ├── SetMaxSpeedException.cs │ ├── SetSpiModeException.cs │ └── WriteOnlyTransferBufferException.cs ├── INativeSpiConnection.cs ├── ISpiControlDevice.cs ├── ISpiTransferBuffer.cs ├── ISpiTransferBufferCollection.cs ├── Interop │ ├── Interop.cs │ └── SpiTransferControlStructure.cs ├── NativeSpiConnection.cs ├── Properties │ └── AssemblyInfo.cs ├── Raspberry.IO.SerialPeripheralInterface.xproj ├── SpiConnection.cs ├── SpiConnectionSettings.cs ├── SpiControlDevice.cs ├── SpiSlaveSelectionContext.cs ├── SpiTransferBuffer.cs ├── SpiTransferBufferCollection.cs ├── project.json └── project.lock.json ├── Raspberry.IO ├── AnalogValue.cs ├── BinaryPinExtensionMethods.cs ├── ByteExtensionMethods.cs ├── IInputAnalogPin.cs ├── IInputBinaryPin.cs ├── IInputOutputBinaryPin.cs ├── IOutputAnalogPin.cs ├── IOutputBinaryPin.cs ├── Properties │ └── AssemblyInfo.cs ├── Raspberry.IO.xproj ├── StringExtensionMethods.cs ├── project.json └── project.lock.json ├── Raspberry.System ├── AssemblyInfo.cs ├── Board.cs ├── ConnectorPinout.cs ├── Model.cs ├── Processor.cs ├── Raspberry.System.xproj ├── Timers │ ├── HighResolutionTimer.cs │ ├── ITimer.cs │ ├── Interop.cs │ ├── StandardTimer.cs │ ├── TimeSpanUtility.cs │ └── Timer.cs ├── project.json └── project.lock.json ├── RaspberrySharp.IO.sln ├── SharedAssemblyInfo.cs ├── Tests ├── Test.Board │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test.Board.csproj ├── Test.Components.BiColor24Bargraph │ └── Program.cs ├── Test.Components.PiFaceDigital │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test.Components.PiFaceDigital.csproj ├── Test.Components.Ssd1306 │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test.Components.Ssd1306.csproj ├── Test.Gpio.Chaser │ ├── CommandLineExtensionMethods.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Test.Gpio.Chaser.fzz │ │ └── Test.Gpio.Chaser.png │ └── Test.Gpio.Chaser.csproj ├── Test.Gpio.DHT11 │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Test.Gpio.DHT11.csproj │ └── packages.config ├── Test.Gpio.Ds1307 │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test.Gpio.Ds1307.csproj ├── Test.Gpio.HCSR04 │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Test.Gpio.HCSR04.fzz │ │ └── Test.Gpio.HCSR04.png │ ├── Test.Gpio.HCSR04.csproj │ └── packages.config ├── Test.Gpio.HD44780 │ ├── ConfigurationLoader.cs │ ├── Hd44780Configuration.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Test.Gpio.HD44780.fzz │ │ └── Test.Gpio.HD44780.png │ └── Test.Gpio.HD44780.csproj ├── Test.Gpio.MCP23008 │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test.Gpio.MCP23008.csproj ├── Test.Gpio.MCP23017 │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Test.Gpio.MCP23017.fzz │ │ └── Test.Gpio.MCP23017.png │ └── Test.Gpio.MCP23017.csproj ├── Test.Gpio.MCP3008 │ ├── Convert.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Test.Gpio.MCP3008.fzz │ │ └── Test.Gpio.MCP3008.png │ ├── Test.Gpio.MCP3008.csproj │ └── packages.config ├── Test.Gpio.MCP4822 │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test.Gpio.MCP4822.csproj ├── Test.Gpio.Pca9685 │ ├── PCA9685Options.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Test.Gpio.Pca9685.csproj │ ├── app.config │ └── packages.config ├── Test.Gpio.WatchPin │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test.Gpio.WatchPin.csproj ├── Test.Spi.MCP3208 │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test.Spi.MCP3208.csproj └── Test.Spi.TLC59711 │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Test.Spi.TLC59711.csproj └── UnitTests ├── Tests.Raspberry.IO.Components ├── Controllers │ └── Tlc59711 │ │ └── Tlc59711DeviceSpecs.cs ├── Properties │ └── AssemblyInfo.cs ├── Tests.Raspberry.IO.Components.csproj └── packages.config ├── Tests.Raspberry.IO.Interop ├── MemorySubsetSpecs.cs ├── Properties │ └── AssemblyInfo.cs ├── Tests.Raspberry.IO.Interop.csproj └── packages.config ├── Tests.Raspberry.IO.SerialPeripheralInterface ├── Interop │ └── InteropSpec.cs ├── NativeSpiConnectionSpecs.cs ├── Properties │ └── AssemblyInfo.cs ├── SpiTransferBufferSpecs.cs ├── Tests.Raspberry.IO.SerialPeripheralInterface.csproj ├── Tests.Raspberry.IO.SerialPeripheralInterface.csproj.DotSettings └── packages.config └── Tests.Raspberry.IO ├── Properties └── AssemblyInfo.cs ├── Spec.cs ├── Tests.Raspberry.IO.csproj ├── Tests.Raspberry.IO.csproj.DotSettings └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/restore.dg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/.vs/restore.dg -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Icon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/README.md -------------------------------------------------------------------------------- /Raspberry.IO.Components/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Class1.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Clocks/Ds1307Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Clocks/Ds1307Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/HT16K33/HT16K33Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/HT16K33/HT16K33Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Pca9685/IPwmDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Pca9685/IPwmDevice.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Pca9685/Pca9685Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Pca9685/Pca9685Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Pca9685/PwmChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Pca9685/PwmChannel.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/ExtensionMethods/ByteExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/ExtensionMethods/ByteExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/IPwmChannels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/IPwmChannels.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/IPwmDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/IPwmDevice.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/ITlc59711Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/ITlc59711Cluster.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/ITlc59711Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/ITlc59711Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/ITlc59711Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/ITlc59711Device.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/ITlc59711Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/ITlc59711Settings.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Channels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Channels.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Cluster.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711ClusterChannels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711ClusterChannels.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Device.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711Settings.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3002/Mcp3002AnalogPinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3002/Mcp3002AnalogPinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3002/Mcp3002Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3002/Mcp3002Channel.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3002/Mcp3002InputAnalogPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3002/Mcp3002InputAnalogPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3002/Mcp3002SpiConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3002/Mcp3002SpiConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3008/Mcp3008AnalogPinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3008/Mcp3008AnalogPinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3008/Mcp3008Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3008/Mcp3008Channel.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3008/Mcp3008InputAnalogPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3008/Mcp3008InputAnalogPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3008/Mcp3008SpiConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3008/Mcp3008SpiConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3208/Mcp3208AnalogPinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3208/Mcp3208AnalogPinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3208/Mcp3208Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3208/Mcp3208Channel.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3208/Mcp3208InputAnalogPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3208/Mcp3208InputAnalogPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp3208/Mcp3208SpiConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp3208/Mcp3208SpiConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp4822/Mcp4822AnalogPinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp4822/Mcp4822AnalogPinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp4822/Mcp4822Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp4822/Mcp4822Channel.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp4822/Mcp4822OutputAnalogPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp4822/Mcp4822OutputAnalogPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Converters/Mcp4822/Mcp4822SpiConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Converters/Mcp4822/Mcp4822SpiConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Devices/PiFaceDigital/InputPinChangedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Devices/PiFaceDigital/InputPinChangedArgs.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Devices/PiFaceDigital/InputPinChangedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Devices/PiFaceDigital/InputPinChangedHandler.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Devices/PiFaceDigital/PiFaceDigitalDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Devices/PiFaceDigital/PiFaceDigitalDevice.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Devices/PiFaceDigital/PiFaceInputPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Devices/PiFaceDigital/PiFaceInputPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Devices/PiFaceDigital/PiFaceOutputPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Devices/PiFaceDigital/PiFaceOutputPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Devices/PiFaceDigital/PiFacePin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Devices/PiFaceDigital/PiFacePin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/Command.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/CursorShiftFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/CursorShiftFlags.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/DisplayFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/DisplayFlags.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/EntryModeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/EntryModeFlags.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/Functions.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/Hd44780A00Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/Hd44780A00Encoding.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/Hd44780LcdConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/Hd44780LcdConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/Hd44780LcdConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/Hd44780LcdConnectionSettings.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/Hd44780Pins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/Hd44780Pins.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Hd44780/Hd44780Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Hd44780/Hd44780Position.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Sda5708/Sda5708Brightness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Sda5708/Sda5708Brightness.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Sda5708/Sda5708Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Sda5708/Sda5708Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Sda5708/Sda5708Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Sda5708/Sda5708Font.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Ssd1306/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Ssd1306/Command.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Ssd1306/Fonts/Fixed1L.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Ssd1306/Fonts/Fixed1L.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Ssd1306/Fonts/IFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Ssd1306/Fonts/IFont.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Ssd1306/Fonts/Proportional2L.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Ssd1306/Fonts/Proportional2L.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Ssd1306/Fonts/Proportional3L.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Ssd1306/Fonts/Proportional3L.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Ssd1306/ScrollDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Ssd1306/ScrollDirection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Ssd1306/ScrollSpeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Ssd1306/ScrollSpeed.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Displays/Ssd1306/Ssd1306Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Displays/Ssd1306/Ssd1306Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008I2cConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008I2cConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008InputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008InputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008OutputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008OutputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008Pin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008Pin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008PinDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008PinDirection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008PinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008PinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008PinPolarity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008PinPolarity.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008PinResistor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23008/Mcp23008PinResistor.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017I2cConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017I2cConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017InputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017InputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017OutputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017OutputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017Pin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017Pin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017PinDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017PinDirection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017PinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017PinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017PinPolarity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017PinPolarity.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017PinResistor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Mcp23017/Mcp23017PinResistor.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574I2cConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574I2cConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574InputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574InputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574OutputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574OutputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574Pin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574Pin.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574PinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Expanders/Pcf8574/Pcf8574PinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Leds/BiColor24Bargraph/BiColor24Bargraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Leds/BiColor24Bargraph/BiColor24Bargraph.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Leds/GroveBar/GroveBarConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Leds/GroveBar/GroveBarConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Leds/GroveRgb/GroveRgbConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Leds/GroveRgb/GroveRgbConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Leds/GroveRgb/RgbColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Leds/GroveRgb/RgbColor.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Raspberry.IO.Components.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Raspberry.IO.Components.xproj -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Distance/HcSr04/HcSr04Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Distance/HcSr04/HcSr04Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Distance/HcSr04/Units.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Distance/HcSr04/Units.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Light/BH1750Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Light/BH1750Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Pressure/Bmp085/Bmp085Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Pressure/Bmp085/Bmp085Data.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Pressure/Bmp085/Bmp085I2CConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Pressure/Bmp085/Bmp085I2CConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Pressure/Bmp085/Bmp085I2cConnectionExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Pressure/Bmp085/Bmp085I2cConnectionExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Pressure/Bmp085/Bmp085Precision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Pressure/Bmp085/Bmp085Precision.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/ResistiveDivider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/ResistiveDivider.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Temperature/Dht/Dht11Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Temperature/Dht/Dht11Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Temperature/Dht/Dht22Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Temperature/Dht/Dht22Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Temperature/Dht/DhtConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Temperature/Dht/DhtConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Temperature/Dht/DhtData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Temperature/Dht/DhtData.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Temperature/Dht/InvalidChecksumException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Temperature/Dht/InvalidChecksumException.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Temperature/Ds18b20/Ds18b20Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Temperature/Ds18b20/Ds18b20Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/Temperature/Tmp36/Tmp36Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/Temperature/Tmp36/Tmp36Connection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/Sensors/VariableResistiveDividerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/Sensors/VariableResistiveDividerConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Components/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/project.json -------------------------------------------------------------------------------- /Raspberry.IO.Components/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Components/project.lock.json -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose.nuspec -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/Behaviors/BlinkBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/Behaviors/BlinkBehavior.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/Behaviors/ChaserBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/Behaviors/ChaserBehavior.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/Behaviors/PatternBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/Behaviors/PatternBehavior.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/Behaviors/PinsBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/Behaviors/PinsBehavior.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/Behaviors/PinsBehaviorExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/Behaviors/PinsBehaviorExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/Configuration/GpioConnectionConfigurationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/Configuration/GpioConnectionConfigurationSection.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/ConnectedPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/ConnectedPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/ConnectedPins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/ConnectedPins.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/ConnectorPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/ConnectorPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/FileGpioConnectionDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/FileGpioConnectionDriver.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/FileGpioHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/FileGpioHandle.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/GpioBinaryPinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/GpioBinaryPinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/GpioConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/GpioConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/GpioConnectionDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/GpioConnectionDriver.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/GpioConnectionDriverCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/GpioConnectionDriverCapabilities.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/GpioConnectionDriverExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/GpioConnectionDriverExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/GpioConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/GpioConnectionSettings.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/GpioInputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/GpioInputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/GpioInputOutputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/GpioInputOutputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/GpioOutputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/GpioOutputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/HelperConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/HelperConfiguration.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/HelperFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/HelperFileStream.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/IGpioConnectionDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/IGpioConnectionDriver.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/InputPinConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/InputPinConfiguration.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/Interop.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/MemoryGpioConnectionDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/MemoryGpioConnectionDriver.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/OutputPinConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/OutputPinConfiguration.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/PinConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/PinConfiguration.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/PinConfigurationExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/PinConfigurationExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/PinDetectedEdges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/PinDetectedEdges.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/PinDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/PinDirection.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/PinMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/PinMapping.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/PinResistor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/PinResistor.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/PinStatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/PinStatusEventArgs.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/ProcessorPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/ProcessorPin.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/ProcessorPinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/ProcessorPinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/ProcessorPins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/ProcessorPins.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/Raspberry.IO.GeneralPurpose.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/Raspberry.IO.GeneralPurpose.xproj -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/SwitchInputPinConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/SwitchInputPinConfiguration.cs -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/project.json -------------------------------------------------------------------------------- /Raspberry.IO.GeneralPurpose/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.GeneralPurpose/project.lock.json -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/I2cAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/I2cAction.cs -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/I2cDeviceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/I2cDeviceConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/I2cDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/I2cDriver.cs -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/I2cReadAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/I2cReadAction.cs -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/I2cTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/I2cTransaction.cs -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/I2cWriteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/I2cWriteAction.cs -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/Interop.cs -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/Raspberry.IO.InterIntegratedCircuit.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/Raspberry.IO.InterIntegratedCircuit.xproj -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/project.json -------------------------------------------------------------------------------- /Raspberry.IO.InterIntegratedCircuit/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.InterIntegratedCircuit/project.lock.json -------------------------------------------------------------------------------- /Raspberry.IO.Interop/ControlDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/ControlDevice.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/EnumTypes/MemoryFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/EnumTypes/MemoryFlags.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/EnumTypes/MemoryProtection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/EnumTypes/MemoryProtection.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/EnumTypes/UnixFileMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/EnumTypes/UnixFileMode.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/ErrNum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/ErrNum.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/Exceptions/MemoryMapFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/Exceptions/MemoryMapFailedException.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/Exceptions/MemoryUnmapFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/Exceptions/MemoryUnmapFailedException.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/IControlDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/IControlDevice.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/IFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/IFile.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/IMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/IMemory.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/ManagedMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/ManagedMemory.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/MemoryMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/MemoryMap.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/MemorySubset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/MemorySubset.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/Raspberry.IO.Interop.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/Raspberry.IO.Interop.xproj -------------------------------------------------------------------------------- /Raspberry.IO.Interop/UnixFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/UnixFile.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/UnmanagedMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/UnmanagedMemory.cs -------------------------------------------------------------------------------- /Raspberry.IO.Interop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/project.json -------------------------------------------------------------------------------- /Raspberry.IO.Interop/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.Interop/project.lock.json -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Endianness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Endianness.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/EnumTypes/SpiMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/EnumTypes/SpiMode.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/EnumTypes/SpiTransferMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/EnumTypes/SpiTransferMode.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Exceptions/ReadonlyTransferBufferException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Exceptions/ReadonlyTransferBufferException.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Exceptions/SendSpiMessageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Exceptions/SendSpiMessageException.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Exceptions/SetBitsPerWordException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Exceptions/SetBitsPerWordException.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Exceptions/SetMaxSpeedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Exceptions/SetMaxSpeedException.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Exceptions/SetSpiModeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Exceptions/SetSpiModeException.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Exceptions/WriteOnlyTransferBufferException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Exceptions/WriteOnlyTransferBufferException.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/INativeSpiConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/INativeSpiConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/ISpiControlDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/ISpiControlDevice.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/ISpiTransferBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/ISpiTransferBuffer.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/ISpiTransferBufferCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/ISpiTransferBufferCollection.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Interop/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Interop/Interop.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Interop/SpiTransferControlStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Interop/SpiTransferControlStructure.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/NativeSpiConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/NativeSpiConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/Raspberry.IO.SerialPeripheralInterface.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/Raspberry.IO.SerialPeripheralInterface.xproj -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/SpiConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/SpiConnection.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/SpiConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/SpiConnectionSettings.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/SpiControlDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/SpiControlDevice.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/SpiSlaveSelectionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/SpiSlaveSelectionContext.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/SpiTransferBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/SpiTransferBuffer.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/SpiTransferBufferCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/SpiTransferBufferCollection.cs -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/project.json -------------------------------------------------------------------------------- /Raspberry.IO.SerialPeripheralInterface/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO.SerialPeripheralInterface/project.lock.json -------------------------------------------------------------------------------- /Raspberry.IO/AnalogValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/AnalogValue.cs -------------------------------------------------------------------------------- /Raspberry.IO/BinaryPinExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/BinaryPinExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO/ByteExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/ByteExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO/IInputAnalogPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/IInputAnalogPin.cs -------------------------------------------------------------------------------- /Raspberry.IO/IInputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/IInputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO/IInputOutputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/IInputOutputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO/IOutputAnalogPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/IOutputAnalogPin.cs -------------------------------------------------------------------------------- /Raspberry.IO/IOutputBinaryPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/IOutputBinaryPin.cs -------------------------------------------------------------------------------- /Raspberry.IO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Raspberry.IO/Raspberry.IO.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/Raspberry.IO.xproj -------------------------------------------------------------------------------- /Raspberry.IO/StringExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/StringExtensionMethods.cs -------------------------------------------------------------------------------- /Raspberry.IO/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/project.json -------------------------------------------------------------------------------- /Raspberry.IO/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.IO/project.lock.json -------------------------------------------------------------------------------- /Raspberry.System/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/AssemblyInfo.cs -------------------------------------------------------------------------------- /Raspberry.System/Board.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Board.cs -------------------------------------------------------------------------------- /Raspberry.System/ConnectorPinout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/ConnectorPinout.cs -------------------------------------------------------------------------------- /Raspberry.System/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Model.cs -------------------------------------------------------------------------------- /Raspberry.System/Processor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Processor.cs -------------------------------------------------------------------------------- /Raspberry.System/Raspberry.System.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Raspberry.System.xproj -------------------------------------------------------------------------------- /Raspberry.System/Timers/HighResolutionTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Timers/HighResolutionTimer.cs -------------------------------------------------------------------------------- /Raspberry.System/Timers/ITimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Timers/ITimer.cs -------------------------------------------------------------------------------- /Raspberry.System/Timers/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Timers/Interop.cs -------------------------------------------------------------------------------- /Raspberry.System/Timers/StandardTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Timers/StandardTimer.cs -------------------------------------------------------------------------------- /Raspberry.System/Timers/TimeSpanUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Timers/TimeSpanUtility.cs -------------------------------------------------------------------------------- /Raspberry.System/Timers/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/Timers/Timer.cs -------------------------------------------------------------------------------- /Raspberry.System/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/project.json -------------------------------------------------------------------------------- /Raspberry.System/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Raspberry.System/project.lock.json -------------------------------------------------------------------------------- /RaspberrySharp.IO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/RaspberrySharp.IO.sln -------------------------------------------------------------------------------- /SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Board/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Board/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Board/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Board/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Board/Test.Board.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Board/Test.Board.csproj -------------------------------------------------------------------------------- /Tests/Test.Components.BiColor24Bargraph/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Components.BiColor24Bargraph/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Components.PiFaceDigital/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Components.PiFaceDigital/App.config -------------------------------------------------------------------------------- /Tests/Test.Components.PiFaceDigital/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Components.PiFaceDigital/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Components.PiFaceDigital/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Components.PiFaceDigital/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Components.PiFaceDigital/Test.Components.PiFaceDigital.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Components.PiFaceDigital/Test.Components.PiFaceDigital.csproj -------------------------------------------------------------------------------- /Tests/Test.Components.Ssd1306/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Components.Ssd1306/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Components.Ssd1306/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Components.Ssd1306/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Components.Ssd1306/Test.Components.Ssd1306.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Components.Ssd1306/Test.Components.Ssd1306.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.Chaser/CommandLineExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Chaser/CommandLineExtensionMethods.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.Chaser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Chaser/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.Chaser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Chaser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.Chaser/Properties/Test.Gpio.Chaser.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Chaser/Properties/Test.Gpio.Chaser.fzz -------------------------------------------------------------------------------- /Tests/Test.Gpio.Chaser/Properties/Test.Gpio.Chaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Chaser/Properties/Test.Gpio.Chaser.png -------------------------------------------------------------------------------- /Tests/Test.Gpio.Chaser/Test.Gpio.Chaser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Chaser/Test.Gpio.Chaser.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.DHT11/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.DHT11/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.DHT11/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.DHT11/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.DHT11/Test.Gpio.DHT11.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.DHT11/Test.Gpio.DHT11.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.DHT11/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.DHT11/packages.config -------------------------------------------------------------------------------- /Tests/Test.Gpio.Ds1307/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Ds1307/App.config -------------------------------------------------------------------------------- /Tests/Test.Gpio.Ds1307/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Ds1307/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.Ds1307/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Ds1307/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.Ds1307/Test.Gpio.Ds1307.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Ds1307/Test.Gpio.Ds1307.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.HCSR04/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HCSR04/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.HCSR04/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HCSR04/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.HCSR04/Properties/Test.Gpio.HCSR04.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HCSR04/Properties/Test.Gpio.HCSR04.fzz -------------------------------------------------------------------------------- /Tests/Test.Gpio.HCSR04/Properties/Test.Gpio.HCSR04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HCSR04/Properties/Test.Gpio.HCSR04.png -------------------------------------------------------------------------------- /Tests/Test.Gpio.HCSR04/Test.Gpio.HCSR04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HCSR04/Test.Gpio.HCSR04.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.HCSR04/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HCSR04/packages.config -------------------------------------------------------------------------------- /Tests/Test.Gpio.HD44780/ConfigurationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HD44780/ConfigurationLoader.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.HD44780/Hd44780Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HD44780/Hd44780Configuration.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.HD44780/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HD44780/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.HD44780/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HD44780/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.HD44780/Properties/Test.Gpio.HD44780.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HD44780/Properties/Test.Gpio.HD44780.fzz -------------------------------------------------------------------------------- /Tests/Test.Gpio.HD44780/Properties/Test.Gpio.HD44780.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HD44780/Properties/Test.Gpio.HD44780.png -------------------------------------------------------------------------------- /Tests/Test.Gpio.HD44780/Test.Gpio.HD44780.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.HD44780/Test.Gpio.HD44780.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP23008/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP23008/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP23008/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP23008/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP23008/Test.Gpio.MCP23008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP23008/Test.Gpio.MCP23008.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP23017/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP23017/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP23017/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP23017/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP23017/Properties/Test.Gpio.MCP23017.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP23017/Properties/Test.Gpio.MCP23017.fzz -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP23017/Properties/Test.Gpio.MCP23017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP23017/Properties/Test.Gpio.MCP23017.png -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP23017/Test.Gpio.MCP23017.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP23017/Test.Gpio.MCP23017.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP3008/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP3008/Convert.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP3008/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP3008/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP3008/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP3008/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP3008/Properties/Test.Gpio.MCP3008.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP3008/Properties/Test.Gpio.MCP3008.fzz -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP3008/Properties/Test.Gpio.MCP3008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP3008/Properties/Test.Gpio.MCP3008.png -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP3008/Test.Gpio.MCP3008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP3008/Test.Gpio.MCP3008.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP3008/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP3008/packages.config -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP4822/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP4822/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP4822/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP4822/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.MCP4822/Test.Gpio.MCP4822.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.MCP4822/Test.Gpio.MCP4822.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.Pca9685/PCA9685Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Pca9685/PCA9685Options.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.Pca9685/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Pca9685/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.Pca9685/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Pca9685/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.Pca9685/Test.Gpio.Pca9685.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Pca9685/Test.Gpio.Pca9685.csproj -------------------------------------------------------------------------------- /Tests/Test.Gpio.Pca9685/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Pca9685/app.config -------------------------------------------------------------------------------- /Tests/Test.Gpio.Pca9685/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.Pca9685/packages.config -------------------------------------------------------------------------------- /Tests/Test.Gpio.WatchPin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.WatchPin/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.WatchPin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.WatchPin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Gpio.WatchPin/Test.Gpio.WatchPin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Gpio.WatchPin/Test.Gpio.WatchPin.csproj -------------------------------------------------------------------------------- /Tests/Test.Spi.MCP3208/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Spi.MCP3208/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Spi.MCP3208/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Spi.MCP3208/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Spi.MCP3208/Test.Spi.MCP3208.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Spi.MCP3208/Test.Spi.MCP3208.csproj -------------------------------------------------------------------------------- /Tests/Test.Spi.TLC59711/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Spi.TLC59711/Program.cs -------------------------------------------------------------------------------- /Tests/Test.Spi.TLC59711/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Spi.TLC59711/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test.Spi.TLC59711/Test.Spi.TLC59711.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/Tests/Test.Spi.TLC59711/Test.Spi.TLC59711.csproj -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711DeviceSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.Components/Controllers/Tlc59711/Tlc59711DeviceSpecs.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.Components/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.Components/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.Components/Tests.Raspberry.IO.Components.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.Components/Tests.Raspberry.IO.Components.csproj -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.Components/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.Components/packages.config -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.Interop/MemorySubsetSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.Interop/MemorySubsetSpecs.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.Interop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.Interop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.Interop/Tests.Raspberry.IO.Interop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.Interop/Tests.Raspberry.IO.Interop.csproj -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.Interop/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.Interop/packages.config -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/Interop/InteropSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/Interop/InteropSpec.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/NativeSpiConnectionSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/NativeSpiConnectionSpecs.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/SpiTransferBufferSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/SpiTransferBufferSpecs.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/Tests.Raspberry.IO.SerialPeripheralInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/Tests.Raspberry.IO.SerialPeripheralInterface.csproj -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/Tests.Raspberry.IO.SerialPeripheralInterface.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/Tests.Raspberry.IO.SerialPeripheralInterface.csproj.DotSettings -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO.SerialPeripheralInterface/packages.config -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO/Spec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO/Spec.cs -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO/Tests.Raspberry.IO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO/Tests.Raspberry.IO.csproj -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO/Tests.Raspberry.IO.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO/Tests.Raspberry.IO.csproj.DotSettings -------------------------------------------------------------------------------- /UnitTests/Tests.Raspberry.IO/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramon-Balaguer/raspberry-sharp-io/HEAD/UnitTests/Tests.Raspberry.IO/packages.config --------------------------------------------------------------------------------