Skip to content

Commit 2bd530f

Browse files
author
Nicolas Bockstaller
committed
Format with clang
1 parent 1a570f9 commit 2bd530f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Adafruit_Fingerprint.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ void Adafruit_Fingerprint::begin(uint32_t baudrate) {
140140
@param txPin pin
141141
*/
142142
/**************************************************************************/
143-
void Adafruit_Fingerprint::begin(uint32_t baudrate, int8_t rxPin, int8_t txPin) {
143+
void Adafruit_Fingerprint::begin(uint32_t baudrate, int8_t rxPin,
144+
int8_t txPin) {
144145
delay(1000); // one second delay to let the sensor 'boot up'
145146

146147
hwSerial->begin(baudrate, SERIAL_8N1, rxPin, txPin);

Adafruit_Fingerprint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class Adafruit_Fingerprint {
171171
#if defined(ESP32)
172172
void begin(uint32_t baud, int8_t rxPin, int8_t txPin);
173173
#endif
174-
174+
175175
boolean verifyPassword(void);
176176
uint8_t getParameters(void);
177177

0 commit comments

Comments
 (0)