Skip to content

Commit

Permalink
Merge pull request #6 from amperka/close-issue-15-Jan
Browse files Browse the repository at this point in the history
close issue. Delete function, which transform user's data.
  • Loading branch information
S-VIN authored Jul 17, 2020
2 parents fa97c32 + 1978e8d commit 8a2b1a3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=TroykaOLED
version=2.0.1
version=2.0.2
author=Igor Dementiev <[email protected]>
maintainer=Amperka <amperka.ru>
sentence=Library for working with OLED displays.
Expand Down
4 changes: 0 additions & 4 deletions src/TroykaOLED.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,6 @@ void TroykaOLED::print(char character, int16_t x, int16_t y) {
_print(character, x, y);
}

void TroykaOLED::print(char* line, int16_t x, int16_t y) {
_print(_encodeToCP866((uint8_t*)line), x, y);
}

void TroykaOLED::print(String str, int16_t x, int16_t y) {
char data[str.length() + 1];
str.toCharArray(data, str.length() + 1);
Expand Down
1 change: 0 additions & 1 deletion src/TroykaOLED.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ class TroykaOLED {
void setCoding(Encoding codingName);
void setCursor(int16_t numX, int16_t numY);
void print(char character, int16_t x = OLED_THIS, int16_t y = OLED_THIS);
void print(char* line, int16_t x = OLED_THIS, int16_t y = OLED_THIS);
void print(const char* line, int16_t x = OLED_THIS, int16_t y = OLED_THIS);
void print(String s, int16_t x = OLED_THIS, int16_t y = OLED_THIS);
void print(int8_t n, int16_t x = OLED_THIS, int16_t y = OLED_THIS, uint8_t base = DEC);
Expand Down

0 comments on commit 8a2b1a3

Please sign in to comment.