summaryrefslogtreecommitdiff
path: root/firmware/export/lcd-remote.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/lcd-remote.h')
-rw-r--r--firmware/export/lcd-remote.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h
index 491e055b17..2795c7b90d 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -37,15 +37,23 @@ extern void lcd_remote_emireduce(bool state);
37extern void lcd_remote_clear_display(void); 37extern void lcd_remote_clear_display(void);
38extern void lcd_remote_puts(int x, int y, const unsigned char *string); 38extern void lcd_remote_puts(int x, int y, const unsigned char *string);
39extern void lcd_remote_puts_style(int x, int y, const unsigned char *string, 39extern void lcd_remote_puts_style(int x, int y, const unsigned char *string,
40 int style); 40 int style);
41extern void lcd_remote_puts_offset(int x, int y, const unsigned char *str, int offset);
42extern void lcd_remote_puts_style_offset(int x, int y, const unsigned char *str, int style, int offset);
43
41extern void lcd_remote_putc(int x, int y, unsigned short ch); 44extern void lcd_remote_putc(int x, int y, unsigned short ch);
42extern void lcd_remote_stop_scroll(void); 45extern void lcd_remote_stop_scroll(void);
46
43extern void lcd_remote_scroll_speed(int speed); 47extern void lcd_remote_scroll_speed(int speed);
44extern void lcd_remote_scroll_delay(int ms); 48extern void lcd_remote_scroll_delay(int ms);
45extern void lcd_remote_puts_scroll(int x, int y, const unsigned char* string); 49extern void lcd_remote_puts_scroll(int x, int y, const unsigned char* string);
46extern void lcd_remote_puts_scroll_style(int x, int y, 50extern void lcd_remote_puts_scroll_style(int x, int y,const unsigned char* string,
47 const unsigned char* string, int style); 51 int style);
48 52extern void lcd_remote_puts_scroll_offset(int x, int y, const unsigned char *string,
53 int offset);
54extern void lcd_remote_puts_scroll_style_offset(int x, int y, const unsigned char *string,
55 int style, int offset);
56
49extern void lcd_remote_update(void); 57extern void lcd_remote_update(void);
50extern void lcd_remote_update_rect(int x, int y, int width, int height); 58extern void lcd_remote_update_rect(int x, int y, int width, int height);
51 59