Update README.md

This commit is contained in:
Thomas O Fredericks
2024-01-11 11:50:52 -05:00
parent 699b0e429c
commit b7cd534fb7
+6
View File
@@ -136,6 +136,8 @@ void loop() {
### Bounce2::Button
The `Bounce2::Button` class extends `Bounce` and adds `pressed()` and `released()` methods. It is the most feature rich class of the library.
| Method | Description |
| --------------- | --------------- |
| `Button()` | Create an instance of the Button class. By default, the pressed state is matched to a HIGH electrical level. |
@@ -158,6 +160,8 @@ void loop() {
### Bounce
The `Bounce` class extends `Debouncer` and links it to a hardware pin. This class is odly named, but it will be kept that so it stays compatible with previous code.
| Method | Description |
| --------------- | --------------- |
| `Bounce()` | Create an instance of the Bounce class. |
@@ -174,6 +178,8 @@ void loop() {
### Debouncer
The `Debouncer` class. Just the debouncing code separated from all harware.
| Method | Description |
| --------------- | --------------- |
| `Debouncer()` | Create an instance of the Debouncer class.|