Skip to content

Commit

Permalink
Fixed Arduino Lib Manager Linter complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNitek committed Jul 3, 2022
1 parent 28add8b commit 6f8844c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/print_demo/print_demo.ino
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Arduino.h>
#include <CatPrinter.h>
#include <CatGFX.h>

// Buffer which can hold 400 lines
byte buffer[48 * 400] = {0};
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -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 <claus+catgfx@naeveke.de>
sentence=Adafruit GFX compatible arduino library for using cat thermal printers with the ESP32
Expand Down
2 changes: 1 addition & 1 deletion src/CatPrinter.cpp → src/CatGFX.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "CatPrinter.h"
#include "CatGFX.h"

void CatPrinter::begin(byte *buffer, uint16_t size) {
pixelBuffer = buffer;
Expand Down
File renamed without changes.

0 comments on commit 6f8844c

Please sign in to comment.