nanoFramework.Iot.Device.Hcsr501 1.2.570

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package nanoFramework.Iot.Device.Hcsr501 --version 1.2.570
NuGet\Install-Package nanoFramework.Iot.Device.Hcsr501 -Version 1.2.570
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.570" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.Iot.Device.Hcsr501 --version 1.2.570
#r "nuget: nanoFramework.Iot.Device.Hcsr501, 1.2.570"
#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.
// Install nanoFramework.Iot.Device.Hcsr501 as a Cake Addin
#addin nuget:?package=nanoFramework.Iot.Device.Hcsr501&version=1.2.570

// Install nanoFramework.Iot.Device.Hcsr501 as a Cake Tool
#tool nuget:?package=nanoFramework.Iot.Device.Hcsr501&version=1.2.570

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.570 68 6/14/2024
1.2.560 79 5/29/2024
1.2.548 61 5/15/2024
1.2.436 271 11/10/2023
1.2.416 111 11/8/2023
1.2.329 200 5/26/2023
1.2.313 160 5/12/2023
1.2.297 179 5/3/2023
1.2.217 350 1/6/2023
1.2.203 321 12/28/2022
1.2.159 397 11/14/2022
1.2.153 398 11/5/2022
1.2.141 418 10/25/2022
1.2.122 454 10/12/2022
1.2.114 411 10/8/2022
1.2.95 450 9/22/2022
1.2.87 514 9/15/2022
1.2.73 429 9/8/2022
1.1.116.8772 460 6/24/2022
1.1.113.2032 439 6/23/2022
1.1.58.10097 463 5/23/2022
1.1.3 479 4/15/2022
1.1.1 454 4/14/2022
1.0.300 463 3/31/2022
1.0.277-preview.126 116 3/25/2022
1.0.277-preview.125 108 3/25/2022
1.0.277-preview.112 104 3/19/2022
1.0.277-preview.110 104 3/18/2022
1.0.277-preview.105 108 3/15/2022
1.0.277-preview.99 112 3/10/2022
1.0.277-preview.98 113 3/8/2022
1.0.277-preview.77 105 2/18/2022
1.0.277-preview.41 120 1/28/2022
1.0.277-preview.32 129 1/27/2022
1.0.277-preview.17 125 1/24/2022
1.0.277-preview.15 115 1/21/2022
1.0.277-preview.13 119 1/21/2022
1.0.277-preview.1 123 1/11/2022
1.0.259 325 12/9/2021
1.0.218 187 10/18/2021
1.0.155 335 8/31/2021
1.0.135 355 7/16/2021
1.0.134 164 7/15/2021
1.0.133 171 7/14/2021
1.0.125 189 7/5/2021
1.0.121 193 6/29/2021
1.0.119 212 6/28/2021
1.0.105 263 5/29/2021
1.0.13 174 5/21/2021