Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dba94ba

Browse files
authoredApr 27, 2024
Updated TVout.h to add missing declarations (#146)
1 parent bb81d6d commit dba94ba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎TVout/TVout.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ class TVout {
7575

7676
char begin(uint8_t mode);
7777
char begin(uint8_t mode, uint8_t x, uint8_t y);
78-
78+
void end();
79+
7980
//accessor functions
8081
unsigned char hres();
8182
unsigned char vres();
@@ -97,6 +98,8 @@ class TVout {
9798
void fill(uint8_t color);
9899
void shift(uint8_t distance, uint8_t direction);
99100
void draw_line(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1, char c);
101+
void draw_row(uint8_t line, uint16_t x0, uint16_t x1, uint8_t c);
102+
void draw_column(uint8_t row, uint16_t y0, uint16_t y1, uint8_t c);
100103
void fill_line(uint8_t line, uint16_t x0, uint16_t x1, uint8_t c);
101104
void draw_rect(uint8_t x0, uint8_t y0, uint8_t w, uint8_t h, char c, char fc = -1);
102105
void draw_circle(uint8_t x0, uint8_t y0, uint8_t radius, char c, char fc = -1);

0 commit comments

Comments
 (0)
Please sign in to comment.