Skip to content

Commit 43137ba

Browse files
committed
Removed escaping again
1 parent 5977468 commit 43137ba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ void drawRect(int x, int y, int width, int height);
9292
void fillRect(int x, int y, int width, int height);
9393
9494
// Draw a bitmap with the given dimensions
95-
void drawBitmap(int x, int y, int width, int height, const char \*bitmap);
95+
void drawBitmap(int x, int y, int width, int height, const char *bitmap);
9696
9797
// Draw an XBM image with the given dimensions
98-
void drawXbm(int x, int y, int width, int height, const char \*xbm);
98+
void drawXbm(int x, int y, int width, int height, const char *xbm);
9999
100100
// Sets the color of all pixel operations
101101
void setColor(int color);
@@ -125,7 +125,7 @@ void setTextAlignment(int textAlignment);
125125
// defined in SSD1306Fonts.h:
126126
// ArialMT_Plain_10, ArialMT_Plain_16, ArialMT_Plain_24
127127
// Or create one with the font tool at http://oleddisplay.squix.ch
128-
void setFont(const char \*fontData);
128+
void setFont(const char *fontData);
129129
```
130130
131131
## Frame Transition Functions
@@ -135,7 +135,7 @@ The Frame Transition functions are a set of functions on top of the basic librar
135135
```C++
136136
// Sets the callback methods of the format void method(x,y). As soon as you define the callbacks
137137
// the library is in "frame mode" and indicators will be drawn.
138-
void setFrameCallbacks(int frameCount, void (\*frameCallbacks[])(SSD1306 \*display, SSD1306UiState\* state,int x, int y));
138+
void setFrameCallbacks(int frameCount, void (*frameCallbacks[])(SSD1306 *display, SSD1306UiState* state,int x, int y));
139139
140140
// Tells the framework to move to the next tick. The
141141
// current visible frame callback will be called once

0 commit comments

Comments
 (0)