lcdGetPoint() -> lcdGetPixelColor()
This commit is contained in:
parent
5e0cec987d
commit
b629274f71
2 changed files with 2 additions and 2 deletions
2
glcd.c
2
glcd.c
|
@ -168,7 +168,7 @@ void lcdClear(uint16_t color) {
|
||||||
Set_CS;
|
Set_CS;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t lcdGetPoint(uint16_t x, uint16_t y) {
|
uint16_t lcdGetPixelColor(uint16_t x, uint16_t y) {
|
||||||
uint16_t dummy;
|
uint16_t dummy;
|
||||||
|
|
||||||
lcdSetCursor(x,y);
|
lcdSetCursor(x,y);
|
||||||
|
|
2
glcd.h
2
glcd.h
|
@ -60,6 +60,6 @@ void lcdChar(uint16_t x, uint16_t y, unsigned char c, uint16_t charcolor, uint16
|
||||||
uint16_t lcdGetHeight(void);
|
uint16_t lcdGetHeight(void);
|
||||||
uint16_t lcdGetWidth(void);
|
uint16_t lcdGetWidth(void);
|
||||||
uint16_t lcdBGR2RGB(uint16_t color);
|
uint16_t lcdBGR2RGB(uint16_t color);
|
||||||
uint16_t lcdGetPoint(uint16_t x, uint16_t y);
|
uint16_t lcdGetPixelColor(uint16_t x, uint16_t y);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue