diff --git a/ssd1306_i2c.cpp b/SSD1306.cpp similarity index 99% rename from ssd1306_i2c.cpp rename to SSD1306.cpp index 2bd40d445c661bff2ca0685d2956c84983449272..24215a727188ca7c0a3be5f2a5a426eda38e6006 100644 --- a/ssd1306_i2c.cpp +++ b/SSD1306.cpp @@ -25,7 +25,7 @@ See more at http://blog.squix.ch Credits for parts of this code go to Mike Rankin. Thank you so much for sharing! */ -#include "ssd1306_i2c.h" +#include "SSD1306.h" #include <Wire.h> diff --git a/ssd1306_i2c.h b/SSD1306.h similarity index 100% rename from ssd1306_i2c.h rename to SSD1306.h diff --git a/SSD1306Ui.h b/SSD1306Ui.h index d5d7257002dc9363d4fecf9a4f7c522936ef93f4..e43f8980c37b5d76b67f1777d77129204a216253 100644 --- a/SSD1306Ui.h +++ b/SSD1306Ui.h @@ -26,7 +26,7 @@ Credits for parts of this code go to Daniel Eichhorn #pragma once #include <Arduino.h> -#include "ssd1306_i2c.h" +#include "SSD1306.h" enum AnimationDirection { SLIDE_UP, diff --git a/examples/SSD1306Demo/SSD1306Demo.ino b/examples/SSD1306Demo/SSD1306Demo.ino index 721e02a96a72ea3a1bb2541cbfc2d67cfd95a916..e6ebbe02fafe9b0537ab2ef909f1deefad83d03f 100644 --- a/examples/SSD1306Demo/SSD1306Demo.ino +++ b/examples/SSD1306Demo/SSD1306Demo.ino @@ -23,7 +23,7 @@ SOFTWARE. See more at http://blog.squix.ch */ #include <Wire.h> -#include "ssd1306_i2c.h" +#include "SSD1306.h" #include "SSD1306Ui.h" #include "images.h"