Skip to content

Commit

Permalink
Fixing little mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
elC0mpa committed Jan 5, 2020
1 parent 5159f47 commit 5c0616a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This library is compatible with any oled display which is compatible with [Adafr
Create an instance of `OLED_SSD1306_Chart` class for each oled display in which you would like to draw a cartesian chart. These objects constructors and [Adafruit_SSD1306](https://github.com/adafruit/Adafruit_SSD1306) objects constructors are the same. In this documentation will be explained only the I2C constructor.

```c++
// Adafruit_SSD1306_Chart instance
// OLED_SSD1306_Chart instance
OLED_SSD1306_Chart display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
```
Expand All @@ -47,7 +47,7 @@ The class constructor takes the following arguments:
```c++
// Adafruit_SSD1306_Chart class's constructor signature
// OLED_SSD1306_Chart class's constructor signature
OLED_SSD1306_Chart(uint8_t w, uint8_t h, TwoWire *twi, int8_t rst_pin=-1,
uint32_t clkDuring=400000UL, uint32_t clkAfter=100000UL)
```
Expand Down

0 comments on commit 5c0616a

Please sign in to comment.