lcdGetPoint() -> lcdGetPixelColor()
parent
5e0cec987d
commit
b629274f71
2
glcd.c
2
glcd.c
|
@ -168,7 +168,7 @@ void lcdClear(uint16_t color) {
|
|||
Set_CS;
|
||||
}
|
||||
|
||||
uint16_t lcdGetPoint(uint16_t x, uint16_t y) {
|
||||
uint16_t lcdGetPixelColor(uint16_t x, uint16_t y) {
|
||||
uint16_t dummy;
|
||||
|
||||
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 lcdGetWidth(void);
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue