Skip to content

Commit 1a570f9

Browse files
author
Nicolas Bockstaller
committed
Fix formarting
1 parent 7152cdf commit 1a570f9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Adafruit_Fingerprint.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ void Adafruit_Fingerprint::begin(uint32_t baudrate) {
136136
/*!
137137
@brief Initializes serial interface and baud rate
138138
@param baudrate Sensor's UART baud rate (usually 57600, 9600 or 115200)
139-
@param tx pin
140-
@param rx pin
139+
@param rxPin pin
140+
@param txPin pin
141141
*/
142142
/**************************************************************************/
143143
void Adafruit_Fingerprint::begin(uint32_t baudrate, int8_t rxPin, int8_t txPin) {

Adafruit_Fingerprint.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,9 @@ class Adafruit_Fingerprint {
168168
Adafruit_Fingerprint(Stream *serial, uint32_t password = 0x0);
169169

170170
void begin(uint32_t baud);
171-
#if defined(ESP32)
171+
#if defined(ESP32)
172172
void begin(uint32_t baud, int8_t rxPin, int8_t txPin);
173-
#endif
173+
#endif
174174

175175
boolean verifyPassword(void);
176176
uint8_t getParameters(void);

0 commit comments

Comments
 (0)