You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SH1106Wire.h
+5-5
Original file line number
Diff line number
Diff line change
@@ -64,12 +64,12 @@ class SH1106Wire : public OLEDDisplay {
64
64
* ensure -1 value are specified for all 3 parameters. This can be usefull to control TwoWire with multiple
65
65
* device on the same bus.
66
66
*
67
-
* @param _address I2C Display address
68
-
* @param _sda I2C SDA pin number, default to -1 to skip Wire begin call
69
-
* @param _scl I2C SCL pin number, default to -1 (only SDA = -1 is considered to skip Wire begin call)
67
+
* @param address I2C Display address
68
+
* @param sda I2C SDA pin number, default to -1 to skip Wire begin call
69
+
* @param scl I2C SCL pin number, default to -1 (only SDA = -1 is considered to skip Wire begin call)
70
70
* @param g display geometry dafault to generic GEOMETRY_128_64, see OLEDDISPLAY_GEOMETRY definition for other options
71
-
* @param _i2cBus on ESP32 with 2 I2C HW buses, I2C_ONE for 1st Bus, I2C_TWO fot 2nd bus, default I2C_ONE
72
-
* @param _frequency for Frequency by default Let's use ~700khz if ESP8266 is in 160Mhz mode, this will be limited to ~400khz if the ESP8266 in 80Mhz mode
71
+
* @param i2cBus on ESP32 with 2 I2C HW buses, I2C_ONE for 1st Bus, I2C_TWO fot 2nd bus, default I2C_ONE
72
+
* @param frequency for Frequency by default Let's use ~700khz if ESP8266 is in 160Mhz mode, this will be limited to ~400khz if the ESP8266 in 80Mhz mode
73
73
*/
74
74
SH1106Wire(uint8_t address, int sda = -1, int scl = -1, OLEDDISPLAY_GEOMETRY g = GEOMETRY_128_64, HW_I2C i2cBus = I2C_ONE, long frequency = 700000) {
Copy file name to clipboardExpand all lines: src/SSD1306Wire.h
+9-9
Original file line number
Diff line number
Diff line change
@@ -65,25 +65,25 @@ class SSD1306Wire : public OLEDDisplay {
65
65
* ensure -1 value are specified for all 3 parameters. This can be usefull to control TwoWire with multiple
66
66
* device on the same bus.
67
67
*
68
-
* @param _address I2C Display address
69
-
* @param _sda I2C SDA pin number, default to -1 to skip Wire begin call
70
-
* @param _scl I2C SCL pin number, default to -1 (only SDA = -1 is considered to skip Wire begin call)
68
+
* @param address I2C Display address
69
+
* @param sda I2C SDA pin number, default to -1 to skip Wire begin call
70
+
* @param scl I2C SCL pin number, default to -1 (only SDA = -1 is considered to skip Wire begin call)
71
71
* @param g display geometry dafault to generic GEOMETRY_128_64, see OLEDDISPLAY_GEOMETRY definition for other options
72
-
* @param _i2cBus on ESP32 with 2 I2C HW buses, I2C_ONE for 1st Bus, I2C_TWO fot 2nd bus, default I2C_ONE
73
-
* @param _frequency for Frequency by default Let's use ~700khz if ESP8266 is in 160Mhz mode, this will be limited to ~400khz if the ESP8266 in 80Mhz mode
72
+
* @param i2cBus on ESP32 with 2 I2C HW buses, I2C_ONE for 1st Bus, I2C_TWO fot 2nd bus, default I2C_ONE
73
+
* @param frequency for Frequency by default Let's use ~700khz if ESP8266 is in 160Mhz mode, this will be limited to ~400khz if the ESP8266 in 80Mhz mode
74
74
*/
75
75
SSD1306Wire(uint8_t address, int sda = -1, int scl = -1, OLEDDISPLAY_GEOMETRY g = GEOMETRY_128_64, HW_I2C i2cBus = I2C_ONE, long frequency = 700000) {
0 commit comments