Skip to content

Commit e0d9da4

Browse files
committed
Remove non default args to SSD1306 ctor
1 parent 0c55b03 commit e0d9da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/i2c/drivers/WipperSnapper_I2C_Driver_Out_Ssd1306.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class WipperSnapper_I2C_Driver_Out_Ssd1306
7070
bool begin() {
7171
// Attempt to create and allocate a SSD1306 obj.
7272
_display = new Adafruit_SSD1306(_width, _height, _i2c);
73-
if (!_display->begin(SSD1306_SWITCHCAPVCC, _sensorAddress, false, false))
73+
if (!_display->begin(SSD1306_SWITCHCAPVCC, _sensorAddress))
7474
return false;
7575
// Configure the rotation, text size and color
7676
_display->setRotation(_rotation);

0 commit comments

Comments
 (0)