Skip to content

Commit 0f275a0

Browse files
author
Ethan Layton
committed
MPAE-19168: ReadMe edited per tech writer comments.
1 parent c3b0f3e commit 0f275a0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![MCHP](images/microchip.png)](https://www.microchip.com)
22

3-
# Debouncing a Pushbutton on the PIC18F16Q41
4-
In this example, a pushbutton will be debounced using the Configurable Logic Cell (CLC) and Timer 2 (TMR2) peripherals on the PIC18F16Q41. When this occurs, the UART peripheral will print a message to a serial terminal.
3+
# Debouncing a Push button on the PIC18F16Q41
4+
In this example, a push button will be debounced using the Configurable Logic Cell (CLC) and Timer 2 (TMR2) peripherals on the PIC18F16Q41. When this occurs, the UART peripheral will print a message to a serial terminal.
55

66
## Related Documentation
77

@@ -36,7 +36,7 @@
3636
+ Name: “uart-button”
3737
+ **Note: The project name cannot have any empty spaces**
3838

39-
When a pushbutton is pressed, the internal contacts in the switch will bounce momentarily, causing the digital value read to vary wildly. This can create false detections of button press and release. To remove the contact bounce from the digital input, a CLC and TMR2 are used to create a debouncer.
39+
When a push button is pressed, the internal contacts in the switch will bounce momentarily, causing the digital value read to vary wildly. This can create false detections of button press and release. To remove the contact bounce from the digital input, a CLC and TMR2 are used to create a debouncer.
4040

4141

4242
**Step #2: MPLAB Code Configurator (MCC)**
@@ -154,16 +154,16 @@ When a pushbutton is pressed, the internal contacts in the switch will bounce mo
154154

155155
![COM PORT Settings](images/Picture5.PNG)
156156

157-
+ If everything is setup correctly, then the serial terminal should start displaying the printf statement when the pushbutton is activated.
157+
+ If everything is setup correctly, then the serial terminal should start displaying the printf statement when the push button is activated.
158158

159159
![Terminal Emulator Results](images/Picture6.PNG)
160160

161-
The figure below shows an example of the button being debounced. The yellow signal is the pushbutton after being released and the blue signal shows the output of the CLC.
161+
The figure below shows an example of the button being debounced. The yellow signal is the push button after being released and the blue signal shows the output of the CLC.
162162

163163

164164
![Waveform](images/Picture9.PNG)
165165

166166

167167
## Summary
168168

169-
This application demonstrates how to debounce a pushbutton.
169+
This application demonstrates how to debounce a push button.

0 commit comments

Comments
 (0)