Skip to content

Commit 3504dc9

Browse files
committed
clang-format
1 parent 0f65b97 commit 3504dc9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/analogIO/Wippersnapper_AnalogIO.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void Wippersnapper_AnalogIO::setADCResolution(int resolution) {
9090
scaleAnalogRead = false; // handled in bsp (analogReadResolution)
9191
analogReadResolution(resolution); // 16 bit values (shifted from 12 or 13bit)
9292
#if defined(ESP32S3)
93-
_nativeResolution = 13; // S3 ADC is 13-bit, others are 12-bit
93+
_nativeResolution = 13; // S3 ADC is 13-bit, others are 12-bit
9494
#else
9595
_nativeResolution = 12;
9696
#endif

src/components/i2c/drivers/WipperSnapper_I2C_Driver.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ class WipperSnapper_I2C_Driver {
12341234
@brief Enables the device's proximity sensor, if it exists.
12351235
*/
12361236
/*******************************************************************************/
1237-
virtual void enableSensorProximity(){};
1237+
virtual void enableSensorProximity() {};
12381238

12391239
/*******************************************************************************/
12401240
/*!

src/components/uart/drivers/ws_uart_drv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class ws_uart_drv {
160160
@brief Reads the UART device's data then packs and sends it to IO.
161161
*/
162162
/*******************************************************************************/
163-
virtual void send_data(){};
163+
virtual void send_data() {};
164164

165165
const char *uartTopic = nullptr; ///< UART device's MQTT topic
166166
Adafruit_MQTT *mqttClient = nullptr; ///< Pointer to MQTT client object

0 commit comments

Comments
 (0)