-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathGpioButton.cs
140 lines (127 loc) · 5.15 KB
/
GpioButton.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Device.Gpio;
namespace Iot.Device.Button
{
/// <summary>
/// GPIO implementation of Button.
/// Inherits from ButtonBase.
/// </summary>
public class GpioButton : ButtonBase
{
private GpioController _gpioController;
private PinMode _pinMode;
private int _buttonPin;
private bool _shouldDispose;
private bool _disposed = false;
/// <summary>
/// Initializes a new instance of the <see cref="GpioButton" /> class.
/// </summary>
/// <param name="buttonPin">GPIO pin of the button.</param>
/// <param name="gpio">Gpio Controller.</param>
/// <param name="shouldDispose">True to dispose the GpioController.</param>
/// <param name="pinMode">Pin mode of the system.</param>
/// <param name="debounceTime">The amount of time during which the transitions are ignored, or zero.</param>
public GpioButton(
int buttonPin,
GpioController gpio = null,
bool shouldDispose = true,
PinMode pinMode = PinMode.InputPullUp,
TimeSpan debounceTime = default(TimeSpan))
: this(buttonPin, TimeSpan.FromTicks(DefaultDoublePressTicks), TimeSpan.FromMilliseconds(DefaultHoldingMilliseconds), gpio, shouldDispose, pinMode, debounceTime)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="GpioButton" /> class.
/// </summary>
/// <param name="buttonPin">GPIO pin of the button.</param>
/// <param name="doublePress">Max ticks between button presses to count as doublepress.</param>
/// <param name="holding">Min ms a button is pressed to count as holding.</param>
/// <param name="gpio">Gpio Controller.</param>
/// <param name="shouldDispose">True to dispose the GpioController.</param>
/// <param name="pinMode">Pin mode of the system.</param>
/// <param name="debounceTime">The amount of time during which the transitions are ignored, or zero.</param>
public GpioButton(
int buttonPin,
TimeSpan doublePress,
TimeSpan holding,
GpioController? gpio = null,
bool shouldDispose = true,
PinMode pinMode = PinMode.InputPullUp,
TimeSpan debounceTime = default(TimeSpan))
: base(doublePress, holding, debounceTime)
{
_gpioController = gpio ?? new GpioController();
_shouldDispose = shouldDispose;
_buttonPin = buttonPin;
_pinMode = pinMode;
if (_pinMode == PinMode.Input | _pinMode == PinMode.InputPullDown | _pinMode == PinMode.InputPullUp)
{
_gpioController.OpenPin(_buttonPin, _pinMode);
_gpioController.RegisterCallbackForPinValueChangedEvent(_buttonPin, PinEventTypes.Falling | PinEventTypes.Rising, PinStateChanged);
}
else
{
throw new ArgumentException("GPIO pin can only be set to input, not to output.");
}
}
/// <summary>
/// Handles changes in GPIO pin, based on whether the system is pullup or pulldown.
/// </summary>
/// <param name="sender">The sender object.</param>
/// <param name="pinValueChangedEventArgs">The pin argument changes.</param>
private void PinStateChanged(object sender, PinValueChangedEventArgs pinValueChangedEventArgs)
{
switch (pinValueChangedEventArgs.ChangeType)
{
case PinEventTypes.Falling:
if (_pinMode == PinMode.InputPullUp)
{
HandleButtonPressed();
}
else
{
HandleButtonReleased();
}
break;
case PinEventTypes.Rising:
if (_pinMode == PinMode.InputPullUp)
{
HandleButtonReleased();
}
else
{
HandleButtonPressed();
}
break;
}
}
/// <summary>
/// Internal cleanup.
/// </summary>
/// <param name="disposing">Should dispose managed resources.</param>
protected override void Dispose(bool disposing)
{
if (_disposed)
{
return;
}
if (disposing)
{
_gpioController.UnregisterCallbackForPinValueChangedEvent(_buttonPin, PinStateChanged);
if (_shouldDispose)
{
_gpioController?.Dispose();
_gpioController = null;
}
else
{
_gpioController.ClosePin(_buttonPin);
}
base.Dispose(disposing);
_disposed = true;
}
}
}
}