Skip to content

Commit a024179

Browse files
authored
Merge pull request #21 from markisch:feature-command
Add LCD API command() function
2 parents 333d017 + 1846b27 commit a024179

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/LiquidCrystal_PCF8574.h

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ class LiquidCrystal_PCF8574 : public Print
6262
// plus functions from LCDAPI:
6363
void clear(); // same as init()
6464
void setBacklight(int brightness);
65+
inline void command(uint8_t value) { _send(value); }
6566

6667
// support of Print class
6768
virtual size_t write(uint8_t ch);

0 commit comments

Comments
 (0)