diff options
author | Agathe Porte <microjoe@microjoe.org> | 2020-02-23 10:30:59 +0100 |
---|---|---|
committer | Agathe Porte <microjoe@microjoe.org> | 2020-02-23 11:37:50 +0100 |
commit | c07aa9f0c068200d80f6635c221dd7480e53766a (patch) | |
tree | 8b454142169036e1b4be38289e46e9b76bdfd9dd /src | |
parent | bc0e5a406a0179fdbc7a5e298d108e966bcb3ed0 (diff) | |
download | charlcd-c07aa9f0c068200d80f6635c221dd7480e53766a.tar.gz charlcd-c07aa9f0c068200d80f6635c221dd7480e53766a.zip |
custom chars support
Diffstat (limited to 'src')
-rw-r--r-- | src/custom_char.rs | 50 | ||||
-rw-r--r-- | src/lib.rs | 12 |
2 files changed, 62 insertions, 0 deletions
diff --git a/src/custom_char.rs b/src/custom_char.rs new file mode 100644 index 0000000..47f99f5 --- /dev/null +++ b/src/custom_char.rs @@ -0,0 +1,50 @@ +/// X axis mirror of a custom LCD character +pub const fn mirror_x(src: [u8; 8]) -> [u8; 8] { + // const fn do not support for loops currently, hence manual unroll + [ + src[0].reverse_bits() >> 3, + src[1].reverse_bits() >> 3, + src[2].reverse_bits() >> 3, + src[3].reverse_bits() >> 3, + src[4].reverse_bits() >> 3, + src[5].reverse_bits() >> 3, + src[6].reverse_bits() >> 3, + src[7].reverse_bits() >> 3, + ] +} + +/// Y axis mirror of a custom LCD character +pub const fn mirror_y(src: [u8; 8]) -> [u8; 8] { + // const fn do not support for loops currently, hence manual unroll + [ + src[7], src[6], src[5], src[4], src[3], src[2], src[1], src[0], + ] +} + +#[cfg_attr(rustfmt, rustfmt_skip)] +pub const RIGHT_ARROW: [u8; 8] = [ + 0b00000, + 0b01000, + 0b01100, + 0b01110, + 0b01100, + 0b01000, + 0b00000, + 0b00000, +]; + +pub const LEFT_ARROW: [u8; 8] = mirror_x(RIGHT_ARROW); + +#[cfg_attr(rustfmt, rustfmt_skip)] +pub const UP_ARROW: [u8; 8] = [ + 0b00000, + 0b00000, + 0b00100, + 0b01110, + 0b11111, + 0b00000, + 0b00000, + 0b00000, +]; + +pub const DOWN_ARROW: [u8; 8] = mirror_y(UP_ARROW); @@ -1,4 +1,5 @@ mod codes; +pub mod custom_char; mod of_node; use std::fs::{File, OpenOptions}; @@ -288,6 +289,17 @@ where write_simple_code!(self, SpecialCode::LargeFont) } + /// Custom character create + pub fn custom_char(&mut self, code: u8, value: [u8; 8]) -> std::io::Result<()> { + let mut res = 0u64; + let mut i = 0; + for b in value.iter().rev() { + res |= (*b as u64) << i; + i += 8; + } + write_simple_code!(self, SpecialCode::Generator(code, res)) + } + pub fn gotoxy(&mut self, x: u32, y: u32) -> std::io::Result<()> { write_simple_code!(self, SpecialCode::GotoXY(Some(x), Some(y))) } |