Example #1
0
File: lcd.c Project: jcmvbkbc/stove
void lcd_xy(uint8_t x, uint8_t y)
{
	lcd_set_addr((x & (LCD_STRIDE - 1)) + LCD_STRIDE * y);
}
Example #2
0
/** Set cursor position */
void lcd_xy(const uint8_t x, const uint8_t y)
{
	lcd_set_addr(LCD_ROW_ADDR[y] + (x));
}