diff options
author | Agathe Porte <microjoe@microjoe.org> | 2020-02-23 10:30:17 +0100 |
---|---|---|
committer | Agathe Porte <microjoe@microjoe.org> | 2020-02-23 10:30:17 +0100 |
commit | bc0e5a406a0179fdbc7a5e298d108e966bcb3ed0 (patch) | |
tree | 2f30328a685409b87d9007229f7617ba70c5eff5 /src/lib.rs | |
parent | ada08aa7c620070c4aeab23b678ef8bb5b696667 (diff) | |
download | charlcd-bc0e5a406a0179fdbc7a5e298d108e966bcb3ed0.tar.gz charlcd-bc0e5a406a0179fdbc7a5e298d108e966bcb3ed0.zip |
add goto functions
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -287,6 +287,18 @@ where pub fn large_font(&mut self) -> std::io::Result<()> { write_simple_code!(self, SpecialCode::LargeFont) } + + pub fn gotoxy(&mut self, x: u32, y: u32) -> std::io::Result<()> { + write_simple_code!(self, SpecialCode::GotoXY(Some(x), Some(y))) + } + + pub fn gotox(&mut self, x: u32) -> std::io::Result<()> { + write_simple_code!(self, SpecialCode::GotoXY(Some(x), None)) + } + + pub fn gotoy(&mut self, y: u32) -> std::io::Result<()> { + write_simple_code!(self, SpecialCode::GotoXY(None, Some(y))) + } } // Reimplement Write trait for Screen, so that user can call the write and |