nanoFramework.Iot.Device.Hcsr501 1.2.869

Prefix Reserved
dotnet add package nanoFramework.Iot.Device.Hcsr501 --version 1.2.869
                    
NuGet\Install-Package nanoFramework.Iot.Device.Hcsr501 -Version 1.2.869
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.Iot.Device.Hcsr501" Version="1.2.869" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="nanoFramework.Iot.Device.Hcsr501" Version="1.2.869" />
                    
Directory.Packages.props
<PackageReference Include="nanoFramework.Iot.Device.Hcsr501" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add nanoFramework.Iot.Device.Hcsr501 --version 1.2.869
                    
#r "nuget: nanoFramework.Iot.Device.Hcsr501, 1.2.869"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package nanoFramework.Iot.Device.Hcsr501@1.2.869
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=nanoFramework.Iot.Device.Hcsr501&version=1.2.869
                    
Install as a Cake Addin
#tool nuget:?package=nanoFramework.Iot.Device.Hcsr501&version=1.2.869
                    
Install as a Cake Tool

HC-SR501 - PIR Motion Sensor

HC-SR501 is used to detect motion based on the infrared heat in the surrounding area.

Documentation

sensor

Usage

using(Hcsr501 sensor = new Hcsr501(hcsr501Pin, PinNumberingScheme.Logical))
{
    // detect motion
    bool isDetected = sensor.IsMotionDetected;
}

From the HC-SR501 sample, we can do comething more complete:

GpioController ledController = new GpioController();
ledController.OpenPin(27, PinMode.Output);

using (Iot.Device.Hcsr501.Hcsr501 sensor =
    new Iot.Device.Hcsr501.Hcsr501(17))
{
    while (true)
    {
        // adjusting the detection distance and time by rotating the potentiometer on the sensor
        if (sensor.IsMotionDetected)
        {
            // turn the led on when the sensor detected infrared heat
            ledController.Write(27, PinValue.High);
            Debug.WriteLine("Detected! Turn the LED on.");
        }
        else
        {
            // turn the led off when the sensor undetected infrared heat
            ledController.Write(27, PinValue.Low);
            Debug.WriteLine("Undetected! Turn the LED off.");
        }

        Thread.Sleep(1000);
    }
}

Hardware Required

  • PIR Motion Sensor - HC-SR501
  • LED
  • 220 Ω resistor
  • Male/Female Jumper Wires

Circuit

circuit

HC-SR501

settings

  • VCC - 5V
  • GND - GND
  • OUT - GPIO 17

LED

  • VCC & 220 Ω resistor - GPIO 27
  • GND - GND

Result

result

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.869 196 4/2/2025
1.2.864 188 4/2/2025
1.2.852 206 3/11/2025
1.2.822 140 2/26/2025
1.2.775 144 2/4/2025
1.2.772 139 2/4/2025
1.2.755 152 1/31/2025
1.2.737 125 1/13/2025
1.2.696 152 12/16/2024
1.2.673 165 10/23/2024
1.2.631 156 8/28/2024
1.2.590 157 7/17/2024
1.2.570 149 6/14/2024
1.2.560 159 5/29/2024
1.2.548 136 5/15/2024
1.2.436 326 11/10/2023
1.2.416 162 11/8/2023
1.2.329 278 5/26/2023
1.2.313 244 5/12/2023
1.2.297 269 5/3/2023
1.2.217 431 1/6/2023
1.2.203 403 12/28/2022
1.2.159 491 11/14/2022
1.2.153 480 11/5/2022
1.2.141 523 10/25/2022
1.2.122 540 10/12/2022
1.2.114 495 10/8/2022
1.2.95 542 9/22/2022
1.2.87 615 9/15/2022
1.2.73 530 9/8/2022
1.1.116.8772 559 6/24/2022
1.1.113.2032 550 6/23/2022
1.1.58.10097 559 5/23/2022
1.1.3 583 4/15/2022
1.1.1 554 4/14/2022
1.0.300 569 3/31/2022
1.0.277-preview.126 197 3/25/2022
1.0.277-preview.125 188 3/25/2022
1.0.277-preview.112 199 3/19/2022
1.0.277-preview.110 186 3/18/2022
1.0.277-preview.105 200 3/15/2022
1.0.277-preview.99 199 3/10/2022
1.0.277-preview.98 202 3/8/2022
1.0.277-preview.77 189 2/18/2022
1.0.277-preview.41 208 1/28/2022
1.0.277-preview.32 212 1/27/2022
1.0.277-preview.17 209 1/24/2022
1.0.277-preview.15 205 1/21/2022
1.0.277-preview.13 205 1/21/2022
1.0.277-preview.1 220 1/11/2022
1.0.259 436 12/9/2021
1.0.218 281 10/18/2021
1.0.155 435 8/31/2021
1.0.135 458 7/16/2021
1.0.134 257 7/15/2021
1.0.133 263 7/14/2021
1.0.125 282 7/5/2021
1.0.121 288 6/29/2021
1.0.119 313 6/28/2021
1.0.105 369 5/29/2021
1.0.13 277 5/21/2021