■ HC-SR501 PIR 센서를 사용하는 방법을 보여준다.
▶ 부품 내역
1 2 3 4 5 6 7 |
──────────────── 구분 모델 수량 비고 ───── ──── ── ── SENSOR/PIR HC-SC501 1 ──────────────── |
[회로 구성도]
▶ MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<Page x:Class="TestPIR.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="using:TestPIR" mc:Ignorable="d"> <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <TextBlock x:Name="messageTextBlock" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="96" /> </Grid> </Page> |
▶ MainPage.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
using System.Threading.Tasks; using Windows.Devices.Gpio; using Windows.Foundation; using Windows.UI.Core; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; namespace TestPIR { /// <summary> /// 메인 페이지 /// </summary> public sealed partial class MainPage : Page { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// GPIO 컨트롤러 /// </summary> private GpioController gpioController = null; /// <summary> /// GPIO 핀 /// </summary> private GpioPin gpioPin = null; /// <summary> /// PIR 핀 번호 /// </summary> private const int PIR_PIN_NUMBER = 5; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainPage() /// <summary> /// 생성자 /// </summary> public MainPage() { InitializeComponent(); Loaded += Page_Loaded; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 페이지 로드시 처리하기 - Page_Loaded(sender, e) /// <summary> /// 페이지 로드시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private async void Page_Loaded(object sender, RoutedEventArgs e) { await InitializeGPIO(); } #endregion #region GPIO 핀 값 변경시 처리하기 - gpioPin_ValueChanged(sender, e) /// <summary> /// GPIO 핀 값 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void gpioPin_ValueChanged(GpioPin sender, GpioPinValueChangedEventArgs e) { if(e.Edge == GpioPinEdge.RisingEdge) { IAsyncAction task = Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => { this.messageTextBlock.Text = "Motion detected!"; }); } if(e.Edge == GpioPinEdge.FallingEdge) { IAsyncAction task = Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => { this.messageTextBlock.Text = ""; }); } } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region GPIO 초기화 하기 - InitializeGPIO() /// <summary> /// GPIO 초기화 하기 /// </summary> private async Task InitializeGPIO() { this.gpioController = GpioController.GetDefault(); if(this.gpioController == null) { this.gpioPin = null; return; } this.gpioPin = gpioController.OpenPin(PIR_PIN_NUMBER); if(this.gpioPin.IsDriveModeSupported(GpioPinDriveMode.InputPullUp)) { this.gpioPin.SetDriveMode(GpioPinDriveMode.InputPullUp); } else { this.gpioPin.SetDriveMode(GpioPinDriveMode.Input); } this.messageTextBlock.Text = "PIR 초기화..."; await Task.Delay(10000); this.messageTextBlock.Text = string.Empty; this.gpioPin.ValueChanged += gpioPin_ValueChanged; } #endregion } } |