@@ -92,10 +92,10 @@ void drawRect(int x, int y, int width, int height);
92
92
void fillRect(int x, int y, int width, int height);
93
93
94
94
// 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);
96
96
97
97
// 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);
99
99
100
100
// Sets the color of all pixel operations
101
101
void setColor(int color);
@@ -125,7 +125,7 @@ void setTextAlignment(int textAlignment);
125
125
// defined in SSD1306Fonts.h:
126
126
// ArialMT_Plain_10, ArialMT_Plain_16, ArialMT_Plain_24
127
127
// Or create one with the font tool at http://oleddisplay.squix.ch
128
- void setFont(const char \ * fontData);
128
+ void setFont(const char * fontData);
129
129
```
130
130
131
131
## Frame Transition Functions
@@ -135,7 +135,7 @@ The Frame Transition functions are a set of functions on top of the basic librar
135
135
```C++
136
136
// Sets the callback methods of the format void method(x,y). As soon as you define the callbacks
137
137
// 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));
139
139
140
140
// Tells the framework to move to the next tick. The
141
141
// current visible frame callback will be called once
0 commit comments