diff --git a/examples/print_demo/print_demo.ino b/examples/print_demo/print_demo.ino index 3b03a7e..d58745d 100644 --- a/examples/print_demo/print_demo.ino +++ b/examples/print_demo/print_demo.ino @@ -1,5 +1,5 @@ #include -#include +#include // Buffer which can hold 400 lines byte buffer[48 * 400] = {0}; diff --git a/library.json b/library.json index d91e511..855e180 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "CatGFX", - "version": "0.0.1", + "version": "0.0.2", "description":"Adafruit GFX compatible arduino library for using cat thermal printers with the ESP32 .", "keywords":"Arduino,ESP32,Cat,ThermalPrinter,Printer,BLE", "license": "Unlicense", diff --git a/library.properties b/library.properties index 8dc372c..05eab9a 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ -name=Cat GFX Thermal Printer Library -version=0.0.1 +name=CatGFX +version=0.0.2 author=Claus Naeveke maintainer=Claus Naeveke sentence=Adafruit GFX compatible arduino library for using cat thermal printers with the ESP32 diff --git a/src/CatPrinter.cpp b/src/CatGFX.cpp similarity index 99% rename from src/CatPrinter.cpp rename to src/CatGFX.cpp index bd64404..7da82f1 100644 --- a/src/CatPrinter.cpp +++ b/src/CatGFX.cpp @@ -1,4 +1,4 @@ -#include "CatPrinter.h" +#include "CatGFX.h" void CatPrinter::begin(byte *buffer, uint16_t size) { pixelBuffer = buffer; diff --git a/src/CatPrinter.h b/src/CatGFX.h similarity index 100% rename from src/CatPrinter.h rename to src/CatGFX.h