Skip to content

Commit

Permalink
version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
biblioeteca committed Mar 24, 2022
1 parent de09f40 commit 61dbc36
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ displays sharing the same base code.
You should use, at least one of the subclasses (this file will be populated with the references) to be able to display some QR, choose the corresponding to
the hardware you have available.

Each subclass have its own repository with its own dependencies. This library have not dependencies. Depending the dependencies you can choose one of the following approved subclasses, please visit the links to see the dependencies and hardware support:
Each subclass have its own repository with its own dependencies. This library have not dependencies. Depending your hardware you can choose one of the following approved subclasses, please visit the links to see the dependencies and hardware support:

* QRcodeOled: https://github.com/yoprogramo/QRcodeOled
* QRcode_ST7735: https://github.com/yoprogramo/QRcode_ST7735
Expand All @@ -16,6 +16,9 @@ Each subclass have its own repository with its own dependencies. This library ha

If you do not find match for your display model feel free to contribute with a new subclasss or file an Issue here.

## Breaking changes in version 2.0.0
To avoid conflict with other libraries we have renamed the file qrcode.h to qrcodedisplay.h, so all the subclasses have to do the same change.

## Examples

### Oled
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": "QRcodeDisplay",
"version": "1.0.0",
"version": "2.0.0",
"keywords": "qr code, ESP32, ESP8266, TFT display, OLED Display, E-ink display",
"description": "Base clase for generating QRCodes on ESP devices with different kind of displays",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=QRcodeDisplay
version=1.0.0
version=2.0.0
author=Jose Antonio Espinosa <yoprogramo@gmail.com>
maintainer=Jose Antonio Espinosa <yoprogramo@gmail.com>
sentence=Base code for displaying QRcodes on ESP based MCU with OLED, TFT or E-Ink displays
Expand Down
2 changes: 1 addition & 1 deletion src/qrcode.cpp → src/qrcodedisplay.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Arduino.h>
#include "qrcode.h"
#include "qrcodedisplay.h"
#include "qrencode.h"


Expand Down
File renamed without changes.

0 comments on commit 61dbc36

Please sign in to comment.