Skip to content

Commit 4e90728

Browse files
committed
Merge pull request #8 from FWeinb/improve-naming
Align the name of all source files
2 parents ef64c27 + c5da2a3 commit 4e90728

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

ssd1306_i2c.cpp renamed to SSD1306.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ See more at http://blog.squix.ch
2525
Credits for parts of this code go to Mike Rankin. Thank you so much for sharing!
2626
*/
2727

28-
#include "ssd1306_i2c.h"
28+
#include "SSD1306.h"
2929
#include <Wire.h>
3030

3131

File renamed without changes.

SSD1306Ui.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Credits for parts of this code go to Daniel Eichhorn
2626
#pragma once
2727

2828
#include <Arduino.h>
29-
#include "ssd1306_i2c.h"
29+
#include "SSD1306.h"
3030

3131
enum AnimationDirection {
3232
SLIDE_UP,

examples/SSD1306Demo/SSD1306Demo.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SOFTWARE.
2323
See more at http://blog.squix.ch
2424
*/
2525
#include <Wire.h>
26-
#include "ssd1306_i2c.h"
26+
#include "SSD1306.h"
2727
#include "SSD1306Ui.h"
2828
#include "images.h"
2929

0 commit comments

Comments
 (0)