├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md ├── dependabot.yml ├── policies │ ├── labelManagement.issueOpened.yml │ └── resourceManagement.yml └── workflows │ ├── arduino.yml │ ├── locker.yml │ └── publish-nightly.yml ├── .gitignore ├── .markdown-link-check.json ├── .markdownlint.json ├── .markdownlintignore ├── Build.cmd ├── CODE_OF_CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── Documentation ├── CONTRIBUTING.md ├── Coding-guidelines.md ├── Devices-conventions.md ├── DiagnosticIDs.md ├── How-to-Deploy-an-IoT-App.md ├── How-to-start-your-app-automatically-on-boot-using-systemd.md ├── How-to-start-your-app-automatically-on-boot.md ├── README.md ├── creating-new-release.md ├── gpio-linux-libgpiod.md ├── images │ ├── DotNetIotRoadmapComponents.png │ ├── configurations.png │ └── selectbranch.jpg ├── raspi-Docker-GPIO.md ├── raspi-i2c.md ├── raspi-pwm.md ├── raspi-spi.md └── roadmap.md ├── LICENSE ├── NuGet.config ├── README-nuget.md ├── README.md ├── SECURITY.md ├── THIRD-PARTY-NOTICES.TXT ├── azure-pipelines.yml ├── config ├── SignClient.json └── filelist.txt ├── dotnet.sh ├── eng ├── Analyzers.props ├── ArduinoCsCI.cmd ├── Build.props ├── Compilers.props ├── Publishing.props ├── Signing.props ├── StyleCop.Analyzers.ruleset ├── Version.Details.xml ├── Versions.external.props ├── Versions.props ├── common │ ├── BuildConfiguration │ │ └── build-configuration.json │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.cmd │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── core-templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ └── source-build.yml │ │ └── variables │ │ │ └── pool-providers.yml │ ├── cross │ │ ├── arm │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── arm64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── armel │ │ │ ├── armel.jessie.patch │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── build-android-rootfs.sh │ │ ├── build-rootfs.sh │ │ ├── riscv64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ └── toolchain.cmake │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ │ ├── Directory.Build.props │ │ ├── NuGet.config │ │ └── Tools.csproj │ ├── loc │ │ └── P22DotNetHtmlLocalization.lss │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ │ ├── CommonLibrary.psm1 │ │ ├── common-library.sh │ │ ├── init-compiler.sh │ │ ├── init-distro-rid.sh │ │ ├── init-os-and-arch.sh │ │ ├── install-cmake-test.sh │ │ ├── install-cmake.sh │ │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ │ ├── check-channel-consistency.ps1 │ │ ├── nuget-validation.ps1 │ │ ├── nuget-verification.ps1 │ │ ├── publish-using-darc.ps1 │ │ ├── redact-logs.ps1 │ │ ├── sourcelink-validation.ps1 │ │ └── symbols-validation.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdl │ │ ├── NuGet.config │ │ ├── configure-sdl-tool.ps1 │ │ ├── execute-all-sdl-tools.ps1 │ │ ├── extract-artifact-archives.ps1 │ │ ├── extract-artifact-packages.ps1 │ │ ├── init-sdl.ps1 │ │ ├── packages.config │ │ ├── run-sdl.ps1 │ │ ├── sdl.ps1 │ │ └── trim-assets-version.ps1 │ ├── template-guidance.md │ ├── templates-official │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ └── source-build.yml │ │ └── variables │ │ │ ├── pool-providers.yml │ │ │ └── sdl-variables.yml │ ├── templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ └── source-build.yml │ │ └── variables │ │ │ └── pool-providers.yml │ ├── tools.ps1 │ └── tools.sh ├── sdl-tsa-vars.config ├── sendToHelix.proj ├── stylecop.json ├── toolchain.cmake └── tryrun.cmake ├── global.json ├── samples ├── Device Binding Template.md ├── Directory.Build.props ├── Directory.Build.targets ├── M5StackRemoteDisplay │ ├── Arguments.cs │ ├── M5Example.png │ ├── M5StackRemoteDisplay.csproj │ ├── NmeaDataSet.cs │ ├── NmeaValueDataSet.cs │ ├── Program.cs │ ├── README.md │ ├── RemoteControl.cs │ ├── ScreenMode.cs │ └── images │ │ ├── Landscape.png │ │ ├── MenuBar.png │ │ ├── MenuBarLeftMouse.png │ │ ├── MenuBarRightMouse.png │ │ ├── OpenMenu.png │ │ ├── ZoomMinus.png │ │ ├── ZoomPlus.png │ │ └── test.png ├── README.md ├── bmp280-sensor-azure-iot-hub │ ├── DNSensorAzureIoTHub.csproj │ ├── Program.cs │ ├── Readme.md │ ├── create-certificate.md │ └── images │ │ ├── RP-Azure-flow.png │ │ ├── RP-BMP280_bb.png │ │ ├── RP-BMP280_integration.png │ │ ├── certificate-iot-hub-ca-csr.png │ │ ├── certificate-iot-hub-ca.png │ │ ├── certificate-iot-hub-csr.png │ │ ├── create-a-device-ca-certificate.png │ │ ├── iot-hub-message-routing-1.png │ │ ├── iot-hub-message-routing-2.png │ │ └── iot-hub-message-routing-3.png ├── force-sensitive-resistor │ ├── Fsr408_Capacitor_RaspPi.png │ ├── Fsr408_Mcp3008_RaspPi.png │ ├── FsrWithAdcSample.cs │ ├── FsrWithCapacitorSample.cs │ ├── Program.cs │ ├── README.md │ └── force-sensitive-resistor.csproj ├── led-animate │ ├── AnimateLeds.cs │ ├── Program.cs │ ├── README.md │ └── led-animate.csproj ├── led-blink-multiple │ ├── Program.cs │ ├── README.md │ ├── led-blink-multiple.csproj │ ├── rpi-led-multiple.fzz │ └── rpi-led-multiple_bb.png ├── led-blink │ ├── .dockerignore │ ├── Dockerfile │ ├── Program.cs │ ├── README.md │ ├── led-blink.csproj │ ├── rpi-led.fzz │ └── rpi-led_bb.png ├── led-matrix-weather │ ├── MathUtils.cs │ ├── Program.Drawings.cs │ ├── Program.cs │ ├── README.md │ ├── Weather.OpenWeather.cs │ ├── Weather.cs │ ├── chaining-matrices.jpg │ ├── led-matrix-weather.csproj │ ├── pi-with-bonnet.jpg │ └── rain.jpg ├── led-more-blinking-lights │ ├── Program.cs │ ├── README.md │ ├── TimeEnvelope.cs │ ├── Volume.cs │ ├── led-more-blinking-lights.csproj │ ├── rpi-more-blinking-lights.fzz │ └── rpi-more-blinking-lights_bb.png ├── led-shift-register │ ├── Program.cs │ ├── README.md │ └── led-shift-register.csproj ├── samples.sln └── serialport-arduino │ ├── Program.cs │ ├── README.md │ ├── arduino-pi-sp.fzz │ ├── arduino-pi-sp_bb.png │ ├── serialport-arduino.csproj │ ├── setup-close.jpg │ ├── setup-full.jpg │ └── uart-demo.ino ├── src ├── Iot.Device.Bindings.SkiaSharpAdapter │ ├── Directory.Build.props │ └── Iot.Device.Bindings.SkiaSharpAdapter.csproj ├── Iot.Device.Bindings │ ├── CompatibilitySuppressions.xml │ ├── Directory.Build.props │ └── Iot.Device.Bindings.csproj ├── System.Device.Gpio.Tests │ ├── Directory.Build.props │ ├── GpioControllerSoftwareTests.cs │ ├── GpioControllerTestBase.cs │ ├── GpioPinTests.cs │ ├── LibGpiodV1DriverTests.cs │ ├── LibGpiodV2DriverTests.cs │ ├── Mcp3008Tests.cs │ ├── MockableGpioDriver.cs │ ├── PinValueTests.cs │ ├── ProtocolTests.cs │ ├── PwmTests.cs │ ├── README.md │ ├── RaspberryPiDriverTests.cs │ ├── RetryHelper.cs │ ├── SetupHelpers.cs │ ├── SpiBusInfoTests.cs │ ├── SysFsDriverTests.cs │ ├── System.Device.Gpio.Tests.csproj │ ├── TimeoutHelper.cs │ ├── XunitOptions.cs │ └── schematics │ │ ├── board-gerber.zip │ │ ├── board-pcb-picture.png │ │ ├── board-pic.jpg │ │ └── board-schematics.pdf ├── System.Device.Gpio │ ├── CompatibilitySuppressions.xml │ ├── Directory.Build.props │ ├── Interop │ │ ├── Unix │ │ │ ├── Interop.Libraries.cs │ │ │ ├── Libc │ │ │ │ ├── Interop.access.cs │ │ │ │ ├── Interop.close.cs │ │ │ │ ├── Interop.epoll_create.cs │ │ │ │ ├── Interop.epoll_ctl.cs │ │ │ │ ├── Interop.epoll_wait.cs │ │ │ │ ├── Interop.ioctl.cs │ │ │ │ ├── Interop.lseek.cs │ │ │ │ ├── Interop.mmap.cs │ │ │ │ ├── Interop.munmap.cs │ │ │ │ ├── Interop.open.cs │ │ │ │ ├── Interop.pipe.cs │ │ │ │ ├── Interop.read.cs │ │ │ │ └── Interop.write.cs │ │ │ ├── libbcm_host │ │ │ │ └── Interop.libbcmhost.cs │ │ │ └── libgpiod │ │ │ │ ├── V1 │ │ │ │ ├── Interop.libgpiod.cs │ │ │ │ ├── LineHandle.cs │ │ │ │ ├── SafeChipHandle.cs │ │ │ │ └── SafeChipIteratorHandle.cs │ │ │ │ └── V2 │ │ │ │ ├── Binding │ │ │ │ ├── Enums │ │ │ │ │ ├── GpiodEdgeEventType.cs │ │ │ │ │ ├── GpiodLineBias.cs │ │ │ │ │ ├── GpiodLineClock.cs │ │ │ │ │ ├── GpiodLineDirection.cs │ │ │ │ │ ├── GpiodLineDrive.cs │ │ │ │ │ ├── GpiodLineEdge.cs │ │ │ │ │ ├── GpiodLineInfoEventType.cs │ │ │ │ │ └── GpiodLineValue.cs │ │ │ │ ├── Handles │ │ │ │ │ ├── ChipInfoSafeHandle.cs │ │ │ │ │ ├── ChipSafeHandle.cs │ │ │ │ │ ├── EdgeEventBufferSafeHandle.cs │ │ │ │ │ ├── EdgeEventNotFreeable.cs │ │ │ │ │ ├── EdgeEventSafeHandle.cs │ │ │ │ │ ├── LineConfigSafeHandle.cs │ │ │ │ │ ├── LineInfoEventSafeHandle.cs │ │ │ │ │ ├── LineInfoSafeHandle.cs │ │ │ │ │ ├── LineInfoSafeHandleNotFreeable.cs │ │ │ │ │ ├── LineRequestSafeHandle.cs │ │ │ │ │ ├── LineSettingsSafeHandle.cs │ │ │ │ │ └── RequestConfigSafeHandle.cs │ │ │ │ └── Interop.libgpiod.cs │ │ │ │ ├── LastErr.cs │ │ │ │ ├── Proxies │ │ │ │ ├── Chip.cs │ │ │ │ ├── EdgeEvent.cs │ │ │ │ ├── EdgeEventBuffer.cs │ │ │ │ ├── LibGpiodChipInfo.cs │ │ │ │ ├── LibGpiodProxyBase.cs │ │ │ │ ├── LibGpiodProxyFactory.cs │ │ │ │ ├── LineConfig.cs │ │ │ │ ├── LineInfo.cs │ │ │ │ ├── LineInfoEvent.cs │ │ │ │ ├── LineRequest.cs │ │ │ │ ├── LineSettings.cs │ │ │ │ ├── Miscellaneous.cs │ │ │ │ └── RequestConfig.cs │ │ │ │ └── ValueTypes │ │ │ │ ├── Offset.cs │ │ │ │ └── SequenceNumber.cs │ │ └── UnmanagedArray.cs │ ├── System.Device.Gpio.csproj │ ├── System.Device.Gpio.sln │ └── System │ │ ├── Device │ │ ├── CommonHelpers.cs │ │ ├── ComponentInformation.cs │ │ ├── Gpio │ │ │ ├── Drivers │ │ │ │ ├── GpiodException.cs │ │ │ │ ├── InterruptSysFsDriver.cs │ │ │ │ ├── LibGpiodDriver.cs │ │ │ │ ├── LibGpiodDriverEventHandler.cs │ │ │ │ ├── LibGpiodV2Driver.cs │ │ │ │ ├── LibGpiodV2EventObserver.cs │ │ │ │ ├── RaspberryPi3Driver.cs │ │ │ │ ├── RaspberryPi3LinuxDriver.cs │ │ │ │ ├── RaspberryPiCM3Driver.cs │ │ │ │ ├── SysFsDriver.cs │ │ │ │ ├── Translator.cs │ │ │ │ ├── UnixDriver.cs │ │ │ │ └── UnixDriverDevicePin.cs │ │ │ ├── ExceptionHelper.cs │ │ │ ├── GpioChipInfo.cs │ │ │ ├── GpioController.cs │ │ │ ├── GpioDriver.cs │ │ │ ├── GpioPin.cs │ │ │ ├── PinChangeEventHandler.cs │ │ │ ├── PinEventTypes.cs │ │ │ ├── PinMode.cs │ │ │ ├── PinValue.cs │ │ │ ├── PinValueChangedEventArgs.cs │ │ │ ├── PinValuePair.cs │ │ │ ├── RaspberryBoardInfo.cs │ │ │ ├── WaitEventResult.cs │ │ │ └── WaitForEventResult.cs │ │ ├── I2c │ │ │ ├── Devices │ │ │ │ └── UnixI2cDevice.cs │ │ │ ├── I2cBus.cs │ │ │ ├── I2cBus.nonWindows.cs │ │ │ ├── I2cConnectionSettings.cs │ │ │ ├── I2cDevice.cs │ │ │ ├── I2cDevice.nonWindows.cs │ │ │ ├── UnixI2cBus.cs │ │ │ └── UnixI2cFileTransferBus.cs │ │ ├── IsExternalInit.cs │ │ ├── Pwm │ │ │ ├── Channels │ │ │ │ ├── BeagleBonePwmChannel.cs │ │ │ │ └── UnixPwmChannel.cs │ │ │ └── PwmChannel.cs │ │ ├── Spi │ │ │ ├── DataFlow.cs │ │ │ ├── Devices │ │ │ │ └── UnixSpiDevice.cs │ │ │ ├── SpiConnectionSettings.cs │ │ │ ├── SpiDevice.cs │ │ │ └── SpiMode.cs │ │ └── SysFsHelpers.cs │ │ └── Diagnostics │ │ └── CodeAnalysis │ │ └── DiagnosticIds.cs └── devices │ ├── AD5328 │ ├── AD5328.cs │ ├── AD5328.csproj │ ├── AD5328.sln │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── AD5328.Samples.csproj │ │ └── Program.cs │ ├── Ads1115 │ ├── ADS1115_circuit.fzz │ ├── ADS1115_circuit_bb.png │ ├── Ads1115.cs │ ├── Ads1115.csproj │ ├── Ads1115.sln │ ├── ComparatorLatching.cs │ ├── ComparatorMode.cs │ ├── ComparatorPolarity.cs │ ├── ComparatorQueue.cs │ ├── DataRate.cs │ ├── DeviceMode.cs │ ├── I2cAddress.cs │ ├── InputMultiplexer.cs │ ├── InterruptResult.png │ ├── MeasuringRange.cs │ ├── Pulse_lengthener_schema.png │ ├── README.md │ ├── Register.cs │ ├── RunningResult.jpg │ ├── category.txt │ ├── samples │ │ ├── Ads1115.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── Adxl345 │ ├── ADXL345_circuit.fzz │ ├── ADXL345_circuit_bb.png │ ├── Adxl345.cs │ ├── Adxl345.csproj │ ├── Adxl345.sln │ ├── GravityRange.cs │ ├── README.md │ ├── Register.cs │ ├── RunningResult.jpg │ ├── category.txt │ ├── samples │ │ ├── Adxl345.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── Adxl357 │ ├── AccelerometerRange.cs │ ├── Adxl357.cs │ ├── Adxl357.csproj │ ├── Adxl357.sln │ ├── README.md │ ├── Register.cs │ ├── category.txt │ ├── samples │ │ ├── Adxl357.Samples.csproj │ │ └── Program.cs │ └── sensor.png │ ├── Ags01db │ ├── AGS01DB_circuit.fzz │ ├── AGS01DB_circuit_bb.png │ ├── Ags01db.cs │ ├── Ags01db.csproj │ ├── Ags01db.sln │ ├── README.md │ ├── Register.cs │ ├── RunningResult.jpg │ ├── category.txt │ ├── samples │ │ ├── Ags01db.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── Ahtxx │ ├── Aht10.cs │ ├── Aht20.cs │ ├── AhtBase.cs │ ├── Ahtxx.csproj │ ├── Ahtxx.sln │ ├── Ahtxx_sample.png │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Ahtxx.Samples.csproj │ │ └── Program.cs │ ├── Ak8963 │ ├── Ak8963.cs │ ├── Ak8963.csproj │ ├── Ak8963.sln │ ├── Ak8963I2c.cs │ ├── Ak8963I2cBase.cs │ ├── MeasurementMode.cs │ ├── OutputBitMode.cs │ ├── README.md │ ├── Register.cs │ ├── category.txt │ ├── corrcalib.png │ ├── rawcalib.png │ └── samples │ │ ├── Program.cs │ │ └── ak8963.sample.csproj │ ├── Am2320 │ ├── Am2320.cs │ ├── Am2320.csproj │ ├── Am2320.sln │ ├── DeviceInformation.cs │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Am2320.sample.csproj │ │ └── Program.cs │ ├── Amg88xx │ ├── AMG8833Int.svg │ ├── AMG88xx.png │ ├── AMG88xxAvgMode.svg │ ├── AMG88xxSample.png │ ├── Amg88xx.cs │ ├── Amg88xx.csproj │ ├── Amg88xx.sln │ ├── Amg88xxUtils.cs │ ├── FrameRate.cs │ ├── FrameRateBit.cs │ ├── InterruptMode.cs │ ├── InterruptModeBit.cs │ ├── MovingAverageModeBit.cs │ ├── OperatingMode.cs │ ├── README.md │ ├── Register.cs │ ├── ResetType.cs │ ├── StatusClearBit.cs │ ├── StatusFlagBit.cs │ ├── category.txt │ ├── samples │ │ ├── Amg88xx.Samples.csproj │ │ └── Program.cs │ └── tests │ │ ├── Amg88xx.Tests.csproj │ │ ├── Amg88xxTests.cs │ │ ├── Amg88xxUtilsTests.cs │ │ └── I2cTestDevice.cs │ ├── Apa102 │ ├── Apa102.cs │ ├── Apa102.csproj │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Apa102.Samples.csproj │ │ └── Program.cs │ ├── Arduino │ ├── Arduino.csproj │ ├── Arduino.sln │ ├── ArduinoAnalogController.cs │ ├── ArduinoAnalogInputPin.cs │ ├── ArduinoBoard.cs │ ├── ArduinoGpioControllerDriver.cs │ ├── ArduinoI2cBus.cs │ ├── ArduinoI2cDevice.cs │ ├── ArduinoPwmChannel.cs │ ├── ArduinoSample.fzz │ ├── ArduinoSample_Monitor.png │ ├── ArduinoSpiDevice.cs │ ├── BlockingConcurrentBag.cs │ ├── CommandError.cs │ ├── DhtSensor.cs │ ├── Encoder7Bit.cs │ ├── ExtendedCommandHandler.cs │ ├── FirmataCommand.cs │ ├── FirmataCommandSequence.cs │ ├── FirmataDevice.cs │ ├── FirmataSpiCommand.cs │ ├── FirmataSysexCommand.cs │ ├── FrequencyMode.cs │ ├── FrequencySensor.cs │ ├── README.md │ ├── ReconnectingNetworkStream.cs │ ├── ReplyType.cs │ ├── SupportedMode.cs │ ├── SupportedPinConfiguration.cs │ ├── SystemVariable.cs │ ├── SystemVariableError.cs │ ├── category.txt │ ├── samples │ │ ├── ApiChecker │ │ │ ├── Arduino.sample.cs │ │ │ ├── Arduino.sample.csproj │ │ │ ├── ArduinoCompilerSampleMethods.cs │ │ │ ├── DebugLogStream.cs │ │ │ ├── RgbLedTest.cs │ │ │ └── TestCases.cs │ │ └── Monitor │ │ │ ├── Arduino.Monitor.cs │ │ │ ├── Arduino.Monitor.csproj │ │ │ └── CharacterDisplay.cs │ └── tests │ │ ├── ApiBehaviorTests.cs │ │ ├── Arduino.Tests.csproj │ │ ├── BasicFirmataTests.cs │ │ ├── BlockingConcurrentBagTest.cs │ │ ├── Encoder7BitTest.cs │ │ ├── FirmataTestFixture.cs │ │ ├── README.md │ │ └── xunit.runner.json │ ├── Axp192 │ ├── AdcFrequency.cs │ ├── AdcPinCurrent.cs │ ├── AdcPinCurrentSetting.cs │ ├── AdcPinEnabled.cs │ ├── Axp192.cs │ ├── Axp192.csproj │ ├── Axp192.sln │ ├── BackupBatteryChargingCurrent.cs │ ├── BackupBatteryCharingVoltage.cs │ ├── BatteryStatus.cs │ ├── ButtonPressed.cs │ ├── ChargingCurrent.cs │ ├── ChargingStopThreshold.cs │ ├── ChargingVoltage.cs │ ├── Gpio0Behavior.cs │ ├── GpioBehavior.cs │ ├── LdoDcPinsEnabled.cs │ ├── LongPressTiming.cs │ ├── PinOutputVoltage.cs │ ├── PowerControlData.cs │ ├── PowerStatus.cs │ ├── README.md │ ├── Register.cs │ ├── ShortPressTiming.cs │ ├── ShutdownBatteryPinFunction.cs │ ├── ShutdownBatteryTiming.cs │ ├── ShutdownTiming.cs │ ├── SignalDelayAfterPowerUp.cs │ ├── VbusCurrentLimit.cs │ ├── VholdVoltage.cs │ ├── VoffVoltage.cs │ ├── category.txt │ └── samples │ │ ├── Axp192.samples.csproj │ │ └── Program.cs │ ├── Bh1745 │ ├── AdcGain.cs │ ├── Bh1745.cs │ ├── Bh1745.csproj │ ├── Bh1745.sln │ ├── Bh1745Extensions.cs │ ├── InterruptConfiguration.cs │ ├── Mask.cs │ ├── MeasurementTime.cs │ ├── README.md │ ├── Register.cs │ ├── category.txt │ ├── samples │ │ ├── BH1745 │ │ │ ├── Bh1745.Sample.csproj │ │ │ └── Bh1745.cs │ │ └── CustomConfiguration │ │ │ ├── Bh1745.CustomConfiguration.cs │ │ │ └── Bh1745CustomConfiguration.Sample.csproj │ └── sensor.jpg │ ├── Bh1750fvi │ ├── BH1750FVI_Circuit.fzz │ ├── BH1750FVI_Circuit_bb.png │ ├── Bh1750fvi.cs │ ├── Bh1750fvi.csproj │ ├── Bh1750fvi.sln │ ├── Command.cs │ ├── I2cAddress.cs │ ├── MeasuringMode.cs │ ├── README.md │ ├── RunningResult.jpg │ ├── category.txt │ ├── samples │ │ ├── Bh1750fvi.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── Blinkt │ ├── Blinkt.cs │ ├── Blinkt.csproj │ ├── Blinkt.sln │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Blinkt.Sample.cs │ │ └── Blinkt.Samples.csproj │ ├── Bmm150 │ ├── Bmm150.cs │ ├── Bmm150.csproj │ ├── Bmm150.sln │ ├── Bmm150Compensation.cs │ ├── Bmm150I2c.cs │ ├── Bmm150I2cBase.cs │ ├── Bmm150TrimRegister.cs │ ├── MagnetometerData.cs │ ├── README.md │ ├── Register.cs │ ├── category.txt │ ├── samples │ │ ├── Bmm150.Sample.csproj │ │ └── Program.cs │ └── tests │ │ ├── Bmm150.Tests.cs │ │ └── Bmm150.Tests.csproj │ ├── Bmp180 │ ├── Bmp180.cs │ ├── Bmp180.csproj │ ├── Bmp180.sln │ ├── CalibrationData.cs │ ├── README.md │ ├── Register.cs │ ├── Sampling.cs │ ├── category.txt │ ├── rpi-bmp180_i2c.fzz │ ├── rpi-bmp180_i2c_bb.png │ └── samples │ │ ├── Bmp180.Sample.csproj │ │ └── Program.cs │ ├── Bmxx80 │ ├── Bme280.cs │ ├── Bme680.cs │ ├── Bme680HeaterProfile.cs │ ├── Bme680HeaterProfileConfig.cs │ ├── Bme680Mask.cs │ ├── Bmp280.cs │ ├── Bmx280Base.cs │ ├── Bmxx80.csproj │ ├── Bmxx80.sln │ ├── Bmxx80Base.cs │ ├── CalibrationData │ │ ├── Bme280CalibrationData.cs │ │ ├── Bme680CalibrationData.cs │ │ ├── Bmp280CalibrationData.cs │ │ └── Bmxx80CalibrationData.cs │ ├── DeviceStatus.cs │ ├── FilteringMode │ │ ├── Bme680FilteringMode.cs │ │ └── Bmx280FilteringMode.cs │ ├── PowerMode │ │ ├── Bme680PowerMode.cs │ │ └── Bmx280PowerMode.cs │ ├── README.md │ ├── ReadResult │ │ ├── Bme280ReadResult.cs │ │ ├── Bme680ReadResult.cs │ │ └── Bmp280ReadResult.cs │ ├── Register │ │ ├── Bme280Register.cs │ │ ├── Bme680Register.cs │ │ ├── Bmx280Register.cs │ │ └── Bmxx80Register.cs │ ├── Sampling.cs │ ├── StandbyTime.cs │ ├── category.txt │ ├── rpi-bmp280_i2c.fzz │ ├── rpi-bmp280_i2c.png │ ├── samples │ │ ├── Bme280 │ │ │ ├── Bme280.sample.cs │ │ │ └── Bme280.sample.csproj │ │ ├── Bme680 │ │ │ ├── Bme680.sample.cs │ │ │ └── Bme680.sample.csproj │ │ └── Bmp280 │ │ │ ├── Bmp280.sample.cs │ │ │ └── Bmp280.sample.csproj │ └── tests │ │ ├── Bmp280Tests.cs │ │ ├── Bmxx80.Tests.csproj │ │ └── SimulatedI2cDevice.cs │ ├── Bno055 │ ├── BNO055.jpg │ ├── Bno055.csproj │ ├── Bno055.sln │ ├── Bno055Sensor.cs │ ├── Models │ │ ├── AxisRemap.cs │ │ ├── CalibrationStatus.cs │ │ ├── Error.cs │ │ ├── Info.cs │ │ ├── InteruptStatus.cs │ │ ├── OperationMode.cs │ │ ├── PowerMode.cs │ │ ├── Registers.cs │ │ ├── Status.cs │ │ ├── TemperatureSource.cs │ │ ├── TestResult.cs │ │ └── Units.cs │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Bno055.sample.csproj │ │ └── Program.cs │ ├── Board │ ├── Board.cs │ ├── Board.csproj │ ├── Board.sln │ ├── CustomBoard.cs │ ├── DummyGpioDriver.cs │ ├── GenericBoard.cs │ ├── I2cBusExtensions.cs │ ├── I2cBusManager.cs │ ├── IDeviceManager.cs │ ├── KeyboardGpioDriver.cs │ ├── ManagedGpioController.cs │ ├── MappingGpioController.cs │ ├── PinUsage.cs │ ├── PwmChannelManager.cs │ ├── README.md │ ├── RaspberryPiBoard.cs │ ├── SpiDeviceManager.cs │ ├── VirtualGpioController.cs │ ├── VirtualGpioPin.cs │ ├── category.txt │ ├── samples │ │ ├── Board.Sample.csproj │ │ └── Program.cs │ └── tests │ │ ├── Board.Tests.csproj │ │ ├── BoardTests.cs │ │ ├── ConfigFiles │ │ ├── config.I2c.txt │ │ ├── config.Pwm.txt │ │ ├── config.Pwm1.txt │ │ ├── config.Pwm1invalid.txt │ │ ├── config.Spi.txt │ │ ├── config.nothing.txt │ │ └── configI2c-defaultpins.txt │ │ ├── I2cBusManagerTest.cs │ │ ├── I2cDummyBus.cs │ │ ├── I2cDummyDevice.cs │ │ ├── RaspberryPiBoardTest.cs │ │ ├── RpiBoardDtOverlayTests.cs │ │ └── SpiDummyDevice.cs │ ├── BoardLed │ ├── BoardLed.cs │ ├── BoardLed.csproj │ ├── BoardLed.sln │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── BoardLed.Sample.csproj │ │ └── Program.cs │ ├── BrickPi3 │ ├── BrickPi3-How-it-Works.jpg │ ├── BrickPi3.cs │ ├── BrickPi3.csproj │ ├── BrickPi3.sln │ ├── Extensions │ │ └── EnumExtension.cs │ ├── Models │ │ ├── BrickPiInfo.cs │ │ ├── BrickPiVoltage.cs │ │ ├── Motors.cs │ │ ├── Sensors.cs │ │ └── SpiMessages.cs │ ├── Movement │ │ ├── Motor.cs │ │ └── Vehicle.cs │ ├── README.md │ ├── Sensors │ │ ├── EV3ColorSensor.cs │ │ ├── EV3GyroSensor.cs │ │ ├── EV3IRSensor.cs │ │ ├── EV3TouchSensor.cs │ │ ├── EV3UltraSonicSensor.cs │ │ ├── ISensor.cs │ │ ├── NXTColorSensor.cs │ │ ├── NXTLightSensor.cs │ │ ├── NXTSoundSensor.cs │ │ ├── NXTTouchSensor.cs │ │ └── NXTUltraSonicSensor.cs │ ├── category.txt │ └── samples │ │ ├── BrickPi3.samples.csproj │ │ ├── MotorTests.cs │ │ ├── Program.cs │ │ └── SensorTests.cs │ ├── BuildHat │ ├── 3x3matrix.png │ ├── Brick.cs │ ├── BuildHat.csproj │ ├── BuildHat.sln │ ├── Models │ │ ├── BuildHatInformation.cs │ │ ├── CombiModes.cs │ │ ├── LedColor.cs │ │ ├── LedMode.cs │ │ ├── MinimumMaximumValues.cs │ │ ├── ModeDetail.cs │ │ ├── PositionWay.cs │ │ ├── RecommendedPid.cs │ │ ├── SensorPort.cs │ │ ├── SensorType.cs │ │ └── TypeValues.cs │ ├── Motors │ │ ├── ActiveMotor.cs │ │ ├── IMotor.cs │ │ └── PassiveMotor.cs │ ├── README.md │ ├── Resource.Designer.cs │ ├── Resource.resx │ ├── Sensors │ │ ├── ActiveSensor.cs │ │ ├── ButtonSensor.cs │ │ ├── ColorAndDistanceSensor.cs │ │ ├── ColorLightMatrix.cs │ │ ├── ColorSensor.cs │ │ ├── ForceSensor.cs │ │ ├── PassiveLight.cs │ │ ├── Sensor.cs │ │ ├── UltrasonicDistanceSensor.cs │ │ ├── WeDoDistanceSensor.cs │ │ └── WeDoTiltSensor.cs │ ├── active-motor.png │ ├── build-hat.jpg │ ├── category.txt │ ├── color-distance.png │ ├── data │ │ ├── firmware.bin │ │ ├── signature.bin │ │ └── version │ ├── passive-light.png │ ├── samples │ │ ├── BuildHat.samples.csproj │ │ └── Program.cs │ ├── spike-color.png │ ├── spike-distance.png │ ├── spike-force.png │ ├── tests │ │ └── BuildHatTests │ │ │ ├── BrickTests.cs │ │ │ └── BuildHatTests.csproj │ ├── train-motor.png │ ├── wedo-distance.png │ └── wedo-tilt.png │ ├── Button │ ├── Button.csproj │ ├── Button.sln │ ├── ButtonBase.cs │ ├── ButtonHoldingEventArgs.cs │ ├── ButtonHoldingState.cs │ ├── GpioButton.cs │ ├── README.md │ ├── category.txt │ ├── samples │ │ ├── Button.samples.csproj │ │ └── Program.cs │ ├── tests │ │ ├── Button.tests.csproj │ │ ├── ButtonTests.cs │ │ └── TestButton.cs │ └── unittests.png │ ├── Buzzer │ ├── Buzzer.Samples.wiring.fzz │ ├── Buzzer.Samples.wiring.png │ ├── Buzzer.cs │ ├── Buzzer.csproj │ ├── Buzzer.sln │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Buzzer.Samples.csproj │ │ ├── Enums.cs │ │ ├── MelodyElement.cs │ │ ├── MelodyPlayer.cs │ │ ├── NoteElement.cs │ │ ├── PauseElement.cs │ │ └── Program.cs │ ├── Camera │ ├── Camera.sln │ ├── Camera │ │ ├── Camera.csproj │ │ ├── CameraInfo.cs │ │ └── Settings │ │ │ ├── Command.cs │ │ │ ├── CommandCategory.cs │ │ │ ├── CommandInputType.cs │ │ │ ├── CommandOption.cs │ │ │ ├── CommandOptionAndValue.cs │ │ │ ├── CommandOptionsBuilder.cs │ │ │ ├── CommandOutputType.cs │ │ │ ├── LibcameraAppsSettings.cs │ │ │ └── ProcessSettingsFactory.cs │ ├── CameraInsights.md │ ├── README.md │ ├── category.txt │ ├── samples │ │ └── Camera.Samples │ │ │ ├── Camera.Samples.csproj │ │ │ ├── Capture.cs │ │ │ └── Program.cs │ └── tests │ │ ├── FakeVideoCapture │ │ ├── FakeVideoCapture.csproj │ │ ├── Program.cs │ │ └── testfile.bin │ │ └── TestCamera │ │ ├── CameraInfoTests.cs │ │ ├── CommandOptionsBuilderTests.cs │ │ ├── ProcessRunnerTests.cs │ │ ├── TestCamera.csproj │ │ ├── Usings.cs │ │ ├── test.bin │ │ └── test.txt │ ├── Card │ ├── Card.sln │ ├── CardRfid.csproj │ ├── CardTransceiver.cs │ ├── CreditCard │ │ ├── ApduCommands.cs │ │ ├── ApduReturnCommands.cs │ │ ├── ApplicationDataDetail.cs │ │ ├── BerSplitter.cs │ │ ├── ConversionType.cs │ │ ├── CreditCard.cs │ │ ├── CreditCardProcessing.csproj │ │ ├── DataType.cs │ │ ├── README.md │ │ ├── Source.cs │ │ ├── Tag.cs │ │ ├── TagDetails.cs │ │ ├── TagList.cs │ │ ├── TerminalTransactionQualifier.cs │ │ └── category.txt │ ├── EmulatedTag │ │ ├── CardStatus.cs │ │ ├── EmulatedNdefTag.cs │ │ ├── EmulatedTag.csproj │ │ ├── README.md │ │ ├── TagType.cs │ │ ├── category.txt │ │ ├── tag_read.png │ │ └── tag_write.png │ ├── ErrorType.cs │ ├── Icode │ │ ├── Icode.csproj │ │ ├── IcodeCard.cs │ │ ├── IcodeCardCapacity.cs │ │ └── IcodeCardCommand.cs │ ├── Mifare │ │ ├── AccessSector.cs │ │ ├── AccessType.cs │ │ ├── Mifare.csproj │ │ ├── MifareApplicationIdentifier.cs │ │ ├── MifareCard.cs │ │ ├── MifareCardCapacity.cs │ │ ├── MifareCardCommand.cs │ │ ├── MifareDirectory.cs │ │ ├── MifareDirectoryEntry.cs │ │ ├── README.md │ │ └── category.txt │ ├── Ndef │ │ ├── EnumHelper.cs │ │ ├── GeneralePurposeByteConditions.cs │ │ ├── MessageFlag.cs │ │ ├── Ndef.csproj │ │ ├── Ndef.sln │ │ ├── NdefMessage.cs │ │ ├── README.md │ │ ├── Record │ │ │ ├── GeoRecord.cs │ │ │ ├── MediaRecord.cs │ │ │ ├── NdefRecord.cs │ │ │ ├── TextRecord.cs │ │ │ └── UriRecord.cs │ │ ├── RecordHeader.cs │ │ ├── TypeNameFormat.cs │ │ ├── UriType.cs │ │ ├── samples │ │ │ ├── NdefSamples.csproj │ │ │ └── Program.cs │ │ └── tests │ │ │ ├── CardDumpExamples.cs │ │ │ ├── Ndef.Tests.csproj │ │ │ └── NdefTests.cs │ ├── NfcProtocol.cs │ ├── ProcessError.cs │ ├── README.md │ ├── Rfid │ │ ├── ApplicationType.cs │ │ ├── Data106kbpsInnovisionJewel.cs │ │ ├── Data106kbpsTypeA.cs │ │ ├── Data106kbpsTypeB.cs │ │ ├── Data212_424kbps.cs │ │ ├── Data26_53kbps.cs │ │ └── MaxFrameSize.cs │ ├── Ultralight │ │ ├── AuthenticationConfiguration.cs │ │ ├── Configuration.cs │ │ ├── FieldDetectPin.cs │ │ ├── MirrorConfiguration.cs │ │ ├── MirrorType.cs │ │ ├── NfcCounterConfiguration.cs │ │ ├── README.md │ │ ├── Ultralight.csproj │ │ ├── UltralightCard.cs │ │ ├── UltralightCardType.cs │ │ └── UltralightCommand.cs │ ├── VersionSupported.cs │ └── category.txt │ ├── Ccs811 │ ├── Ccs811.csproj │ ├── Ccs811.sln │ ├── Ccs811Sensor.cs │ ├── Error.cs │ ├── MeasurementArgs.cs │ ├── OperationMode.cs │ ├── README.md │ ├── Register.cs │ ├── Status.cs │ ├── category.txt │ ├── ccs811.fzz │ ├── ccs811_bb.png │ ├── graph.png │ └── samples │ │ ├── Ccs811.Sample.csproj │ │ └── Program.cs │ ├── CharacterLcd │ ├── Aip31068Lcd.cs │ ├── BigFontMap.txt │ ├── CharacterLcd.csproj │ ├── CharacterLcd.sln │ ├── CharacterLcdExtensions.cs │ ├── Flags.cs │ ├── Hd44780.cs │ ├── ICharacterLcd.cs │ ├── Lcd1602.cs │ ├── Lcd2004.cs │ ├── LcdConsole.cs │ ├── LcdInterface.Gpio.cs │ ├── LcdInterface.I2c.cs │ ├── LcdInterface.I2c4Bit.cs │ ├── LcdInterface.ShiftRegister.cs │ ├── LcdInterface.cs │ ├── LcdRgb.cs │ ├── LcdValueUnitDisplay.cs │ ├── LineWrapMode.cs │ ├── README.md │ ├── Registers.cs │ ├── category.txt │ ├── lcmWiringExample.jpg │ ├── samples │ │ ├── Aip31068Sample.cs │ │ ├── CharacterLcd.Samples.csproj │ │ ├── Hd44780.ExtendedSample.cs │ │ ├── LargeValueSample.cs │ │ ├── LcdConsole.Samples.cs │ │ ├── Pcf8574tSample.cs │ │ └── Program.cs │ └── tests │ │ ├── CharacterLcd.Tests.csproj │ │ ├── CharacterLcdTests.cs │ │ ├── LcdConsoleTests.cs │ │ └── LcdValueUnitDisplayTests.cs │ ├── Charlieplex │ ├── Charlieplex.csproj │ ├── Charlieplex.sln │ ├── CharlieplexSegment.cs │ ├── CharlieplexSegmentNode.cs │ ├── README.md │ ├── category.txt │ ├── samples │ │ ├── Charlieplex-sample.csproj │ │ └── Program.cs │ └── tests │ │ ├── Charlieplex.Tests.csproj │ │ └── CharlieplexLayout.cs │ ├── Common │ ├── ClassVisibility.cs │ ├── Common.csproj │ ├── Common.sln │ ├── FrameworkCompatibilityExtensions.cs │ ├── Interop │ │ ├── Unix │ │ │ ├── Interop.Libraries.cs │ │ │ ├── Libasound │ │ │ │ ├── Interop.libasound.cs │ │ │ │ └── Interop.libasound.struct.cs │ │ │ ├── Libc │ │ │ │ ├── Interop.ioctl.macros.cs │ │ │ │ └── Interop.libc.cs │ │ │ └── ThreadHelper.cs │ │ └── Windows │ │ │ ├── Kernel32.cs │ │ │ └── WinUser.cs │ ├── Iot │ │ └── Device │ │ │ ├── Common │ │ │ ├── AngleExtensions.cs │ │ │ ├── DebuggerOutputLogger.cs │ │ │ ├── DebuggerOutputLoggerProvider.cs │ │ │ ├── FileSetStream.cs │ │ │ ├── GeographicPosition.cs │ │ │ ├── GeographicPositionExtensions.cs │ │ │ ├── GeoidCalculations.cs │ │ │ ├── GreatCircle.cs │ │ │ ├── HysteresisFilter.cs │ │ │ ├── LogDispatcher.cs │ │ │ ├── MultiTargetLoggerFactory.cs │ │ │ ├── NumberHelper.cs │ │ │ ├── PositionExtensions.cs │ │ │ ├── ProcessRunner.cs │ │ │ ├── ProcessSettings.cs │ │ │ ├── SimpleConsoleLogger.cs │ │ │ ├── SimpleConsoleLoggerFactory.cs │ │ │ ├── SimpleFileLogger.cs │ │ │ ├── SimpleFileLoggerFactory.cs │ │ │ └── WeatherHelper.cs │ │ │ ├── Graphics │ │ │ ├── BdfFont.cs │ │ │ ├── BitmapImage.cs │ │ │ ├── Converters.cs │ │ │ ├── Font5x8.cs │ │ │ ├── GraphicDisplay.cs │ │ │ ├── IGraphics.cs │ │ │ ├── IImageFactory.cs │ │ │ ├── ImageFileType.cs │ │ │ ├── LcdCharacterEncoding.cs │ │ │ ├── LcdCharacterEncodingFactory.cs │ │ │ └── PixelFormat.cs │ │ │ └── Multiplexing │ │ │ ├── GpioOutputSegment.cs │ │ │ ├── IOutputSegment.cs │ │ │ ├── VirtualOutputSegment.cs │ │ │ ├── samples │ │ │ ├── OutputSegment-driver.csproj │ │ │ └── Program.cs │ │ │ └── tests │ │ │ ├── OutputSegmentTests.cs │ │ │ └── OutputSegmentTests.csproj │ ├── IsExternalInit.cs │ ├── MathExtensions.cs │ ├── README.md │ ├── System │ │ └── Device │ │ │ ├── Analog │ │ │ ├── AnalogController.cs │ │ │ ├── AnalogInputPin.cs │ │ │ ├── TriggerReason.cs │ │ │ ├── ValueChangedEventArgs.cs │ │ │ └── ValueChangedEventHandler.cs │ │ │ ├── DelayHelper.cs │ │ │ ├── Gpio │ │ │ ├── PinVector32.cs │ │ │ └── PinVector64.cs │ │ │ └── Spi │ │ │ └── SpiBusInfo.cs │ ├── samples │ │ ├── Common.Samples.csproj │ │ ├── MyTestComponent.cs │ │ └── Program.cs │ └── tests │ │ ├── AngleExtensionsTest.cs │ │ ├── Common.Tests.csproj │ │ ├── FrameworkCompatibilityExtensionsTest.cs │ │ ├── GeographicPositionTest.cs │ │ ├── GreatCircleTest.cs │ │ ├── HysteresisTest.cs │ │ ├── LoggingTests.cs │ │ ├── MathExtensionsTest.cs │ │ └── WeatherTests.cs │ ├── CpuTemperature │ ├── CpuTemperature.cs │ ├── CpuTemperature.csproj │ ├── CpuTemperature.sln │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── CpuTemperature.Samples.csproj │ │ ├── Program.cs │ │ └── app.manifest │ ├── DCMotor │ ├── DCMotor.cs │ ├── DCMotor.csproj │ ├── DCMotor.sln │ ├── DCMotor2PinNoEnable.cs │ ├── DCMotor2PinWithBiDirectionalPin.cs │ ├── DCMotor2pinWithBiDirectionalPin.fzz │ ├── DCMotor2pinWithBiDirectionalPin_bb.png │ ├── DCMotor3Pin.cs │ ├── DCMotorWithStartStop.cs │ ├── README.md │ ├── category.txt │ ├── dcmotor.fzz │ ├── dcmotor_bb.png │ └── samples │ │ ├── DCMotor.sample.csproj │ │ └── Program.cs │ ├── Device-Index.md │ ├── Dhtxx │ ├── CommunicationProtocol.cs │ ├── DHT12_circuit.fzz │ ├── DHT12_circuit_bb.png │ ├── Devices │ │ ├── Dht10.cs │ │ ├── Dht11.cs │ │ ├── Dht12.cs │ │ ├── Dht21.cs │ │ └── Dht22.cs │ ├── DhtBase.cs │ ├── Dhtxx.csproj │ ├── Dhtxx.sln │ ├── README.md │ ├── category.txt │ ├── dht22.fzz │ ├── dht22.png │ ├── dht22ex.jpg │ ├── imgs │ │ ├── dht10.jpg │ │ ├── dht11.jpg │ │ ├── dht12.jpg │ │ ├── dht21.jpg │ │ └── dht22.jpg │ └── samples │ │ ├── DhtSensor.sample.csproj │ │ └── Program.cs │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Display │ ├── Alignment.cs │ ├── BiColorBarGraph.cs │ ├── BlinkRate.cs │ ├── Display.csproj │ ├── Display.sln │ ├── Dot.cs │ ├── Font.cs │ ├── Font14.cs │ ├── FontHelper.cs │ ├── FontHelper14.cs │ ├── Ht16k33.cs │ ├── ISevenSegmentDisplay.cs │ ├── Large4Digit14SegmentDisplay.cs │ ├── Large4Digit7SegmentDisplay.cs │ ├── LedColor.cs │ ├── LedSegmentDisplay5641AS.cs │ ├── LedSegmentDisplay5641ASPinScheme.cs │ ├── Matrix16x8.cs │ ├── Matrix8x8.cs │ ├── Matrix8x8Bicolor.cs │ ├── README.md │ ├── Segment.cs │ ├── Segment14.cs │ ├── SegmentHelpers.cs │ ├── category.txt │ └── samples │ │ ├── BiColorBargraph │ │ ├── BiColorBargraph.sample.csproj │ │ └── Program.BiColorBargraph.cs │ │ ├── Large4Digit14SegmentDisplay │ │ ├── Large4Digit14SegmentDisplay.sample.csproj │ │ └── Program.cs │ │ ├── Large4Digit7SegmentDisplay │ │ ├── Large4Digit7SegmentDisplay.sample.csproj │ │ └── Program.cs │ │ ├── LedSegmentDisplay5641AS.Sample │ │ ├── 5641AS.jpg │ │ ├── LedSegmentDisplay5641AS.Sample.csproj │ │ ├── Program.cs │ │ ├── Readme.md │ │ ├── SegDisplayStopwatchSample5641AS-diagram.png │ │ └── SegmentStopwatch.cs │ │ ├── Matrix │ │ ├── Matrix.sample.csproj │ │ └── Program.Matrix.cs │ │ └── Matrix8x8Bicolor │ │ ├── Matrix8x8Bicolor.sample.csproj │ │ └── Program.Matrix8x8Bicolor.cs │ ├── ExplorerHat │ ├── DCMotorExtensions.cs │ ├── ExplorerHat.cs │ ├── ExplorerHat.csproj │ ├── ExplorerHat.sln │ ├── Led.cs │ ├── Lights.cs │ ├── Motors.cs │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── ExplorerHat.Sample.csproj │ │ └── Program.cs │ ├── Ft232H │ ├── Ft2232HDevice.cs │ ├── Ft232H.csproj │ ├── Ft232H.sln │ ├── Ft232HDevice.cs │ ├── Ft232HGpio.cs │ ├── Ft232HI2cBus.cs │ ├── Ft232HI2cDevice.cs │ ├── Ft232HSpi.cs │ ├── Ft4232HDevice.cs │ ├── Ftx232HDevice.cs │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Ft232H.sample.csproj │ │ └── Program.cs │ ├── Ft4222 │ ├── Ft4222.csproj │ ├── Ft4222.sln │ ├── Ft4222Common.cs │ ├── Ft4222Device.cs │ ├── Ft4222Gpio.cs │ ├── Ft4222I2c.cs │ ├── Ft4222I2cBus.cs │ ├── Ft4222Spi.cs │ ├── FtClockRate.cs │ ├── FtFunction.cs │ ├── FtVersion.cs │ ├── GpioPinMode.cs │ ├── GpioPinValue.cs │ ├── GpioPort.cs │ ├── GpioTrigger.cs │ ├── I2cMasterFlag.cs │ ├── PinDrivingStrength.cs │ ├── README.md │ ├── SpiClock.cs │ ├── SpiClockPhase.cs │ ├── SpiClockPolarity.cs │ ├── SpiDrivingStrength.cs │ ├── SpiOperatingMode.cs │ ├── SpiReplicaProtocol.cs │ ├── category.txt │ └── samples │ │ ├── Ft4222.sample.csproj │ │ └── Program.cs │ ├── FtCommon │ ├── FtBitMode.cs │ ├── FtChannel.cs │ ├── FtCommon.cs │ ├── FtCommon.projitems │ ├── FtCommon.shproj │ ├── FtDevice.cs │ ├── FtDeviceType.cs │ ├── FtFlag.cs │ ├── FtFlowControl.cs │ ├── FtFunction.cs │ ├── FtOpcode.cs │ ├── FtOpenType.cs │ ├── FtStatus.cs │ └── SafeFtHandle.cs │ ├── GoPiGo3 │ ├── GoPiGo3.cs │ ├── GoPiGo3.csproj │ ├── GoPiGo3.png │ ├── GoPiGo3.sln │ ├── Models │ │ ├── GoPiGoInfo.cs │ │ ├── GoPiGoLed.cs │ │ ├── GoPiGoVoltage.cs │ │ ├── GroveInputOutput.cs │ │ ├── GrovePort.cs │ │ ├── GroveSensors.cs │ │ ├── MotorPort.cs │ │ ├── MotorStatus.cs │ │ ├── Motors.cs │ │ ├── ServoPort.cs │ │ └── SpiMessages.cs │ ├── Movements │ │ ├── Motor.cs │ │ └── Vehicle.cs │ ├── README.md │ ├── Sensors │ │ ├── AnalogSensor.cs │ │ ├── Button.cs │ │ ├── Buzzer.cs │ │ ├── DigitalInput.cs │ │ ├── DigitalOutput.cs │ │ ├── ISensor.cs │ │ ├── Led.cs │ │ ├── LedPwm.cs │ │ ├── LightSensor.cs │ │ ├── PotentiometerSensor.cs │ │ ├── Relay.cs │ │ ├── SoundSensor.cs │ │ └── UltraSonicSensor.cs │ ├── category.txt │ ├── gopigosensors.png │ └── samples │ │ ├── GoPiGo3.sample.csproj │ │ ├── MovementTests.cs │ │ ├── Program.cs │ │ └── SensorTests.cs │ ├── Gpio │ ├── Drivers │ │ ├── NanoPiR2sDriver.cs │ │ ├── OrangePi4Driver.cs │ │ ├── OrangePiLite2Driver.cs │ │ ├── OrangePiLiteDriver.cs │ │ ├── OrangePiPCDriver.cs │ │ ├── OrangePiZero2Driver.cs │ │ ├── OrangePiZeroDriver.cs │ │ ├── PinState.cs │ │ ├── RockPi4BPlusDriver.cs │ │ ├── Rockchip │ │ │ ├── README.md │ │ │ ├── Rk3328Driver.cs │ │ │ ├── Rk3399Driver.cs │ │ │ └── RockchipDriver.cs │ │ └── Sunxi │ │ │ ├── README.md │ │ │ ├── Sun50iw2p1Driver.cs │ │ │ ├── Sun50iw6p1Driver.cs │ │ │ ├── Sun50iw9p1Driver.cs │ │ │ ├── Sun8iw7p1Driver.cs │ │ │ └── SunxiDriver.cs │ ├── Gpio.sln │ ├── Iot.Device.Gpio.csproj │ ├── README.md │ ├── category.txt │ ├── imgs │ │ ├── RockchipDriver │ │ │ ├── libgpiod.jpg │ │ │ ├── rockchip.jpg │ │ │ ├── sysfs.jpg │ │ │ └── wiringOP.jpg │ │ └── SunxiDriver │ │ │ ├── libgpiod.jpg │ │ │ ├── sunxi.jpg │ │ │ ├── sysfs.jpg │ │ │ └── wiringOP.jpg │ ├── opi_circuit.fzz │ ├── opi_circuit.png │ ├── samples │ │ ├── GpioSpeedBenchmark.cs │ │ ├── Iot.Device.Gpio.Samples.csproj │ │ └── Program.cs │ └── tests │ │ ├── Gpio.Tests.csproj │ │ ├── MappingGpioControllerTests.cs │ │ └── VirtualGpioTests.cs │ ├── GrovePi │ ├── GrovePi.cs │ ├── GrovePi.sln │ ├── GrovePiDevice.csproj │ ├── GrovePort.png │ ├── Models │ │ ├── DhtType.cs │ │ ├── GrovePiCommand.cs │ │ ├── GrovePiInfo.cs │ │ └── GrovePort.cs │ ├── README.md │ ├── Sensors │ │ ├── AnalogSensor.cs │ │ ├── Button.cs │ │ ├── Buzzer.cs │ │ ├── DhtSensor.cs │ │ ├── DigitalInput.cs │ │ ├── DigitalOutput.cs │ │ ├── GrooveTemperatureSensor.cs │ │ ├── ISensor.cs │ │ ├── Led.cs │ │ ├── LedBar.cs │ │ ├── LedPwm.cs │ │ ├── LightSensor.cs │ │ ├── PotentiometerSensor.cs │ │ ├── PwmOutput.cs │ │ ├── Relay.cs │ │ ├── SoundSensor.cs │ │ └── UltrasonicSensor.cs │ ├── category.txt │ ├── grovepi.jpg │ ├── grovepisensors.png │ ├── sample.jpg │ └── samples │ │ ├── GrovePiDevice.sample.csproj │ │ └── Program.cs │ ├── Gui │ ├── Gui.csproj │ ├── Gui.sln │ ├── IPointingDevice.cs │ ├── Interop │ │ ├── Interop.X11.cs │ │ └── Interop.uinput.cs │ ├── MouseButton.cs │ ├── MouseClickSimulatorUInputAbsolute.cs │ ├── MouseClickSimulatorUInputBase.cs │ ├── MouseClickSimulatorUInputRelative.cs │ ├── README.md │ ├── ScreenCapture.Linux.cs │ ├── ScreenCapture.Windows.cs │ ├── ScreenCapture.cs │ ├── VirtualPointingDevice.cs │ ├── WindowsMouseSimulator.Windows.cs │ ├── category.txt │ ├── samples │ │ ├── Gui.Sample.cs │ │ └── Gui.Sample.csproj │ └── tests │ │ ├── Gui.Tests.csproj │ │ └── GuiTests..cs │ ├── HardwareMonitor │ ├── HardwareMonitor.csproj │ ├── HardwareMonitor.sln │ ├── IOpenHardwareMonitorInternal.cs │ ├── JsonSchema │ │ ├── ComputerJson.cs │ │ ├── HardwareJson.cs │ │ └── SensorJson.cs │ ├── OpenHardwareMonitor.cs │ ├── OpenHardwareMonitorHttp.cs │ ├── OpenHardwareMonitorTransport.cs │ ├── OpenHardwareMonitorWmi.cs │ ├── README.md │ ├── SensorType.cs │ ├── SensorUpdateStrategy.cs │ ├── category.txt │ └── samples │ │ ├── OpenHardwareMonitor.Samples.csproj │ │ └── Program.cs │ ├── Hcsr04 │ ├── Hcsr04.cs │ ├── Hcsr04.csproj │ ├── Hcsr04.sln │ ├── README.md │ ├── category.txt │ ├── raspberry_hc-sr04.png │ └── samples │ │ ├── Hcsr04.Samples.csproj │ │ └── Program.cs │ ├── Hcsr501 │ ├── Hcsr501.cs │ ├── Hcsr501.csproj │ ├── Hcsr501.sln │ ├── Hcsr501Setting.png │ ├── Hcsr501ValueChangedEventArgs.cs │ ├── README.md │ ├── RunningResult.gif │ ├── category.txt │ ├── circuit.fzz │ ├── circuit_bb.png │ ├── samples │ │ ├── Hcsr501.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── Hmc5883l │ ├── Gain.cs │ ├── HMC5883L_circuit.fzz │ ├── HMC5883L_circuit_bb.png │ ├── Hmc5883l.cs │ ├── Hmc5883l.csproj │ ├── Hmc5883l.sln │ ├── MeasurementConfiguration.cs │ ├── MeasuringMode.cs │ ├── OutputRate.cs │ ├── README.md │ ├── Register.cs │ ├── RunningResult.jpg │ ├── SamplesAmount.cs │ ├── Status.cs │ ├── category.txt │ ├── samples │ │ ├── Hmc5883l.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── Ht1632 │ ├── ClockMode.cs │ ├── ComOption.cs │ ├── Command.cs │ ├── Ht1632.cs │ ├── Ht1632.csproj │ ├── Ht1632.sln │ ├── Ht1632ImageSending.cs │ ├── Ht1632PinMapping.cs │ ├── Id.cs │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Ht1632.Sample.csproj │ │ ├── Program.cs │ │ ├── README.md │ │ ├── Schematic_HT1632Ctest.png │ │ ├── bot.jpg │ │ ├── dotnet-bot.bmp │ │ └── random.jpg │ ├── Hts221 │ ├── Hts221.cs │ ├── Hts221.csproj │ ├── Hts221.sln │ ├── README.md │ ├── Register.cs │ ├── category.txt │ └── samples │ │ ├── Hts221.Samples.csproj │ │ └── Program.cs │ ├── Hx711 │ ├── ByteFormat.cs │ ├── HX711.cs │ ├── HX711.csproj │ ├── HX711CalibrationNotDoneException.cs │ ├── HX711Options.cs │ ├── HX711Reader.cs │ ├── Hx711Mode.cs │ ├── README.md │ ├── category.txt │ ├── raspberry_hx711_load_cell.png │ └── samples │ │ ├── HX711.Sample.csproj │ │ └── Program.cs │ ├── Hx711I2c │ ├── Hx711I2c.cs │ ├── Hx711I2c.csproj │ ├── Hx711I2c.sln │ ├── Hx711I2cRegister.cs │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Hx711I2c.Samples.csproj │ │ └── Program.cs │ ├── Ili934x │ ├── Chsc6440.cs │ ├── DragEventArgs.cs │ ├── Ili9341.cs │ ├── Ili9341Imaging.cs │ ├── Ili9342.cs │ ├── Ili934x.csproj │ ├── Ili934x.sln │ ├── Ili934xCommand.cs │ ├── README.md │ ├── Rgb565.cs │ ├── category.txt │ ├── samples │ │ ├── Ili934x.Samples.csproj │ │ ├── Program.cs │ │ └── images │ │ │ ├── Landscape.png │ │ │ └── test.png │ └── tests │ │ ├── DummySpiDriver.cs │ │ ├── Ili934x.Tests.cs │ │ ├── Ili934x.Tests.csproj │ │ ├── MockableGpioDriver.cs │ │ └── Rgb565Test.cs │ ├── Ina219 │ ├── Ina219.Sample.fzz │ ├── Ina219.Sample_bb.png │ ├── Ina219.cs │ ├── Ina219.csproj │ ├── Ina219.sln │ ├── Ina219Enum.cs │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Ina219.Samples.csproj │ │ └── Program.cs │ ├── Ip5306 │ ├── ButtonPress.cs │ ├── ButtonPressed.cs │ ├── ChargingBatteryVoltage.cs │ ├── ChargingCutOffCurrent.cs │ ├── ChargingCutOffVoltage.cs │ ├── ChargingLoopSelection.cs │ ├── ChargingUnderVoltage.cs │ ├── ConstantChargingVoltage.cs │ ├── Ip5306.cs │ ├── Ip5306.csproj │ ├── Ip5306.sln │ ├── LightDutyShutdownTime.cs │ ├── README.md │ ├── Register.cs │ ├── category.txt │ └── samples │ │ ├── Ip5306.samples.csproj │ │ └── Program.cs │ ├── Is31fl3730 │ ├── Current.cs │ ├── DisplayMode.cs │ ├── DotMatrix.cs │ ├── DotMatrix10x7.cs │ ├── DotMatrix5x7.cs │ ├── FunctionRegister.cs │ ├── Is31fl3730.cs │ ├── Is31fl3730.csproj │ ├── Is31fl3730.sln │ ├── MatrixMode.cs │ ├── MatrixValues.cs │ ├── MicroDotPhat30x7.cs │ ├── README.md │ ├── ShutdownMode.cs │ ├── category.txt │ └── samples │ │ ├── Matrix.csproj │ │ └── Program.cs │ ├── Is31fl3731 │ ├── Backpack16x9.cs │ ├── Bonnet16x8.cs │ ├── Breakout11x7.cs │ ├── BreakoutRgb5x5.cs │ ├── Is31fl3731.cs │ ├── Is31fl3731.csproj │ ├── Is31fl3731.sln │ ├── LedShimRgb28x1.cs │ ├── README.md │ ├── Registers.cs │ ├── ScrollPhat17x7.cs │ ├── category.txt │ └── samples │ │ ├── LedShim28x1 │ │ ├── LedShim28x1.csproj │ │ └── Program.cs │ │ ├── Matrix │ │ ├── Matrix.csproj │ │ └── Program.cs │ │ └── MatrixRgb │ │ ├── MatrixRgb.csproj │ │ └── Program.cs │ ├── KeyMatrix │ ├── 4x4kb.fzz │ ├── 4x4kb.png │ ├── 4x4kb_via_mcp23017.fzz │ ├── 4x4kb_via_mcp23017.png │ ├── KeyMatrix.cs │ ├── KeyMatrix.csproj │ ├── KeyMatrix.sln │ ├── KeyMatrixEvent.cs │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── KeyMatrix.Sample.csproj │ │ └── Program.cs │ ├── LidarLiteV3 │ ├── AcquisitionSettings.cs │ ├── LidarLiteV3.cs │ ├── LidarLiteV3.csproj │ ├── MeasurementRepetition.cs │ ├── PowerMode.cs │ ├── README.md │ ├── Register.cs │ ├── SystemStatus.cs │ ├── category.txt │ └── samples │ │ ├── LidarLiteV3.Sample.csproj │ │ └── Program.cs │ ├── LiquidLevel │ ├── LiquidLevel.csproj │ ├── LiquidLevel.sln │ ├── LiquidLevelSwitch.cs │ ├── Llc200d3sh.cs │ ├── README.md │ ├── category.txt │ ├── rpi-llc200d3sh.fzz │ ├── rpi-llc200d3sh_bb.png │ └── samples │ │ ├── LiquidLevelSwitch │ │ ├── LiquidLevelSwitch.Sample.csproj │ │ └── LiquidLevelSwitch.sample.cs │ │ └── Llc200d3sh │ │ ├── Llc200d3sh.Sample.csproj │ │ └── Llc200d3sh.sample.cs │ ├── Lis3Dh │ ├── AccelerationScale.cs │ ├── DataRate.cs │ ├── Lis3Dh.cs │ ├── Lis3Dh.csproj │ ├── Lis3Dh.sln │ ├── Lis3DhI2c.cs │ ├── OperatingMode.cs │ ├── README.md │ ├── Register.cs │ ├── category.txt │ └── samples │ │ ├── Lis3Dh.Samples.csproj │ │ └── Program.cs │ ├── Lm75 │ ├── LM75_circuit.fzz │ ├── LM75_circuit_bb.png │ ├── Lm75.cs │ ├── Lm75.csproj │ ├── Lm75.sln │ ├── README.md │ ├── Register.cs │ ├── RunningResult.jpg │ ├── category.txt │ ├── samples │ │ ├── Lm75.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── Lp55231 │ ├── Control1RegisterFlags.cs │ ├── Lp55231.cs │ ├── Lp55231.csproj │ ├── Lp55231.sln │ ├── MiscFlags.cs │ ├── README.md │ ├── Register.cs │ ├── category.txt │ └── samples │ │ ├── Lp55231.Samples.csproj │ │ └── Program.cs │ ├── Lps22hb │ ├── BduMode.cs │ ├── LowPassFilter.cs │ ├── Lps22hb.cs │ ├── Lps22hb.csproj │ ├── Lps22hb.sln │ ├── OutputRate.cs │ ├── README.md │ ├── Register.cs │ └── samples │ │ ├── Lps22hb.Samples.csproj │ │ └── Program.cs │ ├── Lps25h │ ├── Lps25h.cs │ ├── Lps25h.csproj │ ├── Lps25h.sln │ ├── README.md │ ├── Register.cs │ ├── category.txt │ └── samples │ │ ├── Lps25h.Samples.csproj │ │ └── Program.cs │ ├── Lsm9Ds1 │ ├── AccelerationScale.cs │ ├── AngularRateScale.cs │ ├── Lsm9Ds1.AccelerometerAndGyroscope.cs │ ├── Lsm9Ds1.Magnetometer.cs │ ├── Lsm9Ds1.csproj │ ├── Lsm9Ds1.sln │ ├── MagneticInductionScale.cs │ ├── README.md │ ├── RegisterAg.cs │ ├── RegisterM.cs │ ├── category.txt │ └── samples │ │ ├── Lsm9Ds1.AccelerometerAndGyroscope.Sample.cs │ │ ├── Lsm9Ds1.Magnetometer.Sample.cs │ │ ├── Lsm9Ds1.Samples.csproj │ │ └── Program.cs │ ├── M5Stack │ ├── M5Stack.csproj │ ├── M5Stack.sln │ ├── M5ToughPowerControl.cs │ ├── README.md │ └── category.txt │ ├── Max31856 │ ├── Max31856.cs │ ├── Max31856.csproj │ ├── Max31856.sln │ ├── README.md │ ├── Register.cs │ ├── ThermocoupleType.cs │ ├── category.txt │ ├── device.jpg │ └── samples │ │ ├── Max31856.Sample.cs │ │ └── Max31856.Samples.csproj │ ├── Max31865 │ ├── Configuration.cs │ ├── ConversionFilterMode.cs │ ├── FaultStatus.cs │ ├── MAX31865_circuit.fzz │ ├── MAX31865_circuit_bb.png │ ├── Max31865.cs │ ├── Max31865.csproj │ ├── Max31865.sln │ ├── PlatinumResistanceThermometerType.cs │ ├── README.md │ ├── Register.cs │ ├── ResistanceTemperatureDetectorWires.cs │ ├── category.txt │ ├── samples │ │ ├── Max31865.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── Max44009 │ ├── IntegrationTime.cs │ ├── MAX44009_circuit.fzz │ ├── MAX44009_circuit_bb.png │ ├── Max44009.cs │ ├── Max44009.csproj │ ├── Max44009.sln │ ├── README.md │ ├── Register.cs │ ├── RunningResult.jpg │ ├── WorkingMode.cs │ ├── category.txt │ ├── samples │ │ ├── Max44009.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── Max7219 │ ├── FixedSizeFont.cs │ ├── Fonts.cs │ ├── IFont.cs │ ├── MatrixGraphics.cs │ ├── Max7219-Part.fzpz │ ├── Max7219.cs │ ├── Max7219.csproj │ ├── Max7219.sln │ ├── README.md │ ├── Register.cs │ ├── RotationType.cs │ ├── Schema.fzz │ ├── Schema_bb.png │ ├── category.txt │ └── samples │ │ ├── Max7219.sample.csproj │ │ └── Program.cs │ ├── Mbi5027 │ ├── Mbi5027.cs │ ├── Mbi5027.csproj │ ├── Mbi5027.sln │ ├── Mbi5027PinMapping.cs │ ├── README.md │ ├── category.txt │ ├── mbi5027-basic-wiring.png │ ├── mbi5027-binary-clock.png │ └── samples │ │ ├── Mbi5027-driver.csproj │ │ └── Program.cs │ ├── Mcp23xxx │ ├── BankStyle.cs │ ├── BusAdapter.cs │ ├── I2cAdapter.cs │ ├── Mcp23008.cs │ ├── Mcp23009.cs │ ├── Mcp23017.cs │ ├── Mcp23018.cs │ ├── Mcp23S08.cs │ ├── Mcp23S09.cs │ ├── Mcp23S17.cs │ ├── Mcp23S17_I2c_ReadSwitches_WriteLeds.fzz │ ├── Mcp23S17_I2c_ReadSwitches_WriteLeds.png │ ├── Mcp23S17_Spi_ReadSwitches_WriteLeds.fzz │ ├── Mcp23S17_Spi_ReadSwitches_WriteLeds.png │ ├── Mcp23S18.cs │ ├── Mcp23x0x.cs │ ├── Mcp23x1x.cs │ ├── Mcp23xxx.cs │ ├── Mcp23xxx.csproj │ ├── Mcp23xxx.sln │ ├── Port.cs │ ├── README.md │ ├── Register.cs │ ├── SpiAdapter.cs │ ├── category.txt │ ├── samples │ │ ├── Mcp23xxx.Samples.csproj │ │ └── Program.cs │ └── tests │ │ ├── ConstructionTests.cs │ │ ├── EnableDisableTests.cs │ │ ├── EventHandlingTests.cs │ │ ├── GpioReadTests.cs │ │ ├── GpioWriteTests.cs │ │ ├── Mcp23xxx.Tests.csproj │ │ ├── Mcp23xxxTest.cs │ │ ├── OpCodeTests.cs │ │ └── RegisterTests.cs │ ├── Mcp25xxx │ ├── FrequencyAndSpeed.cs │ ├── InstructionFormat.cs │ ├── Mcp2515.cs │ ├── Mcp25625.cs │ ├── Mcp25xxx.cs │ ├── Mcp25xxx.csproj │ ├── Mcp25xxx.sln │ ├── McpBitrate.cs │ ├── Models │ │ ├── ReceivedCanMessage.cs │ │ └── SendingCanMessage.cs │ ├── README.md │ ├── ReadStatusResponse.cs │ ├── ReceiveBuffer.cs │ ├── Register │ │ ├── AcceptanceFilter │ │ │ ├── RxFxEid0.cs │ │ │ ├── RxFxEid8.cs │ │ │ ├── RxFxSidh.cs │ │ │ ├── RxFxSidl.cs │ │ │ ├── RxMxEid0.cs │ │ │ ├── RxMxEid8.cs │ │ │ ├── RxMxSidh.cs │ │ │ └── RxMxSidl.cs │ │ ├── Address.cs │ │ ├── BitTimeConfiguration │ │ │ ├── Cnf1.cs │ │ │ ├── Cnf2.cs │ │ │ └── Cnf3.cs │ │ ├── CanControl │ │ │ ├── CanCtrl.cs │ │ │ ├── CanStat.cs │ │ │ └── OperationMode.cs │ │ ├── ErrorDetection │ │ │ ├── Eflg.cs │ │ │ ├── Rec.cs │ │ │ └── Tec.cs │ │ ├── IRegister.cs │ │ ├── Interrupt │ │ │ ├── CanIntE.cs │ │ │ └── CanIntF.cs │ │ ├── MessageReceive │ │ │ ├── BfpCtrl.cs │ │ │ ├── OperatingMode.cs │ │ │ ├── RxB0Ctrl.cs │ │ │ ├── RxB1Ctrl.cs │ │ │ ├── RxBxDlc.cs │ │ │ ├── RxBxDn.cs │ │ │ ├── RxBxEid0.cs │ │ │ ├── RxBxEid8.cs │ │ │ ├── RxBxSidh.cs │ │ │ └── RxBxSidl.cs │ │ └── MessageTransmit │ │ │ ├── TxBxCtrl.cs │ │ │ ├── TxBxDlc.cs │ │ │ ├── TxBxDn.cs │ │ │ ├── TxBxEid0.cs │ │ │ ├── TxBxEid8.cs │ │ │ ├── TxBxSidh.cs │ │ │ ├── TxBxSidl.cs │ │ │ └── TxRtsCtrl.cs │ ├── RxBufferAddressPointer.cs │ ├── RxStatusResponse.cs │ ├── TransmitBuffer.cs │ ├── TxBufferAddressPointer.cs │ ├── category.txt │ ├── samples │ │ ├── Mcp25xxx.Samples.csproj │ │ └── Program.cs │ └── tests │ │ ├── Mcp25xxx.Tests.csproj │ │ ├── Mcp25xxxSpiDevice.cs │ │ ├── Mcp25xxxTests.cs │ │ ├── Models │ │ ├── ReceivedCanMessageTests.cs │ │ └── SendingCanMessageTests.cs │ │ ├── Register │ │ ├── AcceptanceFilter │ │ │ ├── RxFxEid0Tests.cs │ │ │ ├── RxFxEid8Tests.cs │ │ │ ├── RxFxSidhTests.cs │ │ │ ├── RxFxSidlTests.cs │ │ │ ├── RxMxEid0Tests.cs │ │ │ ├── RxMxEid8Tests.cs │ │ │ ├── RxMxSidhTests.cs │ │ │ └── RxMxSidlTests.cs │ │ ├── BitTimeConfiguration │ │ │ ├── Cnf1Tests.cs │ │ │ ├── Cnf2Tests.cs │ │ │ └── Cnf3Tests.cs │ │ ├── CanControl │ │ │ ├── CanCtrlTests.cs │ │ │ └── CanStatTests.cs │ │ ├── ErrorDetection │ │ │ ├── EflgTests.cs │ │ │ ├── RecTests.cs │ │ │ └── TecTests.cs │ │ ├── Interrupt │ │ │ ├── CanIntETests.cs │ │ │ └── CanIntFTests.cs │ │ ├── MessageReceive │ │ │ ├── BfpCtrlTests.cs │ │ │ ├── RxB0CtrlTests.cs │ │ │ ├── RxB1CtrlTests.cs │ │ │ ├── RxBxDlcTests.cs │ │ │ ├── RxBxDnTests.cs │ │ │ ├── RxBxEid0Tests.cs │ │ │ ├── RxBxEid8Tests.cs │ │ │ ├── RxBxSidhTests.cs │ │ │ └── RxBxSidlTests.cs │ │ └── MessageTransmit │ │ │ ├── TxBxCtrlTests.cs │ │ │ ├── TxBxDlcTests.cs │ │ │ ├── TxBxDnTests.cs │ │ │ ├── TxBxEid0Tests.cs │ │ │ ├── TxBxEid8Tests.cs │ │ │ ├── TxBxSidhTests.cs │ │ │ ├── TxBxSidlTests.cs │ │ │ └── TxRtsCtrlTests.cs │ │ └── RxStatusResponseTests.cs │ ├── Mcp3428 │ ├── Config.cs │ ├── ConversionResult.cs │ ├── Helpers.cs │ ├── Mcp3426.cs │ ├── Mcp3427.cs │ ├── Mcp3428.cs │ ├── Mcp3428.csproj │ ├── Mcp3428.sln │ ├── Mcp342x.cs │ ├── README.md │ ├── category.txt │ ├── rpi_led_adc_i2c.fzz │ ├── rpi_led_adc_i2c.png │ └── samples │ │ ├── Mcp3428.Samples.csproj │ │ └── Program.cs │ ├── Mcp3xxx │ ├── Mcp3001.cs │ ├── Mcp3002.cs │ ├── Mcp3004.cs │ ├── Mcp3008.cs │ ├── Mcp3201.cs │ ├── Mcp3202.cs │ ├── Mcp3204.cs │ ├── Mcp3208.cs │ ├── Mcp3301.cs │ ├── Mcp3302.cs │ ├── Mcp3304.cs │ ├── Mcp33xx.cs │ ├── Mcp3Base.cs │ ├── Mcp3xxx.cs │ ├── Mcp3xxx.csproj │ ├── Mcp3xxx.sln │ ├── README.md │ ├── category.txt │ ├── rpi-trimpot-spi.fzz │ ├── rpi-trimpot_gpio.fzz │ ├── rpi-trimpot_gpio.png │ ├── rpi-trimpot_spi.png │ └── samples │ │ ├── Mcp3008.Sample.csproj │ │ └── Program.cs │ ├── Mcp960x │ ├── ADCMeasurementResolutionType.cs │ ├── BurstModeTemperatureSamplesType.cs │ ├── ColdJunctionResolutionType.cs │ ├── DeviceIDType.cs │ ├── DigitalFilterCoefficientsType.cs │ ├── Mcp960x.cs │ ├── Mcp960x.csproj │ ├── Mcp960x.sln │ ├── README.md │ ├── Register.cs │ ├── Samples │ │ ├── Mcp960x.Samples.csproj │ │ └── Program.cs │ ├── ShutdownModesType.cs │ ├── ThermocoupleType.cs │ ├── category.txt │ └── device.png │ ├── Mcp9808 │ ├── Mcp9808.cs │ ├── Mcp9808.csproj │ ├── Mcp9808.sln │ ├── README.md │ ├── Register.cs │ ├── category.txt │ └── samples │ │ ├── Mcp9808.Samples.csproj │ │ └── Program.cs │ ├── Media │ ├── Media.csproj │ ├── Media.sln │ ├── README.md │ ├── SoundDevice │ │ ├── Devices │ │ │ └── UnixSoundDevice.cs │ │ ├── SoundConnectionSettings.cs │ │ ├── SoundDevice.cs │ │ ├── WavHeader.cs │ │ ├── WavHeaderChunk.cs │ │ └── samples │ │ │ ├── Alsa.Samples.csproj │ │ │ └── Program.cs │ ├── VideoDevice │ │ ├── ColorEffect.cs │ │ ├── Devices │ │ │ ├── Interop.videodev2.cs │ │ │ ├── Interop.videodev2.struct.cs │ │ │ └── UnixVideoDevice.cs │ │ ├── ExposureType.cs │ │ ├── PixelFormat.cs │ │ ├── PowerLineFrequency.cs │ │ ├── Resolution.cs │ │ ├── ResolutionType.cs │ │ ├── SceneMode.cs │ │ ├── VideoConnectionSettings.cs │ │ ├── VideoDevice.Converter.cs │ │ ├── VideoDevice.cs │ │ ├── VideoDeviceValue.cs │ │ ├── VideoDeviceValueType.cs │ │ ├── WhiteBalanceEffect.cs │ │ └── samples │ │ │ ├── MjpegStream │ │ │ ├── Camera.cs │ │ │ ├── Controllers │ │ │ │ └── Image.cs │ │ │ ├── MjpegStream.csproj │ │ │ ├── MjpegStream.sln │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ └── Startup.cs │ │ │ ├── Program.cs │ │ │ └── VideoDevice.Samples.csproj │ └── category.txt │ ├── Mfrc522 │ ├── Mfrc522.cs │ ├── Mfrc522.csproj │ ├── Mfrc522.sln │ ├── MfrcCommand.cs │ ├── MifareCardCommand.cs │ ├── README.md │ ├── Register.cs │ ├── RegisterElement │ │ ├── BitFraming.cs │ │ ├── Coll.cs │ │ ├── ComIr.cs │ │ ├── DivIrq.cs │ │ ├── Error.cs │ │ ├── Gain.cs │ │ ├── Mode.cs │ │ ├── ModeCrc.cs │ │ ├── SerialSpeed.cs │ │ ├── Status2.cs │ │ ├── TMode.cs │ │ └── TxControl.cs │ ├── Status.cs │ ├── category.txt │ └── samples │ │ ├── Mfrc522.Sample.csproj │ │ └── Program.cs │ ├── Mhz19b │ ├── AbmState.cs │ ├── DetectionRange.cs │ ├── Mhz19b.cs │ ├── Mhz19b.csproj │ ├── Mhz19b.sln │ ├── README.md │ ├── category.txt │ └── samples │ │ ├── Mhz19b.Samples.csproj │ │ └── Program.cs │ ├── Mlx90614 │ ├── MLX90614_circuit.fzz │ ├── MLX90614_circuit_bb.jpg │ ├── Mlx90614.cs │ ├── Mlx90614.csproj │ ├── Mlx90614.sln │ ├── README.md │ ├── Register.cs │ ├── RunningResult.jpg │ ├── category.txt │ ├── samples │ │ ├── Mlx90614.Sample.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── MotorHat │ ├── AdafruitMotorPinProvider.cs │ ├── DCMotor3Pwm.cs │ ├── MotorHat.cs │ ├── MotorHat.csproj │ ├── MotorHat.sln │ ├── MotorPinProvider.cs │ ├── MotorPins.cs │ ├── README.md │ ├── WaveshareMotorPinProvider.cs │ ├── category.txt │ └── samples │ │ ├── MotorHat.Samples.csproj │ │ └── Program.cs │ ├── Mpr121 │ ├── ChannelStatusesChangedEventArgs.cs │ ├── Channels.cs │ ├── Mpr121.cs │ ├── Mpr121.csproj │ ├── Mpr121.sln │ ├── Mpr121Configuration.cs │ ├── README.md │ ├── Registers.cs │ ├── category.txt │ └── samples │ │ ├── Mpr121.Samples.csproj │ │ └── Program.cs │ ├── Mpu6886 │ ├── AccelerometerLowPowerMode.cs │ ├── AccelerometerScale.cs │ ├── AxisEnabled.cs │ ├── GyroscopeScale.cs │ ├── InterruptEnable.cs │ ├── Mpu6886.cs │ ├── Mpu6886.csproj │ ├── Mpu6886.sln │ ├── README.md │ ├── Register.cs │ ├── category.txt │ └── samples │ │ ├── Mpu6886.Samples.csproj │ │ └── Program.cs │ ├── Mpu6xxx9xxx │ ├── AccelerometerBandwidth.cs │ ├── AccelerometerLowPowerFrequency.cs │ ├── AccelerometerRange.cs │ ├── Ak8963Attached.cs │ ├── ClockSource.cs │ ├── DisableModes.cs │ ├── FifoModes.cs │ ├── FritzingScheme │ │ ├── Mpu6050.fzz │ │ └── Mpu9250.fzz │ ├── GyroscopeBandwidth.cs │ ├── GyroscopeRange.cs │ ├── I2cBusFrequency.cs │ ├── I2cChannel.cs │ ├── Mpu6050.cs │ ├── Mpu6500.cs │ ├── Mpu6xxx9xxx.csproj │ ├── Mpu6xxx9xxx.sln │ ├── Mpu9250.cs │ ├── README.md │ ├── Register.cs │ ├── SelfTestScale.cs │ ├── UserControls.cs │ ├── category.txt │ ├── images │ │ ├── Mpu6050.png │ │ └── Mpu9250.png │ └── samples │ │ ├── Mpu6050 │ │ ├── Mpu6050.sample.csproj │ │ └── Program.cs │ │ └── Mpu9250 │ │ ├── Mpu9250.sample.csproj │ │ └── Program.cs │ ├── Nmea0183 │ ├── Ais │ │ ├── AidToNavigation.cs │ │ ├── AisMessage.cs │ │ ├── AisMessageFactory.cs │ │ ├── AisMessageType.cs │ │ ├── AisParser.cs │ │ ├── AisSafetyState.cs │ │ ├── AisTarget.cs │ │ ├── AisTargetExtensions.cs │ │ ├── AisTransceiverClass.cs │ │ ├── BaseStation.cs │ │ ├── GnssPositionStatus.cs │ │ ├── ManeuverIndicator.cs │ │ ├── MmsiType.cs │ │ ├── MovingTarget.cs │ │ ├── NavigationStatus.cs │ │ ├── NavigationalAidType.cs │ │ ├── Payload.cs │ │ ├── PayloadDecoder.cs │ │ ├── PayloadEncoder.cs │ │ ├── PositionAccuracy.cs │ │ ├── PositionFixType.cs │ │ ├── Raim.cs │ │ ├── SarAircraft.cs │ │ ├── Ship.cs │ │ ├── ShipRelativePosition.cs │ │ ├── ShipType.cs │ │ ├── SixBitAsciiEncoding.cs │ │ └── TrackEstimationParameters.cs │ ├── AisManager.cs │ ├── AisMessageId.cs │ ├── AisSentences │ │ ├── AddressedSafetyRelatedMessage.cs │ │ ├── AidToNavigationReportMessage.cs │ │ ├── BaseStationReportMessage.cs │ │ ├── BinaryAcknowledgeMessage.cs │ │ ├── BinaryAddressedMessage.cs │ │ ├── BinaryBroadcastMessage.cs │ │ ├── DataLinkManagementMessage.cs │ │ ├── ExtendedClassBCsPositionReportMessage.cs │ │ ├── InterrogationMessage.cs │ │ ├── PositionReportClassAAssignedScheduleMessage.cs │ │ ├── PositionReportClassAMessage.cs │ │ ├── PositionReportClassAMessageBase.cs │ │ ├── PositionReportClassAResponseToInterrogationMessage.cs │ │ ├── PositionReportForLongRangeApplicationsMessage.cs │ │ ├── SafetyRelatedAcknowledgementMessage.cs │ │ ├── SafetyRelatedBroadcastMessage.cs │ │ ├── StandardClassBCsPositionReportMessage.cs │ │ ├── StandardSarAircraftPositionReportMessage.cs │ │ ├── StaticAndVoyageRelatedDataMessage.cs │ │ ├── StaticDataReportMessage.cs │ │ ├── StaticDataReportPartAMessage.cs │ │ ├── StaticDataReportPartBMessage.cs │ │ ├── UtcAndDateInquiryMessage.cs │ │ └── UtcAndDateResponseMessage.cs │ ├── AisWarningType.cs │ ├── AutopilotController.cs │ ├── AutopilotErrorState.cs │ ├── DeviationTable.Extra.cs │ ├── DeviationTable.cs │ ├── DeviationTable.xsd │ ├── FilterRule.cs │ ├── Identification.Extra.cs │ ├── LoggingConfiguration.cs │ ├── LoggingSink.cs │ ├── MagneticDeviationCorrection.cs │ ├── MessageRouter.cs │ ├── Nmea0183.csproj │ ├── Nmea0183.sln │ ├── NmeaError.cs │ ├── NmeaLogDataReader.cs │ ├── NmeaParser.cs │ ├── NmeaSinkAndSource.cs │ ├── NmeaTcpClient.cs │ ├── NmeaTcpServer.cs │ ├── NmeaUdpServer.cs │ ├── PositionProvider.cs │ ├── QuerySentence.cs │ ├── README.md │ ├── Raw8BitEncoding.cs │ ├── Route.cs │ ├── RoutePoint.cs │ ├── SentenceCache.cs │ ├── SentenceId.cs │ ├── Sentences │ │ ├── AutopilotStatus.cs │ │ ├── BearingAndDistanceToWayPoint.cs │ │ ├── BearingOriginToDestination.cs │ │ ├── CardinalDirection.cs │ │ ├── CrossTrackError.cs │ │ ├── DepthBelowSurface.cs │ │ ├── DepthBelowTransducer.cs │ │ ├── DepthOfWater.cs │ │ ├── DistanceTraveledTroughWater.cs │ │ ├── EngineData.cs │ │ ├── EngineRevolutions.cs │ │ ├── EngineStatus.cs │ │ ├── EstimatedAccuracy.cs │ │ ├── FluidData.cs │ │ ├── FluidType.cs │ │ ├── GlobalPositioningSystemFixData.cs │ │ ├── GpsQuality.cs │ │ ├── HeadingAndDeclination.cs │ │ ├── HeadingAndTrackControl.cs │ │ ├── HeadingAndTrackControlStatus.cs │ │ ├── HeadingMagnetic.cs │ │ ├── HeadingTrue.cs │ │ ├── MeteorologicalComposite.cs │ │ ├── NavigationStatus.cs │ │ ├── NmeaSentence.cs │ │ ├── PositionFastUpdate.cs │ │ ├── ProprietaryMessage.cs │ │ ├── RawSentence.cs │ │ ├── RecommendedMinimumNavToDestination.cs │ │ ├── RecommendedMinimumNavigationInformation.cs │ │ ├── RotationSource.cs │ │ ├── RoutePart.cs │ │ ├── RudderSensorAngle.cs │ │ ├── SatelliteInfo.cs │ │ ├── SatellitesInView.cs │ │ ├── SeaSmartEngineDetail.cs │ │ ├── SeaSmartEngineFast.cs │ │ ├── SeaSmartFluidLevel.cs │ │ ├── SeatalkNmeaMessage.cs │ │ ├── TimeDate.cs │ │ ├── TrackMadeGood.cs │ │ ├── TransducerDataSet.cs │ │ ├── TransducerMeasurement.cs │ │ ├── WaterSpeedAndAngle.cs │ │ ├── Waypoint.cs │ │ ├── WindDirectionWithRespectToNorth.cs │ │ └── WindSpeedAndAngle.cs │ ├── SerialPortInterfaces.fzz │ ├── SerialPortInterfaces_schema.png │ ├── SystemClockSynchronizer.cs │ ├── TalkerId.cs │ ├── TalkerSentence.cs │ ├── category.txt │ ├── samples │ │ ├── NmeaSimulator │ │ │ ├── NmeaSimulator.cs │ │ │ ├── NmeaSimulator.csproj │ │ │ ├── SimulatorArguments.cs │ │ │ └── SimulatorData.cs │ │ └── SimpleParser │ │ │ ├── SimpleParser.cs │ │ │ └── SimpleParser.csproj │ └── tests │ │ ├── Ais │ │ ├── AddressedSafetyRelatedMessageTests.cs │ │ ├── AidToNavigationReportMessageTests.cs │ │ ├── AisManagerTest.cs │ │ ├── AisTargetTests.cs │ │ ├── BaseStationReportMessageTests.cs │ │ ├── BinaryAcknowledgeMessageTests.cs │ │ ├── BinaryAddressedMessageTests.cs │ │ ├── BinaryBroadcastMessageTests.cs │ │ ├── DataLinkManagementMessageTests.cs │ │ ├── ExtendedClassBCsPositionReportMessageTests.cs │ │ ├── InterrogationMessageTests.cs │ │ ├── MessageTestBase.cs │ │ ├── ParserTests.cs │ │ ├── PositionReportClassAAssignedScheduleMessageTests.cs │ │ ├── PositionReportClassAMessageTests.cs │ │ ├── PositionReportClassAResponseToInterrogationMessageTests.cs │ │ ├── PositionReportForLongRangeApplicationsMessageTest.cs │ │ ├── SafetyRelatedAcknowledgementMessageTests.cs │ │ ├── SafetyRelatedBroadCastMessageTest.cs │ │ ├── StandardClassBCsPositionReportMessageTests.cs │ │ ├── StandardSarAircraftPositionReportMessageTests.cs │ │ ├── StaticAndVoyageRelatedDataMessageTests.cs │ │ ├── StaticDataReportMessageTests.cs │ │ ├── UtcAndDateInquiryMessageTests.cs │ │ └── UtcAndDateResponseMessageTests.cs │ │ ├── AutopilotControllerTest.cs │ │ ├── Calibration_Cirrus.xml │ │ ├── Calibration_Cirrus_2025.xml │ │ ├── Calibration_Cirrus_v1.xml │ │ ├── Calibration_Cirrus_v3.xml │ │ ├── Calibration_Cirrus_v5.xml │ │ ├── EngineSentencesTest.cs │ │ ├── GeodeticFunctionTests.cs │ │ ├── MagneticDeviationCorrectionTest.cs │ │ ├── MessageRouterTests.cs │ │ ├── NetworkPortScanner.cs │ │ ├── Nmea-2020-07-23-12-02.txt │ │ ├── Nmea-2021-08-25-16-25.txt │ │ ├── Nmea-2021-08-25-16-49.txt │ │ ├── Nmea-2023-07-29-07-03.txt │ │ ├── Nmea-2023-10-22-13-39.txt │ │ ├── Nmea-2025-07-24-06-40.txt │ │ ├── Nmea-2025-07-24-06-50.txt │ │ ├── Nmea-AisSpecialTargets.txt │ │ ├── Nmea0183.Tests.csproj │ │ ├── NmeaParserTest.cs │ │ ├── NmeaTcpClientAndServerTest.cs │ │ ├── NmeaUdpServerTest.cs │ │ ├── PositionProviderTests.cs │ │ ├── SentenceCacheTest.cs │ │ ├── SentenceTests.cs │ │ ├── SetCultureForTest.cs │ │ └── TestDataHelper.cs │ ├── Nrf24l01 │ ├── Command.cs │ ├── DataRate.cs │ ├── DataReceivedEventArgs.cs │ ├── NRF_circuit.fzz │ ├── NRF_circuit_bb.jpg │ ├── Nrf24l01.cs │ ├── Nrf24l01.csproj │ ├── Nrf24l01.sln │ ├── Nrf24l01Pipe.cs │ ├── OutputPower.cs │ ├── PowerMode.cs │ ├── README.md │ ├── Register.cs │ ├── RunningResult.jpg │ ├── WorkingMode.cs │ ├── category.txt │ ├── samples │ │ ├── Nrf24l01.Samples.csproj │ │ └── Program.cs │ └── sensor.jpg │ ├── OneWire │ ├── DeviceFamily.cs │ ├── FamilyBindings │ │ ├── OneWireThermometerDevice.Linux.cs │ │ └── OneWireThermometerDevice.cs │ ├── OneWire.csproj │ ├── OneWire.sln │ ├── OneWireBus.Linux.cs │ ├── OneWireBus.cs │ ├── OneWireDevice.cs │ ├── README.md │ ├── category.txt │ ├── onewire-temp.fzz │ ├── onewire-temp_bb.png │ └── samples │ │ ├── OneWire.Samples.csproj │ │ └── Program.cs │ ├── Pca95x4 │ ├── Pca95x4.cs │ ├── Pca95x4.csproj │ ├── Pca95x4.sln │ ├── Pca95x4_I2c_WriteLeds.fzz │ ├── Pca95x4_I2c_WriteLeds.png │ ├── README.md │ ├── Register.cs │ ├── category.txt │ └── samples │ │ ├── Pca95x4.Samples.csproj │ │ └── Program.cs │ ├── Pca9685 │ ├── Mode1.cs │ ├── Mode2.cs │ ├── Pca9685.cs │ ├── Pca9685.csproj │ ├── Pca9685.sln │ ├── Pca9685PwmChannel.cs │ ├── README.md │ ├── Register.cs │ ├── category.txt │ └── samples │ │ ├── Pca9685.Sample.csproj │ │ └── Program.cs │ ├── Pcd8544 │ ├── FunctionSet.cs │ ├── Nokia-5110-LCD-Pinout.png │ ├── Pcd8544.cs │ ├── Pcd8544.csproj │ ├── Pcd8544.sln │ ├── PcdDisplayControl.cs │ ├── README.md │ ├── ScreenTemperature.cs │ ├── SetAddress.cs │ ├── category.txt │ └── samples │ │ ├── Pcd8544.samples.csproj │ │ ├── Program.cs │ │ ├── me.bmp │ │ ├── nokia_bw.bmp │ │ └── nonbmp.jpg │ ├── Pcx857x │ ├── Pca8574.cs │ ├── Pca8575.cs │ ├── Pcf8574.cs │ ├── Pcf8575.cs │ ├── Pcx8574.cs │ ├── Pcx8575.cs │ ├── Pcx857x.cs │ ├── Pcx857x.csproj │ ├── Pcx857x.sln │ ├── README.md │ ├── category.txt │ └── tests │ │ ├── ConstructionTests.cs │ │ ├── GpioReadTests.cs │ │ ├── GpioWriteTests.cs │ │ ├── Pcx857x.Tests.csproj │ │ └── Pcx857xTest.cs │ ├── PiJuice │ ├── Models │ │ ├── BatteryChargingTemperatureFault.cs │ │ ├── BatteryChemistry.cs │ │ ├── BatteryExtendedProfile.cs │ │ ├── BatteryOrigin.cs │ │ ├── BatteryProfile.cs │ │ ├── BatteryProfileSource.cs │ │ ├── BatteryProfileStatus.cs │ │ ├── BatteryState.cs │ │ ├── BatteryTemperatureSense.cs │ │ ├── Button.cs │ │ ├── ButtonEventType.cs │ │ ├── ChargingConfig.cs │ │ ├── FaultStatus.cs │ │ ├── IdEepromAddress.cs │ │ ├── LED.cs │ │ ├── LEDBlink.cs │ │ ├── LEDConfig.cs │ │ ├── LEDFunction.cs │ │ ├── PiJuiceCommand.cs │ │ ├── PiJuiceInfo.cs │ │ ├── PowerInState.cs │ │ ├── PowerInput.cs │ │ ├── PowerInputType.cs │ │ ├── PowerRegulatorMode.cs │ │ ├── RelativeStateOfChangeEstimationType.cs │ │ ├── RunPin.cs │ │ ├── Status.cs │ │ ├── SystemPowerSwitch.cs │ │ └── WakeUpOnCharge.cs │ ├── PiJuice.cs │ ├── PiJuice.sln │ ├── PiJuiceConfig.cs │ ├── PiJuiceDevice.csproj │ ├── PiJuicePower.cs │ ├── PiJuiceStatus.cs │ ├── README.md │ ├── category.txt │ ├── pijuice.jpg │ ├── sample.jpg │ └── samples │ │ ├── PiJuiceDevice.sample.cs │ │ └── PiJuiceDevice.sample.csproj │ ├── Pn5180 │ ├── Command.cs │ ├── EepromAddress.cs │ ├── Pn5180.cs │ ├── Pn5180.csproj │ ├── Pn5180.sln │ ├── RBlock.cs │ ├── README.md │ ├── RadioFrequencyCollision.cs │ ├── RadioFrequencyStatus.cs │ ├── ReceiverRadioFrequencyConfiguration.cs │ ├── Register.cs │ ├── SelectedPiccInformation.cs │ ├── TransmitterRadioFrequencyConfiguration.cs │ ├── category.txt │ ├── pn5180_ft4222.png │ └── samples │ │ ├── Pn5180sample.csproj │ │ └── Program.cs │ ├── Pn532 │ ├── AsTarget │ │ ├── TargetBaudRateInitialized.cs │ │ ├── TargetFeliCaParameters.cs │ │ ├── TargetFramingType.cs │ │ ├── TargetMifareParameters.cs │ │ ├── TargetModeInitialization.cs │ │ ├── TargetModeInitialized.cs │ │ ├── TargetPiccParameters.cs │ │ ├── TargetState.cs │ │ └── TargetStatus.cs │ ├── BaudRate.cs │ ├── CommandSet.cs │ ├── DiagnoseMode.cs │ ├── ErrorCode.cs │ ├── FirmwareVersion.cs │ ├── ListPassive │ │ ├── MaxTarget.cs │ │ ├── PollingType.cs │ │ └── TargetBaudRate.cs │ ├── OperatingMode.cs │ ├── P3.cs │ ├── P7.cs │ ├── ParametersFlags.cs │ ├── Pn532.cs │ ├── Pn532.csproj │ ├── Pn532.sln │ ├── README.md │ ├── RFConfigurationTimeout.cs │ ├── RfConfiguration │ │ ├── Analog106kbpsTypeAMode.cs │ │ ├── Analog212-424_848kbpsMode.cs │ │ ├── Analog212_424kbpsMode.cs │ │ ├── AnalogSettingsTypeBMode.cs │ │ ├── MaxRetriesMode.cs │ │ ├── RfFieldMode.cs │ │ ├── RfTimeout.cs │ │ └── VariousTimingsMode.cs │ ├── RfConfigurationMode.cs │ ├── SecurityAccessModuleMode.cs │ ├── SfrRegister.cs │ ├── VersionSupported.cs │ ├── WakeUpEnable.cs │ ├── category.txt │ └── samples │ │ ├── Pn532sample.csproj │ │ └── Program.cs │ ├── README-nuget.md │ ├── README.md │ ├── RGBLedMatrix │ ├── Gpio.cs │ ├── PinMapping.cs │ ├── README.md │ ├── RGBLedMatrix.csproj │ ├── RGBLedMatrix.sln │ ├── RgbLedMatrix.cs │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ ├── RGBLedMatrix.sample.csproj │ │ ├── bitmaps │ │ ├── 01d.bmp │ │ ├── 01d.org.bmp │ │ ├── 01n.bmp │ │ ├── 02d.bmp │ │ ├── 02n.bmp │ │ ├── 03d.bmp │ │ ├── 03n.bmp │ │ ├── 04d.bmp │ │ ├── 04n.bmp │ │ ├── 09d.bmp │ │ ├── 09n.bmp │ │ ├── 10d.bmp │ │ ├── 10n.bmp │ │ ├── 11d.bmp │ │ ├── 11n.bmp │ │ ├── 13d.bmp │ │ ├── 13n.bmp │ │ ├── 50d.bmp │ │ ├── 50n.bmp │ │ ├── dotnet-bot-branded-32x32.bmp │ │ ├── i-love-dotnet.bmp │ │ └── weather-icons.jpg │ │ └── fonts │ │ ├── 10x20.bdf │ │ ├── 4x6.bdf │ │ ├── 5x7.bdf │ │ ├── 6x12.bdf │ │ ├── 8x13B.bdf │ │ └── AUTHORS │ ├── RadioReceiver │ ├── Devices │ │ └── Tea5767 │ │ │ ├── FrequencyRange.cs │ │ │ ├── README.md │ │ │ ├── SearchDirection.cs │ │ │ ├── Tea5767.cs │ │ │ └── sensor.jpg │ ├── README.md │ ├── RadioReceiver.csproj │ ├── RadioReceiver.sln │ ├── RadioReceiverBase.cs │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── RadioReceiver.Samples.csproj │ ├── RadioTransmitter │ ├── Devices │ │ └── Kt0803 │ │ │ ├── BassBoost.cs │ │ │ ├── Kt0803.cs │ │ │ ├── PgaGain.cs │ │ │ ├── README.md │ │ │ ├── Region.cs │ │ │ ├── Register.cs │ │ │ ├── TransmissionPower.cs │ │ │ └── sensor.jpg │ ├── README.md │ ├── RadioTransmitter.csproj │ ├── RadioTransmitter.sln │ ├── RadioTransmitterBase.cs │ ├── category.txt │ ├── samples │ │ ├── Program.cs │ │ └── RadioTransmitter.Samples.csproj │ └── sensor.jpg │ ├── RotaryEncoder │ ├── QuadratureRotaryEncoder.cs │ ├── README.md │ ├── RotaryEncoder.Sample.fzz │ ├── RotaryEncoder.Sample_bb.png │ ├── RotaryEncoder.csproj │ ├── RotaryEncoder.sln │ ├── RotaryEncoderEventArgs.cs │ ├── ScaledQuadratureEncoder.cs │ ├── category.txt │ ├── encoder.png │ ├── pec11r.png │ └── samples │ │ ├── RotaryEncoder.Sample.cs │ │ └── RotaryEncoder.Samples.csproj │ ├── Rtc │ ├── Circuit_DS1307.fzz │ ├── Circuit_DS1307_bb.png │ ├── Devices │ │ ├── Ds1307 │ │ │ ├── Ds1307.cs │ │ │ ├── Ds1307Register.cs │ │ │ ├── README.md │ │ │ └── sensor.jpg │ │ ├── Ds3231 │ │ │ ├── Ds3231.cs │ │ │ ├── Ds3231Alarm.cs │ │ │ ├── Ds3231AlarmOne.cs │ │ │ ├── Ds3231AlarmOneMatchMode.cs │ │ │ ├── Ds3231AlarmTwo.cs │ │ │ ├── Ds3231AlarmTwoMatchMode.cs │ │ │ ├── Ds3231Register.cs │ │ │ ├── README.md │ │ │ └── sensor.jpg │ │ └── Pcf8563 │ │ │ ├── Pcf8563.cs │ │ │ ├── Pcf8563Register.cs │ │ │ ├── README.md │ │ │ └── sensor.jpg │ ├── README.md │ ├── Rtc.csproj │ ├── Rtc.sln │ ├── RtcBase.cs │ ├── RunningResult.jpg │ ├── SystemClock.cs │ ├── category.txt │ ├── samples │ │ ├── Program.cs │ │ └── Rtc.Samples.csproj │ └── tests │ │ ├── Rtc.Tests.csproj │ │ └── SystemClockTests.cs │ ├── Scd4x │ ├── README.md │ ├── Scd4x.cs │ ├── Scd4x.csproj │ ├── Scd4x.sln │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── Scd4x.Samples.csproj │ ├── Seatalk1 │ ├── AutoPilotRemoteController.cs │ ├── Messages │ │ ├── ApparentWindAngle.cs │ │ ├── ApparentWindSpeed.cs │ │ ├── AutopilotAlarms.cs │ │ ├── AutopilotButtons.cs │ │ ├── AutopilotCalibrationParameter.cs │ │ ├── AutopilotCalibrationParameterMessage.cs │ │ ├── AutopilotWindStatus.cs │ │ ├── CompassHeadingAndRudderPosition.cs │ │ ├── CompassHeadingAutopilotCourse.cs │ │ ├── CompassHeadingAutopilotCourseAlt.cs │ │ ├── CourseComputerStatus.cs │ │ ├── CourseComputerWarnings.cs │ │ ├── DeadbandMode.cs │ │ ├── DeadbandSetting.cs │ │ ├── DisplayBacklightLevel.cs │ │ ├── Keystroke.cs │ │ ├── NavigationToWaypoint.cs │ │ ├── SeatalkMessage.cs │ │ ├── SetLampIntensity.cs │ │ ├── SpeedTroughWater.cs │ │ ├── TargetWaypointName.cs │ │ └── TurnDirection.cs │ ├── README.md │ ├── Seatalk1.csproj │ ├── Seatalk1.sln │ ├── Seatalk1Parser.cs │ ├── SeatalkInterface.cs │ ├── SeatalkInterface.png │ ├── SeatalkNmeaMessageWithDecoding.cs │ ├── SeatalkToNmeaConverter.cs │ ├── category.txt │ ├── samples │ │ ├── README.md │ │ ├── Seatalk1.Samples.cs │ │ └── Seatalk1.Samples.csproj │ ├── schematics │ │ └── SeaTalk1 │ │ │ ├── BC547_and_BC557.lib │ │ │ ├── Leds.lib │ │ │ ├── SeaTalk1.csv │ │ │ ├── SeaTalk1.kicad_pcb │ │ │ ├── SeaTalk1.kicad_prl │ │ │ ├── SeaTalk1.kicad_pro │ │ │ ├── SeaTalk1.kicad_sch │ │ │ └── SeaTalk1.wbk │ └── tests │ │ ├── AutoPilotRemoteControllerTests.cs │ │ ├── MessageTests.cs │ │ ├── Seatalk1.Tests.csproj │ │ └── Seatalk1Tests.cs │ ├── Seesaw │ ├── NeopixelSpeed.cs │ ├── README.md │ ├── Seesaw.csproj │ ├── Seesaw.sln │ ├── SeesawAdc.cs │ ├── SeesawBase.cs │ ├── SeesawEeprom.cs │ ├── SeesawEncoder.cs │ ├── SeesawGpio.cs │ ├── SeesawGpioDriver.cs │ ├── SeesawModules.cs │ ├── SeesawNeopixel.cs │ ├── SeesawSampleBlinkingLights.fzz │ ├── SeesawSampleBlinkingLights_bb.png │ ├── SeesawSampleCapabilities.fzz │ ├── SeesawSampleCapabilities_bb.png │ ├── SeesawSampleEncoder.fzz │ ├── SeesawSampleEncoder.png │ ├── SeesawSampleSoilSensor.fzz │ ├── SeesawSampleSoilSensor_bb.png │ ├── SeesawTouch.cs │ ├── category.txt │ └── samples │ │ ├── BlinkingLights │ │ ├── Seesaw.Sample.BlinkingLights.cs │ │ ├── Seesaw.Sample.BlinkingLights.csproj │ │ └── Volume.cs │ │ ├── Capabilities │ │ ├── Seesaw.Sample.Capabilities.cs │ │ └── Seesaw.Sample.Capabilities.csproj │ │ ├── Encoder │ │ ├── Seesaw.Sample.Encoder.cs │ │ └── Seesaw.Sample.Encoder.csproj │ │ ├── Neopixel │ │ ├── Seesaw.Sample.Neopixel.cs │ │ └── Seesaw.Sample.Neopixel.csproj │ │ └── SoilSensor │ │ ├── Seesaw.Sample.SoilSensor.cs │ │ └── Seesaw.Sample.SoilSensor.csproj │ ├── SenseHat │ ├── README.md │ ├── SenseHat.cs │ ├── SenseHat.csproj │ ├── SenseHat.sln │ ├── SenseHatAccelerometerAndGyroscope.cs │ ├── SenseHatJoystick.cs │ ├── SenseHatLedMatrix.cs │ ├── SenseHatLedMatrixI2c.cs │ ├── SenseHatLedMatrixSysFs.cs │ ├── SenseHatMagnetometer.cs │ ├── SenseHatPressureAndTemperature.cs │ ├── SenseHatTemperatureAndHumidity.cs │ ├── category.txt │ └── samples │ │ ├── AccelerometerAndGyroscope.Sample.cs │ │ ├── Joystick.Sample.cs │ │ ├── LedMatrix.Sample.cs │ │ ├── Magnetometer.Sample.cs │ │ ├── PressureAndTemperature.Sample.cs │ │ ├── Program.cs │ │ ├── SenseHat.Samples.csproj │ │ └── TemperatureAndHumidity.Sample.cs │ ├── SensorHub │ ├── README.md │ ├── SensorHub.cs │ ├── SensorHub.csproj │ ├── SensorHub.sln │ ├── category.txt │ ├── samples │ │ ├── SensorHub.Sample.cs │ │ └── SensorHub.Samples.csproj │ └── tests │ │ ├── SensorHub.Tests.cs │ │ └── SensorHub.Tests.csproj │ ├── ServoMotor │ ├── README.md │ ├── ServoMotor.cs │ ├── ServoMotor.csproj │ ├── ServoMotor.fzz │ ├── ServoMotor.png │ ├── ServoMotor.sln │ ├── category.txt │ ├── samples │ │ ├── Program.cs │ │ └── ServoMotor.Sample.csproj │ └── tests │ │ ├── ServoMotor.Tests.csproj │ │ └── ServoMotorTests.cs │ ├── Shared │ └── Sensirion.cs │ ├── ShiftRegister │ ├── README.md │ ├── ShiftRegister.cs │ ├── ShiftRegister.csproj │ ├── ShiftRegister.sln │ ├── ShiftRegisterPinMapping.cs │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── ShiftRegister-driver.csproj │ ├── Sht3x │ ├── I2cAddress.cs │ ├── README.md │ ├── Register.cs │ ├── Resolution.cs │ ├── RunningResult.jpg │ ├── SHT3x_circuit.fzz │ ├── SHT3x_circuit_bb.jpg │ ├── Sht3x.cs │ ├── Sht3x.csproj │ ├── Sht3x.sln │ ├── category.txt │ ├── samples │ │ ├── Program.cs │ │ └── Sht3x.Samples.csproj │ └── sensor.jpg │ ├── Sht4x │ ├── README.md │ ├── Sht4x.cs │ ├── Sht4x.csproj │ ├── Sht4x.sln │ ├── Sht4xRepeatability.cs │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── Sht4x.Samples.csproj │ ├── Shtc3 │ ├── README.md │ ├── Register.cs │ ├── RunningResult.JPG │ ├── Shtc3.cs │ ├── Shtc3.csproj │ ├── Shtc3.sln │ ├── Status.cs │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── Shtc3.Samples.csproj │ ├── Si7021 │ ├── README.md │ ├── Register.cs │ ├── Resolution.cs │ ├── RunningResult.jpg │ ├── Si7021.cs │ ├── Si7021.csproj │ ├── Si7021.sln │ ├── Si7021_I2c_Read_Temp_Humidity.fzz │ ├── Si7021_I2c_Read_Temp_Humidity.png │ ├── category.txt │ ├── samples │ │ ├── Program.cs │ │ └── Si7021.Samples.csproj │ └── sensor.jpg │ ├── SkiaSharpAdapter │ ├── README.md │ ├── SkiaSharpAdapter.cs │ ├── SkiaSharpAdapter.csproj │ ├── SkiaSharpAdapter.sln │ ├── SkiaSharpBitmap.cs │ ├── SkiaSharpGraphicsExtensions.cs │ ├── SkiaSharpImageFactory.cs │ └── category.txt │ ├── Sn74hc595 │ ├── README.md │ ├── Sn74hc595.cs │ ├── Sn74hc595.csproj │ ├── Sn74hc595.sln │ ├── Sn74hc595PinMapping.cs │ ├── category.txt │ ├── samples │ │ ├── Program.cs │ │ └── Sn74hc595-driver.csproj │ ├── sn74hc595-led-bar-graph-spi.fzz │ ├── sn74hc595-led-bar-graph-spi_bb.png │ ├── sn74hc595-led-bar-graph.fzz │ ├── sn74hc595-led-bar-graph_bb.png │ ├── sn74hc595-minimal-led-bar-graph-double-up.fzz │ ├── sn74hc595-minimal-led-bar-graph-double-up_bb.png │ ├── sn74hc595-minimal-led-bar-graph.fzz │ └── sn74hc595-minimal-led-bar-graph_bb.png │ ├── SocketCan │ ├── CanFlags.cs │ ├── CanFrame.cs │ ├── CanId.cs │ ├── CanRaw.cs │ ├── Interop.cs │ ├── README.md │ ├── SafeCanRawSocketHandle.cs │ ├── SocketCan.csproj │ ├── SocketCan.sln │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── SocketCan.Samples.csproj │ ├── SoftPwm │ ├── README.md │ ├── SoftPwm.sln │ ├── SoftwarePwm.csproj │ ├── SoftwarePwmChannel.cs │ ├── category.txt │ ├── pwmled.fzz │ ├── pwmled.png │ └── samples │ │ ├── Program.cs │ │ └── SoftPwm.sample.csproj │ ├── SoftwareSpi │ ├── README.md │ ├── SoftwareSpi.cs │ ├── SoftwareSpi.csproj │ ├── SoftwareSpi.sln │ └── category.txt │ ├── Ssd1351 │ ├── README.md │ ├── Ssd1351.Sample.fzz │ ├── Ssd1351.Sample.png │ ├── Ssd1351.cs │ ├── Ssd1351.csproj │ ├── Ssd1351.sln │ ├── Ssd1351Commands.cs │ ├── Ssd1351Imaging.cs │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ ├── Ssd1351.Samples.csproj │ │ └── images │ │ ├── breakoutboard.png │ │ ├── dotnet.png │ │ └── fish.png │ ├── Ssd13xx │ ├── Commands │ │ ├── ActivateScroll.cs │ │ ├── DeactivateScroll.cs │ │ ├── ICommand.cs │ │ ├── ISharedCommand.cs │ │ ├── ISsd1306Command.cs │ │ ├── ISsd1309Command.cs │ │ ├── ISsd1327Command.cs │ │ ├── SetContrastControlForBank0.cs │ │ ├── SetDisplayOff.cs │ │ ├── SetDisplayOn.cs │ │ ├── SetInverseDisplay.cs │ │ ├── SetMultiplexRatio.cs │ │ ├── Ssd1306Commands │ │ │ ├── ContinuousVerticalAndHorizontalScrollSetup.cs │ │ │ ├── EntireDisplayOn.cs │ │ │ ├── HorizontalScrollSetup.cs │ │ │ ├── NoOperation.cs │ │ │ ├── SetChargePump.cs │ │ │ ├── SetColumnAddress.cs │ │ │ ├── SetComOutputScanDirection.cs │ │ │ ├── SetComPinsHardwareConfiguration.cs │ │ │ ├── SetDisplayClockDivideRatioOscillatorFrequency.cs │ │ │ ├── SetDisplayOffset.cs │ │ │ ├── SetDisplayStartLine.cs │ │ │ ├── SetHigherColumnStartAddressForPageAddressingMode.cs │ │ │ ├── SetLowerColumnStartAddressForPageAddressingMode.cs │ │ │ ├── SetMemoryAddressingMode.cs │ │ │ ├── SetNormalDisplay.cs │ │ │ ├── SetPageAddress.cs │ │ │ ├── SetPageStartAddressForPageAddressingMode.cs │ │ │ ├── SetPreChargePeriod.cs │ │ │ ├── SetSegmentReMap.cs │ │ │ ├── SetVcomhDeselectLevel.cs │ │ │ └── SetVerticalScrollArea.cs │ │ └── Ssd1327Commands │ │ │ ├── SelectDefaultLinearGrayScaleTable.cs │ │ │ ├── SetColumnAddress.cs │ │ │ ├── SetComDeselectVoltageLevel.cs │ │ │ ├── SetDisplayClockDivideRatioOscillatorFrequency.cs │ │ │ ├── SetDisplayOffset.cs │ │ │ ├── SetDisplayStartLine.cs │ │ │ ├── SetInternalVddRegulator.cs │ │ │ ├── SetNormalDisplay.cs │ │ │ ├── SetPhaseLength.cs │ │ │ ├── SetPreChargeVoltage.cs │ │ │ ├── SetReMap.cs │ │ │ ├── SetRowAddress.cs │ │ │ ├── SetSecondPreChargePeriod.cs │ │ │ ├── SetSecondPreChargeVsl.cs │ │ │ └── SetUnlockDriver.cs │ ├── README.md │ ├── Ssd1306.cs │ ├── Ssd1306_I2c_PiOled.fzz │ ├── Ssd1306_I2c_PiOled.png │ ├── Ssd1309.cs │ ├── Ssd1327.cs │ ├── Ssd13xx.cs │ ├── Ssd13xx.csproj │ ├── Ssd13xx.sln │ ├── category.txt │ ├── samples │ │ ├── i2c │ │ │ └── Ssd13xx.Samples │ │ │ │ ├── Program.cs │ │ │ │ ├── Ssd13xx.Samples.csproj │ │ │ │ └── images │ │ │ │ ├── dotnet-bot.bmp │ │ │ │ ├── github-dotnet-iot-black.bmp │ │ │ │ ├── github-dotnet-iot-white.bmp │ │ │ │ └── shapes.bmp │ │ └── spi │ │ │ └── Ssd1309.Spi.Samples │ │ │ ├── Program.cs │ │ │ ├── Scripts │ │ │ └── deployToPi.ps1 │ │ │ ├── Simulations │ │ │ ├── FallingSandSimulation.cs │ │ │ └── Ssd1309Simulation.cs │ │ │ ├── Ssd1309.Spi.Samples.csproj │ │ │ └── TransparentSsd1309FallingSand.jpeg │ └── tests │ │ ├── Commands │ │ ├── ActivateScrollTests.cs │ │ ├── ContinuousVerticalAndHorizontalScrollSetupTests.cs │ │ ├── DeactivateScrollTests.cs │ │ ├── EntireDisplayOnTests.cs │ │ ├── HorizontalScrollSetupTests.cs │ │ ├── NoOperationTests.cs │ │ ├── SetChargePumpTests.cs │ │ ├── SetColumnAddressTests.cs │ │ ├── SetComOutputScanDirectionTests.cs │ │ ├── SetComPinsHardwareConfigurationTests.cs │ │ ├── SetContrastControlForBank0Tests.cs │ │ ├── SetDisplayClockDivideRatioOscillatorFrequencyTests.cs │ │ ├── SetDisplayOffTests.cs │ │ ├── SetDisplayOffsetTests.cs │ │ ├── SetDisplayOnTests.cs │ │ ├── SetDisplayStartLineTests.cs │ │ ├── SetHigherColumnStartAddressForPageAddressingModeTests.cs │ │ ├── SetInverseDisplayTests.cs │ │ ├── SetLowerColumnStartAddressForPageAddressingModeTests.cs │ │ ├── SetMemoryAddressingModeTests.cs │ │ ├── SetMultiplexRatioTests.cs │ │ ├── SetNormalDisplayTests.cs │ │ ├── SetPageAddressTests.cs │ │ ├── SetPageStartAddressForPageAddressingModeTests.cs │ │ ├── SetPreChargePeriodTests.cs │ │ ├── SetSegmentReMapTests.cs │ │ ├── SetVcomhDeselectLevelTests.cs │ │ └── SetVerticalScrollAreaTests.cs │ │ └── Ssd13xx.Tests.csproj │ ├── StUsb4500 │ ├── Enumerations │ │ ├── StUsb4500Register.cs │ │ ├── UsbCCableConnection.cs │ │ ├── UsbPdControlMessageType.cs │ │ └── UsbPdDataMessageType.cs │ ├── Helper │ │ └── UsbPdObjectHelper.cs │ ├── Objects │ │ ├── BatteryObject.cs │ │ ├── FixedSupplyObject.cs │ │ ├── PowerDeliveryObject.cs │ │ ├── RequestDataObject.cs │ │ ├── UsbPdMessageHeader.cs │ │ └── VariableSupplyObject.cs │ ├── README.md │ ├── StUsb4500.cs │ ├── StUsb4500.csproj │ ├── StUsb4500.sln │ ├── StUsb4500Constants.cs │ ├── category.txt │ └── samples │ │ ├── StUsb4500.Sample.cs │ │ └── StUsb4500.Samples.csproj │ ├── System.Device.Model │ ├── CommandAttribute.cs │ ├── ComponentAttribute.cs │ ├── InterfaceAttribute.cs │ ├── PropertyAttribute.cs │ ├── README.md │ ├── System.Device.Model.csproj │ ├── TelemetryAttribute.cs │ └── category.txt │ ├── Tca954x │ ├── MultiplexerChannel.cs │ ├── PossibleMuxAddress.png │ ├── README.md │ ├── TCA9548A.jpg │ ├── TCA9548A_Connections.png │ ├── TCA9548A_usage.fzz │ ├── Tca9548A.cs │ ├── Tca9548AChannelBus.cs │ ├── Tca9548ADevice.cs │ ├── Tca9548a.sln │ ├── Tca954x.csproj │ ├── category.txt │ ├── samples │ │ ├── Program.cs │ │ └── Tca9548a.sample.csproj │ └── tests │ │ ├── Tca9548Tests.cs │ │ └── Tca954x.Tests.csproj │ ├── Tca955x │ ├── README.md │ ├── Register.cs │ ├── Tca9554.cs │ ├── Tca9555.cs │ ├── Tca9555Register.cs │ ├── Tca955x.cs │ ├── Tca955x.csproj │ ├── Tca955x.sln │ ├── category.txt │ ├── samples │ │ ├── README.md │ │ ├── Tca955x.Sample.cs │ │ └── Tca955x.Samples.csproj │ └── tests │ │ ├── MockableI2cDevice.cs │ │ ├── Tca9554Tests.cs │ │ ├── Tca9555Tests.cs │ │ └── Tca955x.Tests.csproj │ ├── Tcs3472x │ ├── Gain.cs │ ├── InterruptState.cs │ ├── README.md │ ├── Registers.cs │ ├── TCS3472Type.cs │ ├── Tcs3472x.cs │ ├── Tcs3472x.csproj │ ├── Tcs3472x.sln │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── Tcs3472x.sample.csproj │ ├── Tlc1543 │ ├── Channel.cs │ ├── README.md │ ├── Tlc1543.cs │ ├── Tlc1543.csproj │ ├── Tlc1543.sln │ ├── category.txt │ └── samples │ │ ├── Tlc1543.Sample.cs │ │ └── Tlc1543.Samples.csproj │ ├── Tm16xx │ ├── Character.cs │ ├── LedSegment.cs │ ├── README.md │ ├── Tm1637.cs │ ├── Tm1650.cs │ ├── Tm16xx.csproj │ ├── Tm16xx.sln │ ├── Tm16xxBase.cs │ ├── Tm16xxI2CLikeBase.cs │ ├── category.txt │ ├── picture.png │ ├── samples │ │ ├── Program.cs │ │ └── Tm1637.sample.csproj │ └── tm1637.fzz │ ├── Tsl256x │ ├── Channel.cs │ ├── Gain.cs │ ├── IntegrationTime.cs │ ├── InterruptControl.cs │ ├── InterruptPersistence.cs │ ├── PackageType.cs │ ├── README.md │ ├── Register.cs │ ├── Tsl256x.cs │ ├── Tsl256x.csproj │ ├── Tsl256x.sln │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── Tsl256x.sample.csproj │ ├── UFireIse │ ├── Command.cs │ ├── README.md │ ├── Register.cs │ ├── UFireIse.cs │ ├── UFireIse.csproj │ ├── UFireIse.sln │ ├── UFireOrp.cs │ ├── UFirePh.cs │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── UFireIse.Sample.csproj │ ├── Uln2003 │ ├── README.md │ ├── StepperMode.cs │ ├── Uln2003-diagram.fzz │ ├── Uln2003-diagram.png │ ├── Uln2003.cs │ ├── Uln2003.csproj │ ├── Uln2003.png │ ├── Uln2003.sln │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── Uln2003.Samples.csproj │ ├── Vcnl4040 │ ├── AmbientLightInterruptConfiguration.cs │ ├── AmbientLightSensor.cs │ ├── Definitions │ │ ├── AlsIntegrationTime.cs │ │ ├── AlsInterrupt.cs │ │ ├── AlsInterruptPersistence.cs │ │ ├── AlsRange.cs │ │ ├── AlsResolution.cs │ │ ├── CommandCode.cs │ │ ├── PowerState.cs │ │ ├── ProximityInterruptMode.cs │ │ ├── PsActiveForceMode.cs │ │ ├── PsDuty.cs │ │ ├── PsIntegrationTime.cs │ │ ├── PsInterruptMode.cs │ │ ├── PsInterruptPersistence.cs │ │ ├── PsLedCurrent.cs │ │ ├── PsMultiPulse.cs │ │ ├── PsOutputRange.cs │ │ ├── PsProximityDetectionOutput.cs │ │ ├── PsSmartPersistenceState.cs │ │ ├── PsSunlightCancellationState.cs │ │ ├── PsTrig.cs │ │ └── PsWhiteChannelState.cs │ ├── EmitterConfiguration.cs │ ├── Internal │ │ ├── AlsConfRegister.cs │ │ ├── AlsDataRegister.cs │ │ ├── AlsHighInterruptThresholdRegister.cs │ │ ├── AlsLowInterruptThresholdRegister.cs │ │ ├── DataRegister.cs │ │ ├── IdRegister.cs │ │ ├── InterruptFlagRegister.cs │ │ ├── LevelRegister.cs │ │ ├── PsCancellationLevelRegister.cs │ │ ├── PsConf1Register.cs │ │ ├── PsConf2Register.cs │ │ ├── PsConf3Register.cs │ │ ├── PsDataRegister.cs │ │ ├── PsHighInterruptThresholdRegister.cs │ │ ├── PsLowInterruptThresholdRegister.cs │ │ ├── PsMsRegister.cs │ │ ├── Register.cs │ │ └── WhiteDataRegister.cs │ ├── InterruptFlags.cs │ ├── ProximityInterruptConfiguration.cs │ ├── ProximitySensor.cs │ ├── README.md │ ├── ReceiverConfiguration.cs │ ├── Vcnl4040.csproj │ ├── Vcnl4040Device.cs │ ├── Vncl4040.sln │ ├── category.txt │ ├── samples │ │ ├── Explorer │ │ │ ├── Explorer.Als.cs │ │ │ ├── Explorer.Device.cs │ │ │ ├── Explorer.Helper.cs │ │ │ ├── Explorer.Ps.cs │ │ │ ├── Explorer.cs │ │ │ ├── Vcnl4040.Explorer.cs │ │ │ └── Vcnl4040.Explorer.csproj │ │ ├── Simple │ │ │ ├── Vcnl4040.Simple.cs │ │ │ └── Vcnl4040.Simple.csproj │ │ ├── test_setup.fzz │ │ ├── test_setup_board.png │ │ └── test_setup_schematic.png │ └── tests │ │ ├── AmbientLightSensorTest.Configuration.cs │ │ ├── AmbientLightSensorTest.General.cs │ │ ├── AmbientLightSensorTest.Interrupt.cs │ │ ├── AmbientLightSensorTest.Measurement.cs │ │ ├── AmbientLightSensorTest.cs │ │ ├── I2cTestDevice.cs │ │ ├── Internal │ │ ├── AlsConfRegisterTest.cs │ │ ├── AlsDataRegisterTest.cs │ │ ├── AlsHighInterruptThresholdRegisterTest.cs │ │ ├── AlsLowInterruptThresholdRegisterTest.cs │ │ ├── IdRegisterTest.cs │ │ ├── InterruptFlagRegisterTest.cs │ │ ├── PsCancellationLevelRegisterTest.cs │ │ ├── PsCon1RegisterTest.cs │ │ ├── PsCon2RegisterTest.cs │ │ ├── PsCon3RegisterTest.cs │ │ ├── PsDataRegisterTest.cs │ │ ├── PsLowInterruptThresholdRegisterTest.cs │ │ ├── PsMsRegisterTest.cs │ │ ├── RegisterTest.cs │ │ └── WhiteDataRegisterTest.cs │ │ ├── ProximitySensorTest.Configuration.cs │ │ ├── ProximitySensorTest.General.cs │ │ ├── ProximitySensorTest.Interrupt.cs │ │ ├── ProximitySensorTest.Measurement.cs │ │ ├── ProximitySensorTest.cs │ │ ├── Vcnl4040.Tests.csproj │ │ ├── Vcnl4040DeviceTest.cs │ │ └── Vcnl4040TestDevice.cs │ ├── Vl53L0X │ ├── InfoDevice.cs │ ├── Information.cs │ ├── MeasurementMode.cs │ ├── OperationRange.cs │ ├── PeriodPulse.cs │ ├── Precision.cs │ ├── README.md │ ├── Registers.cs │ ├── SquadInfo.cs │ ├── StepEnables.cs │ ├── StepTimeouts.cs │ ├── VL53L0X.jpg │ ├── VcselType.cs │ ├── Vl53L0X.cs │ ├── Vl53L0X.csproj │ ├── Vl53L0X.sln │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── Vl53L0X.sample.csproj │ ├── Vl53L1X │ ├── Bootstate.cs │ ├── Precision.cs │ ├── README.md │ ├── RangeStatus.cs │ ├── Registers.cs │ ├── Roi.cs │ ├── TimingBudget.cs │ ├── VL53L1X.jpg │ ├── Vl53L1X.cs │ ├── Vl53L1X.csproj │ ├── Vl53L1X.sln │ ├── WindowDetectionMode.cs │ ├── category.txt │ └── samples │ │ ├── Program.cs │ │ └── Vl53L1X.sample.csproj │ └── Ws28xx │ ├── BitmapImageNeo3.cs │ ├── BitmapImageNeo3RGB.cs │ ├── BitmapImageNeo4.cs │ ├── BitmapImageWs2808.cs │ ├── README.md │ ├── RawPixelContainer.cs │ ├── Sk6812.cs │ ├── WS2808.png │ ├── Ws2808.cs │ ├── Ws2812B.cs │ ├── Ws2815B.cs │ ├── Ws28xx.cs │ ├── Ws28xx.csproj │ ├── Ws28xx.sln │ ├── category.txt │ ├── rpi-neo-pixels.fzz │ ├── rpi-neo-pixels_bb.png │ └── samples │ └── LEDStripSample │ ├── Animations.cs │ ├── LEDStripSample.csproj │ ├── MenuId.cs │ └── Program.cs └── tools ├── ArduinoCsCompiler ├── AnalysisStack.cs ├── ArduinoCompileTimeConstantAttribute.cs ├── ArduinoCsCompiler.csproj ├── ArduinoCsCompiler.sln ├── ArduinoImplementationAttribute.cs ├── ArduinoMethodDeclaration.cs ├── ArduinoReplacementAttribute.cs ├── ArduinoTask.cs ├── BlinkingLed.fzz ├── BlinkingLed_bb.png ├── BreakpointType.cs ├── ClassDeclaration.cs ├── ClassMember.cs ├── CodeStartupFlags.cs ├── CompilerCommandHandler.cs ├── CompilerMessage.cs ├── CompilerSettings.cs ├── Debugger.cs ├── DebuggerCommand.cs ├── DebuggerDataKind.cs ├── DebuggerOperation.cs ├── DebuggerVariable.cs ├── Directory.build.props ├── ECMA-335.pdf ├── EquatableField.cs ├── EquatableMethod.cs ├── ErrorManager.cs ├── ExceptionClause.cs ├── ExecutionSet.cs ├── ExecutorCommand.cs ├── FirmataIlCommandSequence.cs ├── Frontend │ ├── CommonConnectionOptions.cs │ ├── CompilerOptions.cs │ ├── CompilerRun.cs │ ├── ExecOptions.cs │ ├── ExecRun.cs │ ├── Frontend.csproj │ ├── OptionsBase.cs │ ├── PrepareOptions.cs │ ├── PrepareRun.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Run.cs │ ├── RunWithConnection.cs │ ├── TestOptions.cs │ └── TestRun.cs ├── Hal │ ├── ArduinoHardwareLevelAccess.cs │ ├── ArduinoNativeBoard.cs │ ├── ArduinoNativeGpioDriver.cs │ ├── ArduinoNativeHelpers.cs │ ├── ArduinoNativeI2cBus.cs │ └── ArduinoNativeI2cDevice.cs ├── IArduinoTask.cs ├── IlCapabilities.cs ├── IlCode.cs ├── IlCodeParser.cs ├── IlInstruction.cs ├── Interop.cs ├── KnownTypeTokens.cs ├── MethodFlags.cs ├── MethodInfoExtensions.cs ├── MethodState.cs ├── MicroCompiler.cs ├── MiniDebug.cs ├── OpCode.cs ├── OpCodeDefinitions.cs ├── README.md ├── RemoteStackFrame.cs ├── Runtime │ ├── MiniActivator.cs │ ├── MiniAppContext.cs │ ├── MiniArray.cs │ ├── MiniAssert.cs │ ├── MiniAssertionException.cs │ ├── MiniBitConverter.cs │ ├── MiniBitOperations.cs │ ├── MiniBuffer.cs │ ├── MiniByReference.cs │ ├── MiniCLRConfig.cs │ ├── MiniCalendar.cs │ ├── MiniCompareInfo.cs │ ├── MiniConsole.cs │ ├── MiniCultureInfo.cs │ ├── MiniDateTime.cs │ ├── MiniDebugger.cs │ ├── MiniDelegate.cs │ ├── MiniDependentHandle.cs │ ├── MiniEnum.cs │ ├── MiniEnvironment.cs │ ├── MiniEventSource.cs │ ├── MiniException.cs │ ├── MiniFileLoadException.cs │ ├── MiniFileSystem.cs │ ├── MiniGC.cs │ ├── MiniGen2GcCallback.cs │ ├── MiniIPAddressParser.cs │ ├── MiniInterlocked.cs │ ├── MiniInterop.Console.cs │ ├── MiniInterop.Dummy.cs │ ├── MiniInterop.Globalization.cs │ ├── MiniInterop.Kernel32.cs │ ├── MiniInterop.Ole32.cs │ ├── MiniInterop.Sys.cs │ ├── MiniInterop.User32.cs │ ├── MiniInterop.cs │ ├── MiniIntrospectionExtensions.cs │ ├── MiniLowLevelLock.cs │ ├── MiniMarshal.cs │ ├── MiniMath.cs │ ├── MiniMemoryMarshal.cs │ ├── MiniMethodTable.cs │ ├── MiniMonitor.cs │ ├── MiniObject.cs │ ├── MiniPath.cs │ ├── MiniPathHelper.cs │ ├── MiniPathInternal.cs │ ├── MiniRegistryKey.cs │ ├── MiniResourceManager.cs │ ├── MiniRuntimeHelpers.cs │ ├── MiniRuntimeInformation.cs │ ├── MiniRuntimeTypeHandle.cs │ ├── MiniSR.cs │ ├── MiniSerialPort.cs │ ├── MiniStackTrace.cs │ ├── MiniString.cs │ ├── MiniTextInfo.cs │ ├── MiniThread.cs │ ├── MiniThreadPool.cs │ ├── MiniType.cs │ ├── MiniUnsafe.cs │ ├── MiniValueType.cs │ ├── MiniVector128.cs │ ├── MiniWaitHandle.cs │ ├── MiniX86Intrinsics.cs │ └── UnitsNet │ │ ├── MiniDuration.cs │ │ ├── MiniLength.cs │ │ ├── MiniPressure.cs │ │ ├── MiniQuantityValue.cs │ │ ├── MiniRelativeHumidity.cs │ │ └── MiniTemperature.cs ├── RuntimeState.cs ├── SynchronousProgress.cs ├── SystemException.cs ├── VariableKind.cs ├── WriteRuntimeCoreData.cs ├── samples │ ├── BlinkingLed │ │ ├── BlinkingLed.csproj │ │ └── Program.cs │ └── WeatherStation │ │ ├── WeatherStation.cs │ │ └── WeatherStation.csproj └── tests │ ├── ArduinoCsCompiler.Tests.csproj │ ├── ArduinoNativeLibraryTest.cs │ ├── ArduinoTestBase.cs │ ├── DiningPhilosopher.cs │ ├── FirmataIlExecutorTests.cs │ ├── FrameworkBehaviorTests.cs │ ├── GarbageCollectorTests.cs │ ├── ITestInterface.cs │ ├── MethodInfoExtensionsTest.cs │ ├── MicroCompilerTests.cs │ ├── MiniExamples.cs │ ├── README.md │ ├── TestEnum.cs │ ├── TestMethods.cs │ ├── ThreadingTests.cs │ ├── WithGenericArg.cs │ └── xunit.runner.json ├── DevicesApiTester ├── Commands │ ├── Gpio │ │ ├── GpioBlinkLed.cs │ │ ├── GpioButtonEvent.cs │ │ ├── GpioButtonWait.cs │ │ ├── GpioCommand.cs │ │ ├── GpioDriverType.cs │ │ ├── GpioReadPin.cs │ │ └── GpioWritePin.cs │ ├── I2c │ │ ├── I2cCommand.cs │ │ ├── I2cDetect.cs │ │ ├── I2cDump.cs │ │ ├── I2cReadBytes.cs │ │ ├── I2cWriteBytes.cs │ │ └── I2cWriteRandomBytes.cs │ ├── Pwm │ │ ├── PwmCommand.cs │ │ └── PwmPinOutput.cs │ ├── Script │ │ └── ScriptRun.cs │ └── Spi │ │ ├── ReadBytes.cs │ │ ├── SpiCommand.cs │ │ ├── SpiWriteBytes.cs │ │ └── WriteRandomBytes.cs ├── DeviceApiTester.csproj ├── DeviceApiTester.sln ├── Infrastructure │ ├── CommandLineProgram.cs │ ├── DebuggableCommand.cs │ ├── DriverFactory.cs │ ├── HexStringUtilities.cs │ ├── ICommandVerb.cs │ ├── ICommandVerbAsync.cs │ └── ImplementationTypeAttribute.cs ├── Program.cs └── README.md ├── Directory.Build.props ├── Directory.Build.targets ├── GenerateDocFxStructure ├── CommandLineOptions.cs ├── GenerateDocFxStructure.csproj ├── GenerateDocFxStructure.sln ├── MessageHelper.cs ├── Program.cs └── README.md ├── device-listing ├── DeviceInfo.cs ├── Program.cs ├── README.md └── device-listing.csproj └── templates ├── DeviceBindingTemplate ├── README.md └── dotnet_new_device-binding_csharp │ ├── .template.config │ └── template.json │ ├── README.md │ ├── _DeviceBinding.cs │ ├── _DeviceBinding.csproj │ ├── _DeviceBinding.sln │ ├── samples │ ├── README.md │ ├── _DeviceBinding.Sample.cs │ └── _DeviceBinding.Samples.csproj │ └── tests │ ├── _DeviceBinding.Tests.csproj │ └── _DeviceBindingTests.cs ├── Directory.Build.props └── Directory.Build.targets /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.github/workflows/arduino.yml -------------------------------------------------------------------------------- /.github/workflows/locker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.github/workflows/locker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdown-link-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.markdown-link-check.json -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- 1 | eng/common/ 2 | -------------------------------------------------------------------------------- /Build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Build.cmd -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Documentation/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/CONTRIBUTING.md -------------------------------------------------------------------------------- /Documentation/Coding-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/Coding-guidelines.md -------------------------------------------------------------------------------- /Documentation/Devices-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/Devices-conventions.md -------------------------------------------------------------------------------- /Documentation/DiagnosticIDs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/DiagnosticIDs.md -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/README.md -------------------------------------------------------------------------------- /Documentation/gpio-linux-libgpiod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/gpio-linux-libgpiod.md -------------------------------------------------------------------------------- /Documentation/raspi-Docker-GPIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/raspi-Docker-GPIO.md -------------------------------------------------------------------------------- /Documentation/raspi-i2c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/raspi-i2c.md -------------------------------------------------------------------------------- /Documentation/raspi-pwm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/raspi-pwm.md -------------------------------------------------------------------------------- /Documentation/raspi-spi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/raspi-spi.md -------------------------------------------------------------------------------- /Documentation/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/Documentation/roadmap.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/NuGet.config -------------------------------------------------------------------------------- /README-nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/README-nuget.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /config/SignClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/config/SignClient.json -------------------------------------------------------------------------------- /config/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/config/filelist.txt -------------------------------------------------------------------------------- /dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/dotnet.sh -------------------------------------------------------------------------------- /eng/Analyzers.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/Analyzers.props -------------------------------------------------------------------------------- /eng/ArduinoCsCI.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/ArduinoCsCI.cmd -------------------------------------------------------------------------------- /eng/Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/Build.props -------------------------------------------------------------------------------- /eng/Compilers.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/Compilers.props -------------------------------------------------------------------------------- /eng/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/Publishing.props -------------------------------------------------------------------------------- /eng/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/Signing.props -------------------------------------------------------------------------------- /eng/StyleCop.Analyzers.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/StyleCop.Analyzers.ruleset -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.external.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/Versions.external.props -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/sdl-tsa-vars.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/sdl-tsa-vars.config -------------------------------------------------------------------------------- /eng/sendToHelix.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/sendToHelix.proj -------------------------------------------------------------------------------- /eng/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/stylecop.json -------------------------------------------------------------------------------- /eng/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/toolchain.cmake -------------------------------------------------------------------------------- /eng/tryrun.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/eng/tryrun.cmake -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/global.json -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/Directory.Build.targets -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/led-animate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/led-animate/Program.cs -------------------------------------------------------------------------------- /samples/led-animate/README.md: -------------------------------------------------------------------------------- 1 | # Animate LEDs with IOutputSegment 2 | -------------------------------------------------------------------------------- /samples/led-blink/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/led-blink/.dockerignore -------------------------------------------------------------------------------- /samples/led-blink/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/led-blink/Dockerfile -------------------------------------------------------------------------------- /samples/led-blink/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/led-blink/Program.cs -------------------------------------------------------------------------------- /samples/led-blink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/led-blink/README.md -------------------------------------------------------------------------------- /samples/led-blink/rpi-led.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/led-blink/rpi-led.fzz -------------------------------------------------------------------------------- /samples/led-blink/rpi-led_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/led-blink/rpi-led_bb.png -------------------------------------------------------------------------------- /samples/samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/samples/samples.sln -------------------------------------------------------------------------------- /src/devices/AD5328/AD5328.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/AD5328/AD5328.cs -------------------------------------------------------------------------------- /src/devices/AD5328/AD5328.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/AD5328/AD5328.csproj -------------------------------------------------------------------------------- /src/devices/AD5328/AD5328.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/AD5328/AD5328.sln -------------------------------------------------------------------------------- /src/devices/AD5328/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/AD5328/README.md -------------------------------------------------------------------------------- /src/devices/AD5328/category.txt: -------------------------------------------------------------------------------- 1 | dac 2 | -------------------------------------------------------------------------------- /src/devices/Ads1115/Ads1115.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ads1115/Ads1115.cs -------------------------------------------------------------------------------- /src/devices/Ads1115/Ads1115.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ads1115/Ads1115.sln -------------------------------------------------------------------------------- /src/devices/Ads1115/DataRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ads1115/DataRate.cs -------------------------------------------------------------------------------- /src/devices/Ads1115/DeviceMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ads1115/DeviceMode.cs -------------------------------------------------------------------------------- /src/devices/Ads1115/I2cAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ads1115/I2cAddress.cs -------------------------------------------------------------------------------- /src/devices/Ads1115/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ads1115/README.md -------------------------------------------------------------------------------- /src/devices/Ads1115/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ads1115/Register.cs -------------------------------------------------------------------------------- /src/devices/Ads1115/category.txt: -------------------------------------------------------------------------------- 1 | adc 2 | -------------------------------------------------------------------------------- /src/devices/Ads1115/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ads1115/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Adxl345/Adxl345.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl345/Adxl345.cs -------------------------------------------------------------------------------- /src/devices/Adxl345/Adxl345.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl345/Adxl345.sln -------------------------------------------------------------------------------- /src/devices/Adxl345/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl345/README.md -------------------------------------------------------------------------------- /src/devices/Adxl345/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl345/Register.cs -------------------------------------------------------------------------------- /src/devices/Adxl345/category.txt: -------------------------------------------------------------------------------- 1 | accelerometer 2 | -------------------------------------------------------------------------------- /src/devices/Adxl345/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl345/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Adxl357/Adxl357.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl357/Adxl357.cs -------------------------------------------------------------------------------- /src/devices/Adxl357/Adxl357.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl357/Adxl357.sln -------------------------------------------------------------------------------- /src/devices/Adxl357/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl357/README.md -------------------------------------------------------------------------------- /src/devices/Adxl357/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl357/Register.cs -------------------------------------------------------------------------------- /src/devices/Adxl357/category.txt: -------------------------------------------------------------------------------- 1 | accelerometer 2 | -------------------------------------------------------------------------------- /src/devices/Adxl357/sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Adxl357/sensor.png -------------------------------------------------------------------------------- /src/devices/Ags01db/Ags01db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ags01db/Ags01db.cs -------------------------------------------------------------------------------- /src/devices/Ags01db/Ags01db.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ags01db/Ags01db.sln -------------------------------------------------------------------------------- /src/devices/Ags01db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ags01db/README.md -------------------------------------------------------------------------------- /src/devices/Ags01db/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ags01db/Register.cs -------------------------------------------------------------------------------- /src/devices/Ags01db/category.txt: -------------------------------------------------------------------------------- 1 | voc 2 | gas 3 | -------------------------------------------------------------------------------- /src/devices/Ags01db/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ags01db/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Ahtxx/Aht10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ahtxx/Aht10.cs -------------------------------------------------------------------------------- /src/devices/Ahtxx/Aht20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ahtxx/Aht20.cs -------------------------------------------------------------------------------- /src/devices/Ahtxx/AhtBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ahtxx/AhtBase.cs -------------------------------------------------------------------------------- /src/devices/Ahtxx/Ahtxx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ahtxx/Ahtxx.csproj -------------------------------------------------------------------------------- /src/devices/Ahtxx/Ahtxx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ahtxx/Ahtxx.sln -------------------------------------------------------------------------------- /src/devices/Ahtxx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ahtxx/README.md -------------------------------------------------------------------------------- /src/devices/Ahtxx/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ahtxx/category.txt -------------------------------------------------------------------------------- /src/devices/Ak8963/Ak8963.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ak8963/Ak8963.cs -------------------------------------------------------------------------------- /src/devices/Ak8963/Ak8963.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ak8963/Ak8963.csproj -------------------------------------------------------------------------------- /src/devices/Ak8963/Ak8963.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ak8963/Ak8963.sln -------------------------------------------------------------------------------- /src/devices/Ak8963/Ak8963I2c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ak8963/Ak8963I2c.cs -------------------------------------------------------------------------------- /src/devices/Ak8963/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ak8963/README.md -------------------------------------------------------------------------------- /src/devices/Ak8963/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ak8963/Register.cs -------------------------------------------------------------------------------- /src/devices/Ak8963/category.txt: -------------------------------------------------------------------------------- 1 | magnetometer 2 | -------------------------------------------------------------------------------- /src/devices/Ak8963/corrcalib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ak8963/corrcalib.png -------------------------------------------------------------------------------- /src/devices/Ak8963/rawcalib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ak8963/rawcalib.png -------------------------------------------------------------------------------- /src/devices/Am2320/Am2320.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Am2320/Am2320.cs -------------------------------------------------------------------------------- /src/devices/Am2320/Am2320.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Am2320/Am2320.csproj -------------------------------------------------------------------------------- /src/devices/Am2320/Am2320.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Am2320/Am2320.sln -------------------------------------------------------------------------------- /src/devices/Am2320/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Am2320/README.md -------------------------------------------------------------------------------- /src/devices/Am2320/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Am2320/category.txt -------------------------------------------------------------------------------- /src/devices/Amg88xx/AMG88xx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Amg88xx/AMG88xx.png -------------------------------------------------------------------------------- /src/devices/Amg88xx/Amg88xx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Amg88xx/Amg88xx.cs -------------------------------------------------------------------------------- /src/devices/Amg88xx/Amg88xx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Amg88xx/Amg88xx.sln -------------------------------------------------------------------------------- /src/devices/Amg88xx/FrameRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Amg88xx/FrameRate.cs -------------------------------------------------------------------------------- /src/devices/Amg88xx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Amg88xx/README.md -------------------------------------------------------------------------------- /src/devices/Amg88xx/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Amg88xx/Register.cs -------------------------------------------------------------------------------- /src/devices/Amg88xx/ResetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Amg88xx/ResetType.cs -------------------------------------------------------------------------------- /src/devices/Amg88xx/category.txt: -------------------------------------------------------------------------------- 1 | infrared 2 | -------------------------------------------------------------------------------- /src/devices/Apa102/Apa102.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Apa102/Apa102.cs -------------------------------------------------------------------------------- /src/devices/Apa102/Apa102.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Apa102/Apa102.csproj -------------------------------------------------------------------------------- /src/devices/Apa102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Apa102/README.md -------------------------------------------------------------------------------- /src/devices/Apa102/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | led 3 | -------------------------------------------------------------------------------- /src/devices/Arduino/Arduino.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Arduino/Arduino.sln -------------------------------------------------------------------------------- /src/devices/Arduino/DhtSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Arduino/DhtSensor.cs -------------------------------------------------------------------------------- /src/devices/Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Arduino/README.md -------------------------------------------------------------------------------- /src/devices/Arduino/ReplyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Arduino/ReplyType.cs -------------------------------------------------------------------------------- /src/devices/Arduino/category.txt: -------------------------------------------------------------------------------- 1 | usb 2 | protocol 3 | i2c 4 | spi 5 | gpio 6 | -------------------------------------------------------------------------------- /src/devices/Axp192/Axp192.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Axp192/Axp192.cs -------------------------------------------------------------------------------- /src/devices/Axp192/Axp192.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Axp192/Axp192.csproj -------------------------------------------------------------------------------- /src/devices/Axp192/Axp192.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Axp192/Axp192.sln -------------------------------------------------------------------------------- /src/devices/Axp192/PowerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Axp192/PowerStatus.cs -------------------------------------------------------------------------------- /src/devices/Axp192/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Axp192/README.md -------------------------------------------------------------------------------- /src/devices/Axp192/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Axp192/Register.cs -------------------------------------------------------------------------------- /src/devices/Axp192/VoffVoltage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Axp192/VoffVoltage.cs -------------------------------------------------------------------------------- /src/devices/Axp192/category.txt: -------------------------------------------------------------------------------- 1 | adc 2 | power 3 | gpio 4 | -------------------------------------------------------------------------------- /src/devices/Bh1745/AdcGain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1745/AdcGain.cs -------------------------------------------------------------------------------- /src/devices/Bh1745/Bh1745.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1745/Bh1745.cs -------------------------------------------------------------------------------- /src/devices/Bh1745/Bh1745.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1745/Bh1745.csproj -------------------------------------------------------------------------------- /src/devices/Bh1745/Bh1745.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1745/Bh1745.sln -------------------------------------------------------------------------------- /src/devices/Bh1745/Mask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1745/Mask.cs -------------------------------------------------------------------------------- /src/devices/Bh1745/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1745/README.md -------------------------------------------------------------------------------- /src/devices/Bh1745/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1745/Register.cs -------------------------------------------------------------------------------- /src/devices/Bh1745/category.txt: -------------------------------------------------------------------------------- 1 | light -------------------------------------------------------------------------------- /src/devices/Bh1745/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1745/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Bh1750fvi/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1750fvi/Command.cs -------------------------------------------------------------------------------- /src/devices/Bh1750fvi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1750fvi/README.md -------------------------------------------------------------------------------- /src/devices/Bh1750fvi/category.txt: -------------------------------------------------------------------------------- 1 | light 2 | -------------------------------------------------------------------------------- /src/devices/Bh1750fvi/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bh1750fvi/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Blinkt/Blinkt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Blinkt/Blinkt.cs -------------------------------------------------------------------------------- /src/devices/Blinkt/Blinkt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Blinkt/Blinkt.csproj -------------------------------------------------------------------------------- /src/devices/Blinkt/Blinkt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Blinkt/Blinkt.sln -------------------------------------------------------------------------------- /src/devices/Blinkt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Blinkt/README.md -------------------------------------------------------------------------------- /src/devices/Blinkt/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | led 3 | -------------------------------------------------------------------------------- /src/devices/Bmm150/Bmm150.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmm150/Bmm150.cs -------------------------------------------------------------------------------- /src/devices/Bmm150/Bmm150.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmm150/Bmm150.csproj -------------------------------------------------------------------------------- /src/devices/Bmm150/Bmm150.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmm150/Bmm150.sln -------------------------------------------------------------------------------- /src/devices/Bmm150/Bmm150I2c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmm150/Bmm150I2c.cs -------------------------------------------------------------------------------- /src/devices/Bmm150/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmm150/README.md -------------------------------------------------------------------------------- /src/devices/Bmm150/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmm150/Register.cs -------------------------------------------------------------------------------- /src/devices/Bmm150/category.txt: -------------------------------------------------------------------------------- 1 | magnetometer 2 | -------------------------------------------------------------------------------- /src/devices/Bmp180/Bmp180.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmp180/Bmp180.cs -------------------------------------------------------------------------------- /src/devices/Bmp180/Bmp180.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmp180/Bmp180.csproj -------------------------------------------------------------------------------- /src/devices/Bmp180/Bmp180.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmp180/Bmp180.sln -------------------------------------------------------------------------------- /src/devices/Bmp180/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmp180/README.md -------------------------------------------------------------------------------- /src/devices/Bmp180/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmp180/Register.cs -------------------------------------------------------------------------------- /src/devices/Bmp180/Sampling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmp180/Sampling.cs -------------------------------------------------------------------------------- /src/devices/Bmp180/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmp180/category.txt -------------------------------------------------------------------------------- /src/devices/Bmxx80/Bme280.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/Bme280.cs -------------------------------------------------------------------------------- /src/devices/Bmxx80/Bme680.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/Bme680.cs -------------------------------------------------------------------------------- /src/devices/Bmxx80/Bme680Mask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/Bme680Mask.cs -------------------------------------------------------------------------------- /src/devices/Bmxx80/Bmp280.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/Bmp280.cs -------------------------------------------------------------------------------- /src/devices/Bmxx80/Bmx280Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/Bmx280Base.cs -------------------------------------------------------------------------------- /src/devices/Bmxx80/Bmxx80.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/Bmxx80.csproj -------------------------------------------------------------------------------- /src/devices/Bmxx80/Bmxx80.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/Bmxx80.sln -------------------------------------------------------------------------------- /src/devices/Bmxx80/Bmxx80Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/Bmxx80Base.cs -------------------------------------------------------------------------------- /src/devices/Bmxx80/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/README.md -------------------------------------------------------------------------------- /src/devices/Bmxx80/Sampling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/Sampling.cs -------------------------------------------------------------------------------- /src/devices/Bmxx80/StandbyTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/StandbyTime.cs -------------------------------------------------------------------------------- /src/devices/Bmxx80/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bmxx80/category.txt -------------------------------------------------------------------------------- /src/devices/Bno055/BNO055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bno055/BNO055.jpg -------------------------------------------------------------------------------- /src/devices/Bno055/Bno055.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bno055/Bno055.csproj -------------------------------------------------------------------------------- /src/devices/Bno055/Bno055.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bno055/Bno055.sln -------------------------------------------------------------------------------- /src/devices/Bno055/Models/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bno055/Models/Info.cs -------------------------------------------------------------------------------- /src/devices/Bno055/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bno055/README.md -------------------------------------------------------------------------------- /src/devices/Bno055/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Bno055/category.txt -------------------------------------------------------------------------------- /src/devices/Board/Board.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Board/Board.cs -------------------------------------------------------------------------------- /src/devices/Board/Board.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Board/Board.csproj -------------------------------------------------------------------------------- /src/devices/Board/Board.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Board/Board.sln -------------------------------------------------------------------------------- /src/devices/Board/CustomBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Board/CustomBoard.cs -------------------------------------------------------------------------------- /src/devices/Board/GenericBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Board/GenericBoard.cs -------------------------------------------------------------------------------- /src/devices/Board/PinUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Board/PinUsage.cs -------------------------------------------------------------------------------- /src/devices/Board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Board/README.md -------------------------------------------------------------------------------- /src/devices/Board/category.txt: -------------------------------------------------------------------------------- 1 | protocol 2 | -------------------------------------------------------------------------------- /src/devices/Board/tests/ConfigFiles/config.I2c.txt: -------------------------------------------------------------------------------- 1 | dtparam=i2c=on 2 | dtoverlay=i2c3,pins_2_3 3 | -------------------------------------------------------------------------------- /src/devices/Board/tests/ConfigFiles/config.Pwm1.txt: -------------------------------------------------------------------------------- 1 | dtoverlay=pwm,pin=18,func=2 2 | -------------------------------------------------------------------------------- /src/devices/Board/tests/ConfigFiles/config.Pwm1invalid.txt: -------------------------------------------------------------------------------- 1 | dtoverlay=pwm,pin=19,func=2 2 | -------------------------------------------------------------------------------- /src/devices/Board/tests/ConfigFiles/configI2c-defaultpins.txt: -------------------------------------------------------------------------------- 1 | dtoverlay=i2c3 2 | -------------------------------------------------------------------------------- /src/devices/BoardLed/BoardLed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/BoardLed/BoardLed.cs -------------------------------------------------------------------------------- /src/devices/BoardLed/BoardLed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/BoardLed/BoardLed.sln -------------------------------------------------------------------------------- /src/devices/BoardLed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/BoardLed/README.md -------------------------------------------------------------------------------- /src/devices/BoardLed/category.txt: -------------------------------------------------------------------------------- 1 | led 2 | -------------------------------------------------------------------------------- /src/devices/BrickPi3/BrickPi3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/BrickPi3/BrickPi3.cs -------------------------------------------------------------------------------- /src/devices/BrickPi3/BrickPi3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/BrickPi3/BrickPi3.sln -------------------------------------------------------------------------------- /src/devices/BrickPi3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/BrickPi3/README.md -------------------------------------------------------------------------------- /src/devices/BrickPi3/category.txt: -------------------------------------------------------------------------------- 1 | brickpi3 2 | lego 3 | -------------------------------------------------------------------------------- /src/devices/BuildHat/Brick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/BuildHat/Brick.cs -------------------------------------------------------------------------------- /src/devices/BuildHat/BuildHat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/BuildHat/BuildHat.sln -------------------------------------------------------------------------------- /src/devices/BuildHat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/BuildHat/README.md -------------------------------------------------------------------------------- /src/devices/BuildHat/category.txt: -------------------------------------------------------------------------------- 1 | lego 2 | -------------------------------------------------------------------------------- /src/devices/BuildHat/data/version: -------------------------------------------------------------------------------- 1 | 1636109636 2 | -------------------------------------------------------------------------------- /src/devices/Button/Button.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Button/Button.csproj -------------------------------------------------------------------------------- /src/devices/Button/Button.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Button/Button.sln -------------------------------------------------------------------------------- /src/devices/Button/ButtonBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Button/ButtonBase.cs -------------------------------------------------------------------------------- /src/devices/Button/GpioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Button/GpioButton.cs -------------------------------------------------------------------------------- /src/devices/Button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Button/README.md -------------------------------------------------------------------------------- /src/devices/Button/category.txt: -------------------------------------------------------------------------------- 1 | gpio -------------------------------------------------------------------------------- /src/devices/Button/unittests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Button/unittests.png -------------------------------------------------------------------------------- /src/devices/Buzzer/Buzzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Buzzer/Buzzer.cs -------------------------------------------------------------------------------- /src/devices/Buzzer/Buzzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Buzzer/Buzzer.csproj -------------------------------------------------------------------------------- /src/devices/Buzzer/Buzzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Buzzer/Buzzer.sln -------------------------------------------------------------------------------- /src/devices/Buzzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Buzzer/README.md -------------------------------------------------------------------------------- /src/devices/Buzzer/category.txt: -------------------------------------------------------------------------------- 1 | buzzer 2 | media 3 | -------------------------------------------------------------------------------- /src/devices/Camera/Camera.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Camera/Camera.sln -------------------------------------------------------------------------------- /src/devices/Camera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Camera/README.md -------------------------------------------------------------------------------- /src/devices/Camera/category.txt: -------------------------------------------------------------------------------- 1 | media 2 | -------------------------------------------------------------------------------- /src/devices/Card/Card.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/Card.sln -------------------------------------------------------------------------------- /src/devices/Card/CardRfid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/CardRfid.csproj -------------------------------------------------------------------------------- /src/devices/Card/CreditCard/category.txt: -------------------------------------------------------------------------------- 1 | card 2 | rfid -------------------------------------------------------------------------------- /src/devices/Card/EmulatedTag/category.txt: -------------------------------------------------------------------------------- 1 | card 2 | rfid -------------------------------------------------------------------------------- /src/devices/Card/ErrorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/ErrorType.cs -------------------------------------------------------------------------------- /src/devices/Card/Mifare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/Mifare/README.md -------------------------------------------------------------------------------- /src/devices/Card/Mifare/category.txt: -------------------------------------------------------------------------------- 1 | card 2 | rfid -------------------------------------------------------------------------------- /src/devices/Card/Ndef/Ndef.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/Ndef/Ndef.csproj -------------------------------------------------------------------------------- /src/devices/Card/Ndef/Ndef.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/Ndef/Ndef.sln -------------------------------------------------------------------------------- /src/devices/Card/Ndef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/Ndef/README.md -------------------------------------------------------------------------------- /src/devices/Card/Ndef/UriType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/Ndef/UriType.cs -------------------------------------------------------------------------------- /src/devices/Card/NfcProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/NfcProtocol.cs -------------------------------------------------------------------------------- /src/devices/Card/ProcessError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/ProcessError.cs -------------------------------------------------------------------------------- /src/devices/Card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Card/README.md -------------------------------------------------------------------------------- /src/devices/Card/category.txt: -------------------------------------------------------------------------------- 1 | nfc 2 | -------------------------------------------------------------------------------- /src/devices/Ccs811/Ccs811.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ccs811/Ccs811.csproj -------------------------------------------------------------------------------- /src/devices/Ccs811/Ccs811.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ccs811/Ccs811.sln -------------------------------------------------------------------------------- /src/devices/Ccs811/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ccs811/Error.cs -------------------------------------------------------------------------------- /src/devices/Ccs811/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ccs811/README.md -------------------------------------------------------------------------------- /src/devices/Ccs811/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ccs811/Register.cs -------------------------------------------------------------------------------- /src/devices/Ccs811/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ccs811/Status.cs -------------------------------------------------------------------------------- /src/devices/Ccs811/category.txt: -------------------------------------------------------------------------------- 1 | gas 2 | voc 3 | -------------------------------------------------------------------------------- /src/devices/Ccs811/ccs811.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ccs811/ccs811.fzz -------------------------------------------------------------------------------- /src/devices/Ccs811/ccs811_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ccs811/ccs811_bb.png -------------------------------------------------------------------------------- /src/devices/Ccs811/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ccs811/graph.png -------------------------------------------------------------------------------- /src/devices/CharacterLcd/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/CharacterLcd/Flags.cs -------------------------------------------------------------------------------- /src/devices/Charlieplex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Charlieplex/README.md -------------------------------------------------------------------------------- /src/devices/Charlieplex/category.txt: -------------------------------------------------------------------------------- 1 | multiplexer 2 | gpio 3 | -------------------------------------------------------------------------------- /src/devices/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Common/Common.csproj -------------------------------------------------------------------------------- /src/devices/Common/Common.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Common/Common.sln -------------------------------------------------------------------------------- /src/devices/Common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Common/README.md -------------------------------------------------------------------------------- /src/devices/CpuTemperature/category.txt: -------------------------------------------------------------------------------- 1 | thermometer 2 | -------------------------------------------------------------------------------- /src/devices/DCMotor/DCMotor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/DCMotor/DCMotor.cs -------------------------------------------------------------------------------- /src/devices/DCMotor/DCMotor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/DCMotor/DCMotor.sln -------------------------------------------------------------------------------- /src/devices/DCMotor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/DCMotor/README.md -------------------------------------------------------------------------------- /src/devices/DCMotor/category.txt: -------------------------------------------------------------------------------- 1 | motor 2 | -------------------------------------------------------------------------------- /src/devices/DCMotor/dcmotor.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/DCMotor/dcmotor.fzz -------------------------------------------------------------------------------- /src/devices/Device-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Device-Index.md -------------------------------------------------------------------------------- /src/devices/Dhtxx/DhtBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/DhtBase.cs -------------------------------------------------------------------------------- /src/devices/Dhtxx/Dhtxx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/Dhtxx.csproj -------------------------------------------------------------------------------- /src/devices/Dhtxx/Dhtxx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/Dhtxx.sln -------------------------------------------------------------------------------- /src/devices/Dhtxx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/README.md -------------------------------------------------------------------------------- /src/devices/Dhtxx/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/category.txt -------------------------------------------------------------------------------- /src/devices/Dhtxx/dht22.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/dht22.fzz -------------------------------------------------------------------------------- /src/devices/Dhtxx/dht22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/dht22.png -------------------------------------------------------------------------------- /src/devices/Dhtxx/dht22ex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/dht22ex.jpg -------------------------------------------------------------------------------- /src/devices/Dhtxx/imgs/dht10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/imgs/dht10.jpg -------------------------------------------------------------------------------- /src/devices/Dhtxx/imgs/dht11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/imgs/dht11.jpg -------------------------------------------------------------------------------- /src/devices/Dhtxx/imgs/dht12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/imgs/dht12.jpg -------------------------------------------------------------------------------- /src/devices/Dhtxx/imgs/dht21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/imgs/dht21.jpg -------------------------------------------------------------------------------- /src/devices/Dhtxx/imgs/dht22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Dhtxx/imgs/dht22.jpg -------------------------------------------------------------------------------- /src/devices/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Directory.Build.props -------------------------------------------------------------------------------- /src/devices/Display/Alignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Alignment.cs -------------------------------------------------------------------------------- /src/devices/Display/BlinkRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/BlinkRate.cs -------------------------------------------------------------------------------- /src/devices/Display/Display.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Display.sln -------------------------------------------------------------------------------- /src/devices/Display/Dot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Dot.cs -------------------------------------------------------------------------------- /src/devices/Display/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Font.cs -------------------------------------------------------------------------------- /src/devices/Display/Font14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Font14.cs -------------------------------------------------------------------------------- /src/devices/Display/FontHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/FontHelper.cs -------------------------------------------------------------------------------- /src/devices/Display/Ht16k33.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Ht16k33.cs -------------------------------------------------------------------------------- /src/devices/Display/LedColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/LedColor.cs -------------------------------------------------------------------------------- /src/devices/Display/Matrix16x8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Matrix16x8.cs -------------------------------------------------------------------------------- /src/devices/Display/Matrix8x8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Matrix8x8.cs -------------------------------------------------------------------------------- /src/devices/Display/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/README.md -------------------------------------------------------------------------------- /src/devices/Display/Segment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Segment.cs -------------------------------------------------------------------------------- /src/devices/Display/Segment14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Display/Segment14.cs -------------------------------------------------------------------------------- /src/devices/Display/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | led 3 | segment -------------------------------------------------------------------------------- /src/devices/ExplorerHat/Led.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/ExplorerHat/Led.cs -------------------------------------------------------------------------------- /src/devices/ExplorerHat/Lights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/ExplorerHat/Lights.cs -------------------------------------------------------------------------------- /src/devices/ExplorerHat/Motors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/ExplorerHat/Motors.cs -------------------------------------------------------------------------------- /src/devices/ExplorerHat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/ExplorerHat/README.md -------------------------------------------------------------------------------- /src/devices/ExplorerHat/category.txt: -------------------------------------------------------------------------------- 1 | motor 2 | led -------------------------------------------------------------------------------- /src/devices/Ft232H/Ft232H.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft232H/Ft232H.csproj -------------------------------------------------------------------------------- /src/devices/Ft232H/Ft232H.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft232H/Ft232H.sln -------------------------------------------------------------------------------- /src/devices/Ft232H/Ft232HGpio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft232H/Ft232HGpio.cs -------------------------------------------------------------------------------- /src/devices/Ft232H/Ft232HSpi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft232H/Ft232HSpi.cs -------------------------------------------------------------------------------- /src/devices/Ft232H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft232H/README.md -------------------------------------------------------------------------------- /src/devices/Ft232H/category.txt: -------------------------------------------------------------------------------- 1 | spi 2 | i2c 3 | usb 4 | protocol 5 | -------------------------------------------------------------------------------- /src/devices/Ft4222/Ft4222.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/Ft4222.csproj -------------------------------------------------------------------------------- /src/devices/Ft4222/Ft4222.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/Ft4222.sln -------------------------------------------------------------------------------- /src/devices/Ft4222/Ft4222Gpio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/Ft4222Gpio.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/Ft4222I2c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/Ft4222I2c.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/Ft4222Spi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/Ft4222Spi.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/FtClockRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/FtClockRate.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/FtFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/FtFunction.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/FtVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/FtVersion.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/GpioPinMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/GpioPinMode.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/GpioPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/GpioPort.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/GpioTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/GpioTrigger.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/README.md -------------------------------------------------------------------------------- /src/devices/Ft4222/SpiClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ft4222/SpiClock.cs -------------------------------------------------------------------------------- /src/devices/Ft4222/category.txt: -------------------------------------------------------------------------------- 1 | spi 2 | i2c 3 | usb 4 | protocol 5 | -------------------------------------------------------------------------------- /src/devices/FtCommon/FtBitMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/FtCommon/FtBitMode.cs -------------------------------------------------------------------------------- /src/devices/FtCommon/FtChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/FtCommon/FtChannel.cs -------------------------------------------------------------------------------- /src/devices/FtCommon/FtCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/FtCommon/FtCommon.cs -------------------------------------------------------------------------------- /src/devices/FtCommon/FtDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/FtCommon/FtDevice.cs -------------------------------------------------------------------------------- /src/devices/FtCommon/FtFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/FtCommon/FtFlag.cs -------------------------------------------------------------------------------- /src/devices/FtCommon/FtOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/FtCommon/FtOpcode.cs -------------------------------------------------------------------------------- /src/devices/FtCommon/FtStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/FtCommon/FtStatus.cs -------------------------------------------------------------------------------- /src/devices/GoPiGo3/GoPiGo3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GoPiGo3/GoPiGo3.cs -------------------------------------------------------------------------------- /src/devices/GoPiGo3/GoPiGo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GoPiGo3/GoPiGo3.png -------------------------------------------------------------------------------- /src/devices/GoPiGo3/GoPiGo3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GoPiGo3/GoPiGo3.sln -------------------------------------------------------------------------------- /src/devices/GoPiGo3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GoPiGo3/README.md -------------------------------------------------------------------------------- /src/devices/GoPiGo3/category.txt: -------------------------------------------------------------------------------- 1 | gopigo3 2 | multi 3 | -------------------------------------------------------------------------------- /src/devices/Gpio/Gpio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Gpio/Gpio.sln -------------------------------------------------------------------------------- /src/devices/Gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Gpio/README.md -------------------------------------------------------------------------------- /src/devices/Gpio/category.txt: -------------------------------------------------------------------------------- 1 | gpio 2 | protocol 3 | -------------------------------------------------------------------------------- /src/devices/Gpio/opi_circuit.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Gpio/opi_circuit.fzz -------------------------------------------------------------------------------- /src/devices/Gpio/opi_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Gpio/opi_circuit.png -------------------------------------------------------------------------------- /src/devices/GrovePi/GrovePi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GrovePi/GrovePi.cs -------------------------------------------------------------------------------- /src/devices/GrovePi/GrovePi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GrovePi/GrovePi.sln -------------------------------------------------------------------------------- /src/devices/GrovePi/GrovePort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GrovePi/GrovePort.png -------------------------------------------------------------------------------- /src/devices/GrovePi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GrovePi/README.md -------------------------------------------------------------------------------- /src/devices/GrovePi/category.txt: -------------------------------------------------------------------------------- 1 | grovepi 2 | multi 3 | -------------------------------------------------------------------------------- /src/devices/GrovePi/grovepi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GrovePi/grovepi.jpg -------------------------------------------------------------------------------- /src/devices/GrovePi/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/GrovePi/sample.jpg -------------------------------------------------------------------------------- /src/devices/Gui/Gui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Gui/Gui.csproj -------------------------------------------------------------------------------- /src/devices/Gui/Gui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Gui/Gui.sln -------------------------------------------------------------------------------- /src/devices/Gui/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Gui/MouseButton.cs -------------------------------------------------------------------------------- /src/devices/Gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Gui/README.md -------------------------------------------------------------------------------- /src/devices/Gui/ScreenCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Gui/ScreenCapture.cs -------------------------------------------------------------------------------- /src/devices/Gui/category.txt: -------------------------------------------------------------------------------- 1 | media 2 | display 3 | touch 4 | -------------------------------------------------------------------------------- /src/devices/HardwareMonitor/category.txt: -------------------------------------------------------------------------------- 1 | thermometer 2 | -------------------------------------------------------------------------------- /src/devices/Hcsr04/Hcsr04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hcsr04/Hcsr04.cs -------------------------------------------------------------------------------- /src/devices/Hcsr04/Hcsr04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hcsr04/Hcsr04.csproj -------------------------------------------------------------------------------- /src/devices/Hcsr04/Hcsr04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hcsr04/Hcsr04.sln -------------------------------------------------------------------------------- /src/devices/Hcsr04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hcsr04/README.md -------------------------------------------------------------------------------- /src/devices/Hcsr04/category.txt: -------------------------------------------------------------------------------- 1 | sonar 2 | distance 3 | -------------------------------------------------------------------------------- /src/devices/Hcsr501/Hcsr501.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hcsr501/Hcsr501.cs -------------------------------------------------------------------------------- /src/devices/Hcsr501/Hcsr501.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hcsr501/Hcsr501.sln -------------------------------------------------------------------------------- /src/devices/Hcsr501/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hcsr501/README.md -------------------------------------------------------------------------------- /src/devices/Hcsr501/category.txt: -------------------------------------------------------------------------------- 1 | pir 2 | motion 3 | -------------------------------------------------------------------------------- /src/devices/Hcsr501/circuit.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hcsr501/circuit.fzz -------------------------------------------------------------------------------- /src/devices/Hcsr501/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hcsr501/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Hmc5883l/Gain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hmc5883l/Gain.cs -------------------------------------------------------------------------------- /src/devices/Hmc5883l/Hmc5883l.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hmc5883l/Hmc5883l.cs -------------------------------------------------------------------------------- /src/devices/Hmc5883l/Hmc5883l.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hmc5883l/Hmc5883l.sln -------------------------------------------------------------------------------- /src/devices/Hmc5883l/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hmc5883l/README.md -------------------------------------------------------------------------------- /src/devices/Hmc5883l/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hmc5883l/Register.cs -------------------------------------------------------------------------------- /src/devices/Hmc5883l/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hmc5883l/Status.cs -------------------------------------------------------------------------------- /src/devices/Hmc5883l/category.txt: -------------------------------------------------------------------------------- 1 | magnetometer 2 | compass 3 | -------------------------------------------------------------------------------- /src/devices/Hmc5883l/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hmc5883l/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Ht1632/ClockMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ht1632/ClockMode.cs -------------------------------------------------------------------------------- /src/devices/Ht1632/ComOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ht1632/ComOption.cs -------------------------------------------------------------------------------- /src/devices/Ht1632/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ht1632/Command.cs -------------------------------------------------------------------------------- /src/devices/Ht1632/Ht1632.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ht1632/Ht1632.cs -------------------------------------------------------------------------------- /src/devices/Ht1632/Ht1632.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ht1632/Ht1632.csproj -------------------------------------------------------------------------------- /src/devices/Ht1632/Ht1632.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ht1632/Ht1632.sln -------------------------------------------------------------------------------- /src/devices/Ht1632/Id.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ht1632/Id.cs -------------------------------------------------------------------------------- /src/devices/Ht1632/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ht1632/README.md -------------------------------------------------------------------------------- /src/devices/Ht1632/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | -------------------------------------------------------------------------------- /src/devices/Hts221/Hts221.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hts221/Hts221.cs -------------------------------------------------------------------------------- /src/devices/Hts221/Hts221.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hts221/Hts221.csproj -------------------------------------------------------------------------------- /src/devices/Hts221/Hts221.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hts221/Hts221.sln -------------------------------------------------------------------------------- /src/devices/Hts221/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hts221/README.md -------------------------------------------------------------------------------- /src/devices/Hts221/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hts221/Register.cs -------------------------------------------------------------------------------- /src/devices/Hts221/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hts221/category.txt -------------------------------------------------------------------------------- /src/devices/Hx711/ByteFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711/ByteFormat.cs -------------------------------------------------------------------------------- /src/devices/Hx711/HX711.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711/HX711.cs -------------------------------------------------------------------------------- /src/devices/Hx711/HX711.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711/HX711.csproj -------------------------------------------------------------------------------- /src/devices/Hx711/HX711Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711/HX711Options.cs -------------------------------------------------------------------------------- /src/devices/Hx711/HX711Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711/HX711Reader.cs -------------------------------------------------------------------------------- /src/devices/Hx711/Hx711Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711/Hx711Mode.cs -------------------------------------------------------------------------------- /src/devices/Hx711/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711/README.md -------------------------------------------------------------------------------- /src/devices/Hx711/category.txt: -------------------------------------------------------------------------------- 1 | weight -------------------------------------------------------------------------------- /src/devices/Hx711I2c/Hx711I2c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711I2c/Hx711I2c.cs -------------------------------------------------------------------------------- /src/devices/Hx711I2c/Hx711I2c.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711I2c/Hx711I2c.sln -------------------------------------------------------------------------------- /src/devices/Hx711I2c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Hx711I2c/README.md -------------------------------------------------------------------------------- /src/devices/Hx711I2c/category.txt: -------------------------------------------------------------------------------- 1 | weight 2 | -------------------------------------------------------------------------------- /src/devices/Ili934x/Chsc6440.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ili934x/Chsc6440.cs -------------------------------------------------------------------------------- /src/devices/Ili934x/Ili9341.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ili934x/Ili9341.cs -------------------------------------------------------------------------------- /src/devices/Ili934x/Ili9342.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ili934x/Ili9342.cs -------------------------------------------------------------------------------- /src/devices/Ili934x/Ili934x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ili934x/Ili934x.sln -------------------------------------------------------------------------------- /src/devices/Ili934x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ili934x/README.md -------------------------------------------------------------------------------- /src/devices/Ili934x/Rgb565.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ili934x/Rgb565.cs -------------------------------------------------------------------------------- /src/devices/Ili934x/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | touch 3 | -------------------------------------------------------------------------------- /src/devices/Ina219/Ina219.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ina219/Ina219.cs -------------------------------------------------------------------------------- /src/devices/Ina219/Ina219.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ina219/Ina219.csproj -------------------------------------------------------------------------------- /src/devices/Ina219/Ina219.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ina219/Ina219.sln -------------------------------------------------------------------------------- /src/devices/Ina219/Ina219Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ina219/Ina219Enum.cs -------------------------------------------------------------------------------- /src/devices/Ina219/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ina219/README.md -------------------------------------------------------------------------------- /src/devices/Ina219/category.txt: -------------------------------------------------------------------------------- 1 | adc 2 | power 3 | -------------------------------------------------------------------------------- /src/devices/Ip5306/ButtonPress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ip5306/ButtonPress.cs -------------------------------------------------------------------------------- /src/devices/Ip5306/Ip5306.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ip5306/Ip5306.cs -------------------------------------------------------------------------------- /src/devices/Ip5306/Ip5306.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ip5306/Ip5306.csproj -------------------------------------------------------------------------------- /src/devices/Ip5306/Ip5306.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ip5306/Ip5306.sln -------------------------------------------------------------------------------- /src/devices/Ip5306/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ip5306/README.md -------------------------------------------------------------------------------- /src/devices/Ip5306/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ip5306/Register.cs -------------------------------------------------------------------------------- /src/devices/Ip5306/category.txt: -------------------------------------------------------------------------------- 1 | power 2 | -------------------------------------------------------------------------------- /src/devices/Is31fl3730/Current.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Is31fl3730/Current.cs -------------------------------------------------------------------------------- /src/devices/Is31fl3730/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Is31fl3730/README.md -------------------------------------------------------------------------------- /src/devices/Is31fl3730/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | led 3 | -------------------------------------------------------------------------------- /src/devices/Is31fl3731/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Is31fl3731/README.md -------------------------------------------------------------------------------- /src/devices/Is31fl3731/category.txt: -------------------------------------------------------------------------------- 1 | led -------------------------------------------------------------------------------- /src/devices/KeyMatrix/4x4kb.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/KeyMatrix/4x4kb.fzz -------------------------------------------------------------------------------- /src/devices/KeyMatrix/4x4kb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/KeyMatrix/4x4kb.png -------------------------------------------------------------------------------- /src/devices/KeyMatrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/KeyMatrix/README.md -------------------------------------------------------------------------------- /src/devices/KeyMatrix/category.txt: -------------------------------------------------------------------------------- 1 | gpio 2 | -------------------------------------------------------------------------------- /src/devices/LidarLiteV3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/LidarLiteV3/README.md -------------------------------------------------------------------------------- /src/devices/LidarLiteV3/category.txt: -------------------------------------------------------------------------------- 1 | lidar 2 | distance 3 | -------------------------------------------------------------------------------- /src/devices/LiquidLevel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/LiquidLevel/README.md -------------------------------------------------------------------------------- /src/devices/LiquidLevel/category.txt: -------------------------------------------------------------------------------- 1 | liquid 2 | gpio 3 | -------------------------------------------------------------------------------- /src/devices/Lis3Dh/DataRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lis3Dh/DataRate.cs -------------------------------------------------------------------------------- /src/devices/Lis3Dh/Lis3Dh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lis3Dh/Lis3Dh.cs -------------------------------------------------------------------------------- /src/devices/Lis3Dh/Lis3Dh.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lis3Dh/Lis3Dh.csproj -------------------------------------------------------------------------------- /src/devices/Lis3Dh/Lis3Dh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lis3Dh/Lis3Dh.sln -------------------------------------------------------------------------------- /src/devices/Lis3Dh/Lis3DhI2c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lis3Dh/Lis3DhI2c.cs -------------------------------------------------------------------------------- /src/devices/Lis3Dh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lis3Dh/README.md -------------------------------------------------------------------------------- /src/devices/Lis3Dh/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lis3Dh/Register.cs -------------------------------------------------------------------------------- /src/devices/Lis3Dh/category.txt: -------------------------------------------------------------------------------- 1 | accelerometer 2 | -------------------------------------------------------------------------------- /src/devices/Lm75/LM75_circuit.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lm75/LM75_circuit.fzz -------------------------------------------------------------------------------- /src/devices/Lm75/Lm75.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lm75/Lm75.cs -------------------------------------------------------------------------------- /src/devices/Lm75/Lm75.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lm75/Lm75.csproj -------------------------------------------------------------------------------- /src/devices/Lm75/Lm75.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lm75/Lm75.sln -------------------------------------------------------------------------------- /src/devices/Lm75/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lm75/README.md -------------------------------------------------------------------------------- /src/devices/Lm75/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lm75/Register.cs -------------------------------------------------------------------------------- /src/devices/Lm75/category.txt: -------------------------------------------------------------------------------- 1 | thermometer 2 | -------------------------------------------------------------------------------- /src/devices/Lm75/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lm75/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Lp55231/Lp55231.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lp55231/Lp55231.cs -------------------------------------------------------------------------------- /src/devices/Lp55231/Lp55231.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lp55231/Lp55231.sln -------------------------------------------------------------------------------- /src/devices/Lp55231/MiscFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lp55231/MiscFlags.cs -------------------------------------------------------------------------------- /src/devices/Lp55231/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lp55231/README.md -------------------------------------------------------------------------------- /src/devices/Lp55231/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lp55231/Register.cs -------------------------------------------------------------------------------- /src/devices/Lp55231/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | led 3 | pwm -------------------------------------------------------------------------------- /src/devices/Lps22hb/BduMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps22hb/BduMode.cs -------------------------------------------------------------------------------- /src/devices/Lps22hb/Lps22hb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps22hb/Lps22hb.cs -------------------------------------------------------------------------------- /src/devices/Lps22hb/Lps22hb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps22hb/Lps22hb.sln -------------------------------------------------------------------------------- /src/devices/Lps22hb/OutputRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps22hb/OutputRate.cs -------------------------------------------------------------------------------- /src/devices/Lps22hb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps22hb/README.md -------------------------------------------------------------------------------- /src/devices/Lps22hb/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps22hb/Register.cs -------------------------------------------------------------------------------- /src/devices/Lps25h/Lps25h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps25h/Lps25h.cs -------------------------------------------------------------------------------- /src/devices/Lps25h/Lps25h.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps25h/Lps25h.csproj -------------------------------------------------------------------------------- /src/devices/Lps25h/Lps25h.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps25h/Lps25h.sln -------------------------------------------------------------------------------- /src/devices/Lps25h/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps25h/README.md -------------------------------------------------------------------------------- /src/devices/Lps25h/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps25h/Register.cs -------------------------------------------------------------------------------- /src/devices/Lps25h/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lps25h/category.txt -------------------------------------------------------------------------------- /src/devices/Lsm9Ds1/Lsm9Ds1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lsm9Ds1/Lsm9Ds1.sln -------------------------------------------------------------------------------- /src/devices/Lsm9Ds1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lsm9Ds1/README.md -------------------------------------------------------------------------------- /src/devices/Lsm9Ds1/RegisterAg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lsm9Ds1/RegisterAg.cs -------------------------------------------------------------------------------- /src/devices/Lsm9Ds1/RegisterM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lsm9Ds1/RegisterM.cs -------------------------------------------------------------------------------- /src/devices/Lsm9Ds1/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Lsm9Ds1/category.txt -------------------------------------------------------------------------------- /src/devices/M5Stack/M5Stack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/M5Stack/M5Stack.sln -------------------------------------------------------------------------------- /src/devices/M5Stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/M5Stack/README.md -------------------------------------------------------------------------------- /src/devices/M5Stack/category.txt: -------------------------------------------------------------------------------- 1 | power 2 | gpio 3 | -------------------------------------------------------------------------------- /src/devices/Max31856/Max31856.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31856/Max31856.cs -------------------------------------------------------------------------------- /src/devices/Max31856/Max31856.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31856/Max31856.sln -------------------------------------------------------------------------------- /src/devices/Max31856/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31856/README.md -------------------------------------------------------------------------------- /src/devices/Max31856/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31856/Register.cs -------------------------------------------------------------------------------- /src/devices/Max31856/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31856/category.txt -------------------------------------------------------------------------------- /src/devices/Max31856/device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31856/device.jpg -------------------------------------------------------------------------------- /src/devices/Max31865/Max31865.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31865/Max31865.cs -------------------------------------------------------------------------------- /src/devices/Max31865/Max31865.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31865/Max31865.sln -------------------------------------------------------------------------------- /src/devices/Max31865/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31865/README.md -------------------------------------------------------------------------------- /src/devices/Max31865/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31865/Register.cs -------------------------------------------------------------------------------- /src/devices/Max31865/category.txt: -------------------------------------------------------------------------------- 1 | thermometer -------------------------------------------------------------------------------- /src/devices/Max31865/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max31865/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Max44009/Max44009.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max44009/Max44009.cs -------------------------------------------------------------------------------- /src/devices/Max44009/Max44009.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max44009/Max44009.sln -------------------------------------------------------------------------------- /src/devices/Max44009/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max44009/README.md -------------------------------------------------------------------------------- /src/devices/Max44009/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max44009/Register.cs -------------------------------------------------------------------------------- /src/devices/Max44009/category.txt: -------------------------------------------------------------------------------- 1 | light 2 | -------------------------------------------------------------------------------- /src/devices/Max44009/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max44009/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Max7219/Fonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max7219/Fonts.cs -------------------------------------------------------------------------------- /src/devices/Max7219/IFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max7219/IFont.cs -------------------------------------------------------------------------------- /src/devices/Max7219/Max7219.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max7219/Max7219.cs -------------------------------------------------------------------------------- /src/devices/Max7219/Max7219.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max7219/Max7219.sln -------------------------------------------------------------------------------- /src/devices/Max7219/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max7219/README.md -------------------------------------------------------------------------------- /src/devices/Max7219/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max7219/Register.cs -------------------------------------------------------------------------------- /src/devices/Max7219/Schema.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max7219/Schema.fzz -------------------------------------------------------------------------------- /src/devices/Max7219/Schema_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Max7219/Schema_bb.png -------------------------------------------------------------------------------- /src/devices/Max7219/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | -------------------------------------------------------------------------------- /src/devices/Mbi5027/Mbi5027.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mbi5027/Mbi5027.cs -------------------------------------------------------------------------------- /src/devices/Mbi5027/Mbi5027.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mbi5027/Mbi5027.sln -------------------------------------------------------------------------------- /src/devices/Mbi5027/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mbi5027/README.md -------------------------------------------------------------------------------- /src/devices/Mbi5027/category.txt: -------------------------------------------------------------------------------- 1 | multiplexer 2 | gpio 3 | -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/BankStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/BankStyle.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23008.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23008.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23009.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23009.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23017.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23017.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23018.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23018.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23S08.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23S08.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23S09.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23S09.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23S17.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23S17.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23S18.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23S18.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23x0x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23x0x.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23x1x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23x1x.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23xxx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23xxx.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Mcp23xxx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Mcp23xxx.sln -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Port.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Port.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/README.md -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp23xxx/Register.cs -------------------------------------------------------------------------------- /src/devices/Mcp23xxx/category.txt: -------------------------------------------------------------------------------- 1 | io-expander 2 | -------------------------------------------------------------------------------- /src/devices/Mcp25xxx/Mcp2515.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp25xxx/Mcp2515.cs -------------------------------------------------------------------------------- /src/devices/Mcp25xxx/Mcp25625.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp25xxx/Mcp25625.cs -------------------------------------------------------------------------------- /src/devices/Mcp25xxx/Mcp25xxx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp25xxx/Mcp25xxx.cs -------------------------------------------------------------------------------- /src/devices/Mcp25xxx/Mcp25xxx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp25xxx/Mcp25xxx.sln -------------------------------------------------------------------------------- /src/devices/Mcp25xxx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp25xxx/README.md -------------------------------------------------------------------------------- /src/devices/Mcp25xxx/category.txt: -------------------------------------------------------------------------------- 1 | canbus 2 | -------------------------------------------------------------------------------- /src/devices/Mcp3428/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3428/Config.cs -------------------------------------------------------------------------------- /src/devices/Mcp3428/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3428/Helpers.cs -------------------------------------------------------------------------------- /src/devices/Mcp3428/Mcp3426.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3428/Mcp3426.cs -------------------------------------------------------------------------------- /src/devices/Mcp3428/Mcp3427.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3428/Mcp3427.cs -------------------------------------------------------------------------------- /src/devices/Mcp3428/Mcp3428.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3428/Mcp3428.cs -------------------------------------------------------------------------------- /src/devices/Mcp3428/Mcp3428.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3428/Mcp3428.sln -------------------------------------------------------------------------------- /src/devices/Mcp3428/Mcp342x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3428/Mcp342x.cs -------------------------------------------------------------------------------- /src/devices/Mcp3428/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3428/README.md -------------------------------------------------------------------------------- /src/devices/Mcp3428/category.txt: -------------------------------------------------------------------------------- 1 | adc 2 | -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3001.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3002.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3004.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3004.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3008.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3008.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3201.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3201.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3202.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3202.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3204.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3204.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3208.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3208.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3301.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3301.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3302.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3302.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3304.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3304.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp33xx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp33xx.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3Base.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3xxx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3xxx.cs -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/Mcp3xxx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/Mcp3xxx.sln -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp3xxx/README.md -------------------------------------------------------------------------------- /src/devices/Mcp3xxx/category.txt: -------------------------------------------------------------------------------- 1 | adc 2 | -------------------------------------------------------------------------------- /src/devices/Mcp960x/Mcp960x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp960x/Mcp960x.cs -------------------------------------------------------------------------------- /src/devices/Mcp960x/Mcp960x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp960x/Mcp960x.sln -------------------------------------------------------------------------------- /src/devices/Mcp960x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp960x/README.md -------------------------------------------------------------------------------- /src/devices/Mcp960x/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp960x/Register.cs -------------------------------------------------------------------------------- /src/devices/Mcp960x/category.txt: -------------------------------------------------------------------------------- 1 | thermocouple 2 | -------------------------------------------------------------------------------- /src/devices/Mcp960x/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp960x/device.png -------------------------------------------------------------------------------- /src/devices/Mcp9808/Mcp9808.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp9808/Mcp9808.cs -------------------------------------------------------------------------------- /src/devices/Mcp9808/Mcp9808.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp9808/Mcp9808.sln -------------------------------------------------------------------------------- /src/devices/Mcp9808/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp9808/README.md -------------------------------------------------------------------------------- /src/devices/Mcp9808/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mcp9808/Register.cs -------------------------------------------------------------------------------- /src/devices/Mcp9808/category.txt: -------------------------------------------------------------------------------- 1 | thermometer 2 | -------------------------------------------------------------------------------- /src/devices/Media/Media.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Media/Media.csproj -------------------------------------------------------------------------------- /src/devices/Media/Media.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Media/Media.sln -------------------------------------------------------------------------------- /src/devices/Media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Media/README.md -------------------------------------------------------------------------------- /src/devices/Media/category.txt: -------------------------------------------------------------------------------- 1 | media 2 | -------------------------------------------------------------------------------- /src/devices/Mfrc522/Mfrc522.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mfrc522/Mfrc522.cs -------------------------------------------------------------------------------- /src/devices/Mfrc522/Mfrc522.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mfrc522/Mfrc522.sln -------------------------------------------------------------------------------- /src/devices/Mfrc522/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mfrc522/README.md -------------------------------------------------------------------------------- /src/devices/Mfrc522/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mfrc522/Register.cs -------------------------------------------------------------------------------- /src/devices/Mfrc522/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mfrc522/Status.cs -------------------------------------------------------------------------------- /src/devices/Mfrc522/category.txt: -------------------------------------------------------------------------------- 1 | nfc 2 | -------------------------------------------------------------------------------- /src/devices/Mhz19b/AbmState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mhz19b/AbmState.cs -------------------------------------------------------------------------------- /src/devices/Mhz19b/Mhz19b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mhz19b/Mhz19b.cs -------------------------------------------------------------------------------- /src/devices/Mhz19b/Mhz19b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mhz19b/Mhz19b.csproj -------------------------------------------------------------------------------- /src/devices/Mhz19b/Mhz19b.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mhz19b/Mhz19b.sln -------------------------------------------------------------------------------- /src/devices/Mhz19b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mhz19b/README.md -------------------------------------------------------------------------------- /src/devices/Mhz19b/category.txt: -------------------------------------------------------------------------------- 1 | gas 2 | -------------------------------------------------------------------------------- /src/devices/Mlx90614/Mlx90614.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mlx90614/Mlx90614.cs -------------------------------------------------------------------------------- /src/devices/Mlx90614/Mlx90614.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mlx90614/Mlx90614.sln -------------------------------------------------------------------------------- /src/devices/Mlx90614/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mlx90614/README.md -------------------------------------------------------------------------------- /src/devices/Mlx90614/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mlx90614/Register.cs -------------------------------------------------------------------------------- /src/devices/Mlx90614/category.txt: -------------------------------------------------------------------------------- 1 | thermometer 2 | infrared 3 | -------------------------------------------------------------------------------- /src/devices/Mlx90614/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mlx90614/sensor.jpg -------------------------------------------------------------------------------- /src/devices/MotorHat/MotorHat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/MotorHat/MotorHat.cs -------------------------------------------------------------------------------- /src/devices/MotorHat/MotorHat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/MotorHat/MotorHat.sln -------------------------------------------------------------------------------- /src/devices/MotorHat/MotorPins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/MotorHat/MotorPins.cs -------------------------------------------------------------------------------- /src/devices/MotorHat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/MotorHat/README.md -------------------------------------------------------------------------------- /src/devices/MotorHat/category.txt: -------------------------------------------------------------------------------- 1 | motor 2 | pwm 3 | protocol 4 | -------------------------------------------------------------------------------- /src/devices/Mpr121/Channels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpr121/Channels.cs -------------------------------------------------------------------------------- /src/devices/Mpr121/Mpr121.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpr121/Mpr121.cs -------------------------------------------------------------------------------- /src/devices/Mpr121/Mpr121.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpr121/Mpr121.csproj -------------------------------------------------------------------------------- /src/devices/Mpr121/Mpr121.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpr121/Mpr121.sln -------------------------------------------------------------------------------- /src/devices/Mpr121/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpr121/README.md -------------------------------------------------------------------------------- /src/devices/Mpr121/Registers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpr121/Registers.cs -------------------------------------------------------------------------------- /src/devices/Mpr121/category.txt: -------------------------------------------------------------------------------- 1 | proximity 2 | touch 3 | -------------------------------------------------------------------------------- /src/devices/Mpu6886/Mpu6886.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpu6886/Mpu6886.cs -------------------------------------------------------------------------------- /src/devices/Mpu6886/Mpu6886.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpu6886/Mpu6886.sln -------------------------------------------------------------------------------- /src/devices/Mpu6886/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpu6886/README.md -------------------------------------------------------------------------------- /src/devices/Mpu6886/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpu6886/Register.cs -------------------------------------------------------------------------------- /src/devices/Mpu6886/category.txt: -------------------------------------------------------------------------------- 1 | accelerometer 2 | gyroscope -------------------------------------------------------------------------------- /src/devices/Mpu6xxx9xxx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Mpu6xxx9xxx/README.md -------------------------------------------------------------------------------- /src/devices/Nmea0183/Ais/Raim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nmea0183/Ais/Raim.cs -------------------------------------------------------------------------------- /src/devices/Nmea0183/Ais/Ship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nmea0183/Ais/Ship.cs -------------------------------------------------------------------------------- /src/devices/Nmea0183/Nmea0183.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nmea0183/Nmea0183.sln -------------------------------------------------------------------------------- /src/devices/Nmea0183/NmeaError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nmea0183/NmeaError.cs -------------------------------------------------------------------------------- /src/devices/Nmea0183/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nmea0183/README.md -------------------------------------------------------------------------------- /src/devices/Nmea0183/Route.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nmea0183/Route.cs -------------------------------------------------------------------------------- /src/devices/Nmea0183/TalkerId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nmea0183/TalkerId.cs -------------------------------------------------------------------------------- /src/devices/Nmea0183/category.txt: -------------------------------------------------------------------------------- 1 | gnss 2 | protocol 3 | -------------------------------------------------------------------------------- /src/devices/Nrf24l01/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nrf24l01/Command.cs -------------------------------------------------------------------------------- /src/devices/Nrf24l01/DataRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nrf24l01/DataRate.cs -------------------------------------------------------------------------------- /src/devices/Nrf24l01/Nrf24l01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nrf24l01/Nrf24l01.cs -------------------------------------------------------------------------------- /src/devices/Nrf24l01/Nrf24l01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nrf24l01/Nrf24l01.sln -------------------------------------------------------------------------------- /src/devices/Nrf24l01/PowerMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nrf24l01/PowerMode.cs -------------------------------------------------------------------------------- /src/devices/Nrf24l01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nrf24l01/README.md -------------------------------------------------------------------------------- /src/devices/Nrf24l01/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nrf24l01/Register.cs -------------------------------------------------------------------------------- /src/devices/Nrf24l01/category.txt: -------------------------------------------------------------------------------- 1 | wireless 2 | -------------------------------------------------------------------------------- /src/devices/Nrf24l01/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Nrf24l01/sensor.jpg -------------------------------------------------------------------------------- /src/devices/OneWire/OneWire.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/OneWire/OneWire.sln -------------------------------------------------------------------------------- /src/devices/OneWire/OneWireBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/OneWire/OneWireBus.cs -------------------------------------------------------------------------------- /src/devices/OneWire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/OneWire/README.md -------------------------------------------------------------------------------- /src/devices/OneWire/category.txt: -------------------------------------------------------------------------------- 1 | protocol 2 | -------------------------------------------------------------------------------- /src/devices/Pca95x4/Pca95x4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca95x4/Pca95x4.cs -------------------------------------------------------------------------------- /src/devices/Pca95x4/Pca95x4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca95x4/Pca95x4.sln -------------------------------------------------------------------------------- /src/devices/Pca95x4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca95x4/README.md -------------------------------------------------------------------------------- /src/devices/Pca95x4/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca95x4/Register.cs -------------------------------------------------------------------------------- /src/devices/Pca95x4/category.txt: -------------------------------------------------------------------------------- 1 | io-expander 2 | -------------------------------------------------------------------------------- /src/devices/Pca9685/Mode1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca9685/Mode1.cs -------------------------------------------------------------------------------- /src/devices/Pca9685/Mode2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca9685/Mode2.cs -------------------------------------------------------------------------------- /src/devices/Pca9685/Pca9685.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca9685/Pca9685.cs -------------------------------------------------------------------------------- /src/devices/Pca9685/Pca9685.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca9685/Pca9685.sln -------------------------------------------------------------------------------- /src/devices/Pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca9685/README.md -------------------------------------------------------------------------------- /src/devices/Pca9685/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pca9685/Register.cs -------------------------------------------------------------------------------- /src/devices/Pca9685/category.txt: -------------------------------------------------------------------------------- 1 | pwm 2 | protocol 3 | -------------------------------------------------------------------------------- /src/devices/Pcd8544/Pcd8544.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcd8544/Pcd8544.cs -------------------------------------------------------------------------------- /src/devices/Pcd8544/Pcd8544.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcd8544/Pcd8544.sln -------------------------------------------------------------------------------- /src/devices/Pcd8544/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcd8544/README.md -------------------------------------------------------------------------------- /src/devices/Pcd8544/SetAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcd8544/SetAddress.cs -------------------------------------------------------------------------------- /src/devices/Pcd8544/category.txt: -------------------------------------------------------------------------------- 1 | lcd 2 | display 3 | -------------------------------------------------------------------------------- /src/devices/Pcx857x/Pca8574.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcx857x/Pca8574.cs -------------------------------------------------------------------------------- /src/devices/Pcx857x/Pca8575.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcx857x/Pca8575.cs -------------------------------------------------------------------------------- /src/devices/Pcx857x/Pcf8574.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcx857x/Pcf8574.cs -------------------------------------------------------------------------------- /src/devices/Pcx857x/Pcf8575.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcx857x/Pcf8575.cs -------------------------------------------------------------------------------- /src/devices/Pcx857x/Pcx8574.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcx857x/Pcx8574.cs -------------------------------------------------------------------------------- /src/devices/Pcx857x/Pcx8575.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcx857x/Pcx8575.cs -------------------------------------------------------------------------------- /src/devices/Pcx857x/Pcx857x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcx857x/Pcx857x.cs -------------------------------------------------------------------------------- /src/devices/Pcx857x/Pcx857x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcx857x/Pcx857x.sln -------------------------------------------------------------------------------- /src/devices/Pcx857x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pcx857x/README.md -------------------------------------------------------------------------------- /src/devices/Pcx857x/category.txt: -------------------------------------------------------------------------------- 1 | io-expander 2 | -------------------------------------------------------------------------------- /src/devices/PiJuice/Models/LED.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/PiJuice/Models/LED.cs -------------------------------------------------------------------------------- /src/devices/PiJuice/PiJuice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/PiJuice/PiJuice.cs -------------------------------------------------------------------------------- /src/devices/PiJuice/PiJuice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/PiJuice/PiJuice.sln -------------------------------------------------------------------------------- /src/devices/PiJuice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/PiJuice/README.md -------------------------------------------------------------------------------- /src/devices/PiJuice/category.txt: -------------------------------------------------------------------------------- 1 | power 2 | -------------------------------------------------------------------------------- /src/devices/PiJuice/pijuice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/PiJuice/pijuice.jpg -------------------------------------------------------------------------------- /src/devices/PiJuice/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/PiJuice/sample.jpg -------------------------------------------------------------------------------- /src/devices/Pn5180/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn5180/Command.cs -------------------------------------------------------------------------------- /src/devices/Pn5180/Pn5180.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn5180/Pn5180.cs -------------------------------------------------------------------------------- /src/devices/Pn5180/Pn5180.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn5180/Pn5180.csproj -------------------------------------------------------------------------------- /src/devices/Pn5180/Pn5180.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn5180/Pn5180.sln -------------------------------------------------------------------------------- /src/devices/Pn5180/RBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn5180/RBlock.cs -------------------------------------------------------------------------------- /src/devices/Pn5180/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn5180/README.md -------------------------------------------------------------------------------- /src/devices/Pn5180/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn5180/Register.cs -------------------------------------------------------------------------------- /src/devices/Pn5180/category.txt: -------------------------------------------------------------------------------- 1 | nfc 2 | -------------------------------------------------------------------------------- /src/devices/Pn532/BaudRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/BaudRate.cs -------------------------------------------------------------------------------- /src/devices/Pn532/CommandSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/CommandSet.cs -------------------------------------------------------------------------------- /src/devices/Pn532/DiagnoseMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/DiagnoseMode.cs -------------------------------------------------------------------------------- /src/devices/Pn532/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/ErrorCode.cs -------------------------------------------------------------------------------- /src/devices/Pn532/P3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/P3.cs -------------------------------------------------------------------------------- /src/devices/Pn532/P7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/P7.cs -------------------------------------------------------------------------------- /src/devices/Pn532/Pn532.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/Pn532.cs -------------------------------------------------------------------------------- /src/devices/Pn532/Pn532.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/Pn532.csproj -------------------------------------------------------------------------------- /src/devices/Pn532/Pn532.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/Pn532.sln -------------------------------------------------------------------------------- /src/devices/Pn532/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/README.md -------------------------------------------------------------------------------- /src/devices/Pn532/SfrRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/SfrRegister.cs -------------------------------------------------------------------------------- /src/devices/Pn532/WakeUpEnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Pn532/WakeUpEnable.cs -------------------------------------------------------------------------------- /src/devices/Pn532/category.txt: -------------------------------------------------------------------------------- 1 | nfc 2 | -------------------------------------------------------------------------------- /src/devices/README-nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/README-nuget.md -------------------------------------------------------------------------------- /src/devices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/README.md -------------------------------------------------------------------------------- /src/devices/RGBLedMatrix/Gpio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/RGBLedMatrix/Gpio.cs -------------------------------------------------------------------------------- /src/devices/RGBLedMatrix/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | -------------------------------------------------------------------------------- /src/devices/RadioReceiver/category.txt: -------------------------------------------------------------------------------- 1 | wireless 2 | radio 3 | -------------------------------------------------------------------------------- /src/devices/RadioTransmitter/category.txt: -------------------------------------------------------------------------------- 1 | wireless 2 | radio 3 | -------------------------------------------------------------------------------- /src/devices/RotaryEncoder/category.txt: -------------------------------------------------------------------------------- 1 | gpio 2 | -------------------------------------------------------------------------------- /src/devices/Rtc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Rtc/README.md -------------------------------------------------------------------------------- /src/devices/Rtc/Rtc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Rtc/Rtc.csproj -------------------------------------------------------------------------------- /src/devices/Rtc/Rtc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Rtc/Rtc.sln -------------------------------------------------------------------------------- /src/devices/Rtc/RtcBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Rtc/RtcBase.cs -------------------------------------------------------------------------------- /src/devices/Rtc/RunningResult.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Rtc/RunningResult.jpg -------------------------------------------------------------------------------- /src/devices/Rtc/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Rtc/SystemClock.cs -------------------------------------------------------------------------------- /src/devices/Rtc/category.txt: -------------------------------------------------------------------------------- 1 | rtc 2 | clock 3 | -------------------------------------------------------------------------------- /src/devices/Scd4x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Scd4x/README.md -------------------------------------------------------------------------------- /src/devices/Scd4x/Scd4x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Scd4x/Scd4x.cs -------------------------------------------------------------------------------- /src/devices/Scd4x/Scd4x.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Scd4x/Scd4x.csproj -------------------------------------------------------------------------------- /src/devices/Scd4x/Scd4x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Scd4x/Scd4x.sln -------------------------------------------------------------------------------- /src/devices/Scd4x/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Scd4x/category.txt -------------------------------------------------------------------------------- /src/devices/Seatalk1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Seatalk1/README.md -------------------------------------------------------------------------------- /src/devices/Seatalk1/Seatalk1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Seatalk1/Seatalk1.sln -------------------------------------------------------------------------------- /src/devices/Seatalk1/category.txt: -------------------------------------------------------------------------------- 1 | protocol 2 | multi 3 | gnss 4 | -------------------------------------------------------------------------------- /src/devices/Seatalk1/samples/README.md: -------------------------------------------------------------------------------- 1 | # TODO: This needs to be determined 2 | 3 | Help Wanted Please 4 | -------------------------------------------------------------------------------- /src/devices/Seesaw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Seesaw/README.md -------------------------------------------------------------------------------- /src/devices/Seesaw/Seesaw.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Seesaw/Seesaw.csproj -------------------------------------------------------------------------------- /src/devices/Seesaw/Seesaw.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Seesaw/Seesaw.sln -------------------------------------------------------------------------------- /src/devices/Seesaw/SeesawAdc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Seesaw/SeesawAdc.cs -------------------------------------------------------------------------------- /src/devices/Seesaw/SeesawBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Seesaw/SeesawBase.cs -------------------------------------------------------------------------------- /src/devices/Seesaw/SeesawGpio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Seesaw/SeesawGpio.cs -------------------------------------------------------------------------------- /src/devices/Seesaw/SeesawTouch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Seesaw/SeesawTouch.cs -------------------------------------------------------------------------------- /src/devices/Seesaw/category.txt: -------------------------------------------------------------------------------- 1 | adc 2 | io-expander 3 | pwm 4 | touch 5 | led 6 | display 7 | protocol 8 | -------------------------------------------------------------------------------- /src/devices/SenseHat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SenseHat/README.md -------------------------------------------------------------------------------- /src/devices/SenseHat/SenseHat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SenseHat/SenseHat.cs -------------------------------------------------------------------------------- /src/devices/SenseHat/SenseHat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SenseHat/SenseHat.sln -------------------------------------------------------------------------------- /src/devices/SenseHat/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SenseHat/category.txt -------------------------------------------------------------------------------- /src/devices/SensorHub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SensorHub/README.md -------------------------------------------------------------------------------- /src/devices/ServoMotor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/ServoMotor/README.md -------------------------------------------------------------------------------- /src/devices/ServoMotor/category.txt: -------------------------------------------------------------------------------- 1 | motor 2 | -------------------------------------------------------------------------------- /src/devices/Shared/Sensirion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Shared/Sensirion.cs -------------------------------------------------------------------------------- /src/devices/ShiftRegister/category.txt: -------------------------------------------------------------------------------- 1 | multiplexer 2 | gpio 3 | -------------------------------------------------------------------------------- /src/devices/Sht3x/I2cAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht3x/I2cAddress.cs -------------------------------------------------------------------------------- /src/devices/Sht3x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht3x/README.md -------------------------------------------------------------------------------- /src/devices/Sht3x/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht3x/Register.cs -------------------------------------------------------------------------------- /src/devices/Sht3x/Resolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht3x/Resolution.cs -------------------------------------------------------------------------------- /src/devices/Sht3x/Sht3x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht3x/Sht3x.cs -------------------------------------------------------------------------------- /src/devices/Sht3x/Sht3x.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht3x/Sht3x.csproj -------------------------------------------------------------------------------- /src/devices/Sht3x/Sht3x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht3x/Sht3x.sln -------------------------------------------------------------------------------- /src/devices/Sht3x/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht3x/category.txt -------------------------------------------------------------------------------- /src/devices/Sht3x/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht3x/sensor.jpg -------------------------------------------------------------------------------- /src/devices/Sht4x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht4x/README.md -------------------------------------------------------------------------------- /src/devices/Sht4x/Sht4x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht4x/Sht4x.cs -------------------------------------------------------------------------------- /src/devices/Sht4x/Sht4x.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht4x/Sht4x.csproj -------------------------------------------------------------------------------- /src/devices/Sht4x/Sht4x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht4x/Sht4x.sln -------------------------------------------------------------------------------- /src/devices/Sht4x/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sht4x/category.txt -------------------------------------------------------------------------------- /src/devices/Shtc3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Shtc3/README.md -------------------------------------------------------------------------------- /src/devices/Shtc3/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Shtc3/Register.cs -------------------------------------------------------------------------------- /src/devices/Shtc3/Shtc3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Shtc3/Shtc3.cs -------------------------------------------------------------------------------- /src/devices/Shtc3/Shtc3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Shtc3/Shtc3.csproj -------------------------------------------------------------------------------- /src/devices/Shtc3/Shtc3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Shtc3/Shtc3.sln -------------------------------------------------------------------------------- /src/devices/Shtc3/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Shtc3/Status.cs -------------------------------------------------------------------------------- /src/devices/Shtc3/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Shtc3/category.txt -------------------------------------------------------------------------------- /src/devices/Si7021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Si7021/README.md -------------------------------------------------------------------------------- /src/devices/Si7021/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Si7021/Register.cs -------------------------------------------------------------------------------- /src/devices/Si7021/Resolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Si7021/Resolution.cs -------------------------------------------------------------------------------- /src/devices/Si7021/Si7021.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Si7021/Si7021.cs -------------------------------------------------------------------------------- /src/devices/Si7021/Si7021.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Si7021/Si7021.csproj -------------------------------------------------------------------------------- /src/devices/Si7021/Si7021.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Si7021/Si7021.sln -------------------------------------------------------------------------------- /src/devices/Si7021/category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Si7021/category.txt -------------------------------------------------------------------------------- /src/devices/Si7021/sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Si7021/sensor.jpg -------------------------------------------------------------------------------- /src/devices/SkiaSharpAdapter/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | media 3 | -------------------------------------------------------------------------------- /src/devices/Sn74hc595/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Sn74hc595/README.md -------------------------------------------------------------------------------- /src/devices/Sn74hc595/category.txt: -------------------------------------------------------------------------------- 1 | multiplexer 2 | gpio 3 | -------------------------------------------------------------------------------- /src/devices/SocketCan/CanFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SocketCan/CanFlags.cs -------------------------------------------------------------------------------- /src/devices/SocketCan/CanFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SocketCan/CanFrame.cs -------------------------------------------------------------------------------- /src/devices/SocketCan/CanId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SocketCan/CanId.cs -------------------------------------------------------------------------------- /src/devices/SocketCan/CanRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SocketCan/CanRaw.cs -------------------------------------------------------------------------------- /src/devices/SocketCan/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SocketCan/Interop.cs -------------------------------------------------------------------------------- /src/devices/SocketCan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SocketCan/README.md -------------------------------------------------------------------------------- /src/devices/SocketCan/category.txt: -------------------------------------------------------------------------------- 1 | canbus 2 | -------------------------------------------------------------------------------- /src/devices/SoftPwm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SoftPwm/README.md -------------------------------------------------------------------------------- /src/devices/SoftPwm/SoftPwm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SoftPwm/SoftPwm.sln -------------------------------------------------------------------------------- /src/devices/SoftPwm/category.txt: -------------------------------------------------------------------------------- 1 | pwm 2 | protocol 3 | -------------------------------------------------------------------------------- /src/devices/SoftPwm/pwmled.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SoftPwm/pwmled.fzz -------------------------------------------------------------------------------- /src/devices/SoftPwm/pwmled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SoftPwm/pwmled.png -------------------------------------------------------------------------------- /src/devices/SoftwareSpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/SoftwareSpi/README.md -------------------------------------------------------------------------------- /src/devices/SoftwareSpi/category.txt: -------------------------------------------------------------------------------- 1 | spi 2 | protocol 3 | -------------------------------------------------------------------------------- /src/devices/Ssd1351/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ssd1351/README.md -------------------------------------------------------------------------------- /src/devices/Ssd1351/Ssd1351.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ssd1351/Ssd1351.cs -------------------------------------------------------------------------------- /src/devices/Ssd1351/Ssd1351.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ssd1351/Ssd1351.sln -------------------------------------------------------------------------------- /src/devices/Ssd1351/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | -------------------------------------------------------------------------------- /src/devices/Ssd13xx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ssd13xx/README.md -------------------------------------------------------------------------------- /src/devices/Ssd13xx/Ssd1306.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ssd13xx/Ssd1306.cs -------------------------------------------------------------------------------- /src/devices/Ssd13xx/Ssd1309.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ssd13xx/Ssd1309.cs -------------------------------------------------------------------------------- /src/devices/Ssd13xx/Ssd1327.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ssd13xx/Ssd1327.cs -------------------------------------------------------------------------------- /src/devices/Ssd13xx/Ssd13xx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ssd13xx/Ssd13xx.cs -------------------------------------------------------------------------------- /src/devices/Ssd13xx/Ssd13xx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ssd13xx/Ssd13xx.sln -------------------------------------------------------------------------------- /src/devices/Ssd13xx/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | -------------------------------------------------------------------------------- /src/devices/StUsb4500/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/StUsb4500/README.md -------------------------------------------------------------------------------- /src/devices/StUsb4500/category.txt: -------------------------------------------------------------------------------- 1 | usb 2 | -------------------------------------------------------------------------------- /src/devices/System.Device.Model/category.txt: -------------------------------------------------------------------------------- 1 | protocol 2 | -------------------------------------------------------------------------------- /src/devices/Tca954x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca954x/README.md -------------------------------------------------------------------------------- /src/devices/Tca954x/TCA9548A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca954x/TCA9548A.jpg -------------------------------------------------------------------------------- /src/devices/Tca954x/Tca9548A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca954x/Tca9548A.cs -------------------------------------------------------------------------------- /src/devices/Tca954x/Tca9548a.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca954x/Tca9548a.sln -------------------------------------------------------------------------------- /src/devices/Tca954x/category.txt: -------------------------------------------------------------------------------- 1 | multiplexer -------------------------------------------------------------------------------- /src/devices/Tca955x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca955x/README.md -------------------------------------------------------------------------------- /src/devices/Tca955x/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca955x/Register.cs -------------------------------------------------------------------------------- /src/devices/Tca955x/Tca9554.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca955x/Tca9554.cs -------------------------------------------------------------------------------- /src/devices/Tca955x/Tca9555.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca955x/Tca9555.cs -------------------------------------------------------------------------------- /src/devices/Tca955x/Tca955x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca955x/Tca955x.cs -------------------------------------------------------------------------------- /src/devices/Tca955x/Tca955x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tca955x/Tca955x.sln -------------------------------------------------------------------------------- /src/devices/Tca955x/category.txt: -------------------------------------------------------------------------------- 1 | io-expander 2 | -------------------------------------------------------------------------------- /src/devices/Tcs3472x/Gain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tcs3472x/Gain.cs -------------------------------------------------------------------------------- /src/devices/Tcs3472x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tcs3472x/README.md -------------------------------------------------------------------------------- /src/devices/Tcs3472x/Registers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tcs3472x/Registers.cs -------------------------------------------------------------------------------- /src/devices/Tcs3472x/Tcs3472x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tcs3472x/Tcs3472x.cs -------------------------------------------------------------------------------- /src/devices/Tcs3472x/Tcs3472x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tcs3472x/Tcs3472x.sln -------------------------------------------------------------------------------- /src/devices/Tcs3472x/category.txt: -------------------------------------------------------------------------------- 1 | color 2 | light 3 | -------------------------------------------------------------------------------- /src/devices/Tlc1543/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tlc1543/Channel.cs -------------------------------------------------------------------------------- /src/devices/Tlc1543/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tlc1543/README.md -------------------------------------------------------------------------------- /src/devices/Tlc1543/Tlc1543.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tlc1543/Tlc1543.cs -------------------------------------------------------------------------------- /src/devices/Tlc1543/Tlc1543.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tlc1543/Tlc1543.sln -------------------------------------------------------------------------------- /src/devices/Tlc1543/category.txt: -------------------------------------------------------------------------------- 1 | adc 2 | -------------------------------------------------------------------------------- /src/devices/Tm16xx/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/Character.cs -------------------------------------------------------------------------------- /src/devices/Tm16xx/LedSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/LedSegment.cs -------------------------------------------------------------------------------- /src/devices/Tm16xx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/README.md -------------------------------------------------------------------------------- /src/devices/Tm16xx/Tm1637.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/Tm1637.cs -------------------------------------------------------------------------------- /src/devices/Tm16xx/Tm1650.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/Tm1650.cs -------------------------------------------------------------------------------- /src/devices/Tm16xx/Tm16xx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/Tm16xx.csproj -------------------------------------------------------------------------------- /src/devices/Tm16xx/Tm16xx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/Tm16xx.sln -------------------------------------------------------------------------------- /src/devices/Tm16xx/Tm16xxBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/Tm16xxBase.cs -------------------------------------------------------------------------------- /src/devices/Tm16xx/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | segment -------------------------------------------------------------------------------- /src/devices/Tm16xx/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/picture.png -------------------------------------------------------------------------------- /src/devices/Tm16xx/tm1637.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tm16xx/tm1637.fzz -------------------------------------------------------------------------------- /src/devices/Tsl256x/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tsl256x/Channel.cs -------------------------------------------------------------------------------- /src/devices/Tsl256x/Gain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tsl256x/Gain.cs -------------------------------------------------------------------------------- /src/devices/Tsl256x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tsl256x/README.md -------------------------------------------------------------------------------- /src/devices/Tsl256x/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tsl256x/Register.cs -------------------------------------------------------------------------------- /src/devices/Tsl256x/Tsl256x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tsl256x/Tsl256x.cs -------------------------------------------------------------------------------- /src/devices/Tsl256x/Tsl256x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Tsl256x/Tsl256x.sln -------------------------------------------------------------------------------- /src/devices/Tsl256x/category.txt: -------------------------------------------------------------------------------- 1 | light 2 | -------------------------------------------------------------------------------- /src/devices/UFireIse/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/UFireIse/Command.cs -------------------------------------------------------------------------------- /src/devices/UFireIse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/UFireIse/README.md -------------------------------------------------------------------------------- /src/devices/UFireIse/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/UFireIse/Register.cs -------------------------------------------------------------------------------- /src/devices/UFireIse/UFireIse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/UFireIse/UFireIse.cs -------------------------------------------------------------------------------- /src/devices/UFireIse/UFireIse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/UFireIse/UFireIse.sln -------------------------------------------------------------------------------- /src/devices/UFireIse/UFireOrp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/UFireIse/UFireOrp.cs -------------------------------------------------------------------------------- /src/devices/UFireIse/UFirePh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/UFireIse/UFirePh.cs -------------------------------------------------------------------------------- /src/devices/UFireIse/category.txt: -------------------------------------------------------------------------------- 1 | thermometer 2 | liquid 3 | -------------------------------------------------------------------------------- /src/devices/Uln2003/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Uln2003/README.md -------------------------------------------------------------------------------- /src/devices/Uln2003/Uln2003.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Uln2003/Uln2003.cs -------------------------------------------------------------------------------- /src/devices/Uln2003/Uln2003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Uln2003/Uln2003.png -------------------------------------------------------------------------------- /src/devices/Uln2003/Uln2003.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Uln2003/Uln2003.sln -------------------------------------------------------------------------------- /src/devices/Uln2003/category.txt: -------------------------------------------------------------------------------- 1 | motor 2 | -------------------------------------------------------------------------------- /src/devices/Vcnl4040/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vcnl4040/README.md -------------------------------------------------------------------------------- /src/devices/Vcnl4040/Vncl4040.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vcnl4040/Vncl4040.sln -------------------------------------------------------------------------------- /src/devices/Vcnl4040/category.txt: -------------------------------------------------------------------------------- 1 | proximity 2 | light 3 | 4 | -------------------------------------------------------------------------------- /src/devices/Vl53L0X/InfoDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L0X/InfoDevice.cs -------------------------------------------------------------------------------- /src/devices/Vl53L0X/Precision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L0X/Precision.cs -------------------------------------------------------------------------------- /src/devices/Vl53L0X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L0X/README.md -------------------------------------------------------------------------------- /src/devices/Vl53L0X/Registers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L0X/Registers.cs -------------------------------------------------------------------------------- /src/devices/Vl53L0X/SquadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L0X/SquadInfo.cs -------------------------------------------------------------------------------- /src/devices/Vl53L0X/VL53L0X.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L0X/VL53L0X.jpg -------------------------------------------------------------------------------- /src/devices/Vl53L0X/VcselType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L0X/VcselType.cs -------------------------------------------------------------------------------- /src/devices/Vl53L0X/Vl53L0X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L0X/Vl53L0X.cs -------------------------------------------------------------------------------- /src/devices/Vl53L0X/Vl53L0X.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L0X/Vl53L0X.sln -------------------------------------------------------------------------------- /src/devices/Vl53L0X/category.txt: -------------------------------------------------------------------------------- 1 | distance 2 | -------------------------------------------------------------------------------- /src/devices/Vl53L1X/Bootstate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L1X/Bootstate.cs -------------------------------------------------------------------------------- /src/devices/Vl53L1X/Precision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L1X/Precision.cs -------------------------------------------------------------------------------- /src/devices/Vl53L1X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L1X/README.md -------------------------------------------------------------------------------- /src/devices/Vl53L1X/Registers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L1X/Registers.cs -------------------------------------------------------------------------------- /src/devices/Vl53L1X/Roi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L1X/Roi.cs -------------------------------------------------------------------------------- /src/devices/Vl53L1X/VL53L1X.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L1X/VL53L1X.jpg -------------------------------------------------------------------------------- /src/devices/Vl53L1X/Vl53L1X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L1X/Vl53L1X.cs -------------------------------------------------------------------------------- /src/devices/Vl53L1X/Vl53L1X.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Vl53L1X/Vl53L1X.sln -------------------------------------------------------------------------------- /src/devices/Vl53L1X/category.txt: -------------------------------------------------------------------------------- 1 | distance 2 | -------------------------------------------------------------------------------- /src/devices/Ws28xx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ws28xx/README.md -------------------------------------------------------------------------------- /src/devices/Ws28xx/Sk6812.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ws28xx/Sk6812.cs -------------------------------------------------------------------------------- /src/devices/Ws28xx/WS2808.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ws28xx/WS2808.png -------------------------------------------------------------------------------- /src/devices/Ws28xx/Ws2808.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ws28xx/Ws2808.cs -------------------------------------------------------------------------------- /src/devices/Ws28xx/Ws2812B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ws28xx/Ws2812B.cs -------------------------------------------------------------------------------- /src/devices/Ws28xx/Ws2815B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ws28xx/Ws2815B.cs -------------------------------------------------------------------------------- /src/devices/Ws28xx/Ws28xx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ws28xx/Ws28xx.cs -------------------------------------------------------------------------------- /src/devices/Ws28xx/Ws28xx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ws28xx/Ws28xx.csproj -------------------------------------------------------------------------------- /src/devices/Ws28xx/Ws28xx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/src/devices/Ws28xx/Ws28xx.sln -------------------------------------------------------------------------------- /src/devices/Ws28xx/category.txt: -------------------------------------------------------------------------------- 1 | display 2 | led 3 | -------------------------------------------------------------------------------- /tools/ArduinoCsCompiler/IlCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/tools/ArduinoCsCompiler/IlCode.cs -------------------------------------------------------------------------------- /tools/ArduinoCsCompiler/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/tools/ArduinoCsCompiler/OpCode.cs -------------------------------------------------------------------------------- /tools/ArduinoCsCompiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/tools/ArduinoCsCompiler/README.md -------------------------------------------------------------------------------- /tools/DevicesApiTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/tools/DevicesApiTester/Program.cs -------------------------------------------------------------------------------- /tools/DevicesApiTester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/tools/DevicesApiTester/README.md -------------------------------------------------------------------------------- /tools/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/tools/Directory.Build.props -------------------------------------------------------------------------------- /tools/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/tools/Directory.Build.targets -------------------------------------------------------------------------------- /tools/device-listing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/tools/device-listing/Program.cs -------------------------------------------------------------------------------- /tools/device-listing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/iot/HEAD/tools/device-listing/README.md --------------------------------------------------------------------------------