diff options
| author | Agathe Porte <microjoe@microjoe.org> | 2020-03-01 09:30:36 +0100 | 
|---|---|---|
| committer | Agathe Porte <microjoe@microjoe.org> | 2020-03-01 09:30:36 +0100 | 
| commit | d14adf8438539a9cd6b6c3587040fdc132914426 (patch) | |
| tree | 7b53d52ac36615c12c7747a31e2cee0581d6140e /examples | |
| parent | b27979abd3f5748539f60bbbb6a5b6c9d8a93bfc (diff) | |
| download | charlcd-d14adf8438539a9cd6b6c3587040fdc132914426.tar.gz charlcd-d14adf8438539a9cd6b6c3587040fdc132914426.zip | |
custom_char: rename ARROW to TRIANGLE
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/custom_char.rs | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/examples/custom_char.rs b/examples/custom_char.rs index 059f173..ce2f0cb 100644 --- a/examples/custom_char.rs +++ b/examples/custom_char.rs @@ -8,10 +8,10 @@ fn main() -> std::io::Result<()> {      // Alarm symbol      screen.custom_char(0, [0x04, 0x0E, 0x0E, 0x0E, 0x0E, 0x1F, 0x04, 0x00])?; -    screen.custom_char(1, custom_char::RIGHT_ARROW)?; -    screen.custom_char(2, custom_char::LEFT_ARROW)?; -    screen.custom_char(3, custom_char::UP_ARROW)?; -    screen.custom_char(4, custom_char::DOWN_ARROW)?; +    screen.custom_char(1, custom_char::RIGHT_TRIANGLE)?; +    screen.custom_char(2, custom_char::LEFT_TRIANGLE)?; +    screen.custom_char(3, custom_char::UP_TRIANGLE)?; +    screen.custom_char(4, custom_char::DOWN_TRIANGLE)?;      screen.clear()?;      screen.write(b"\x00 Alarm 10:00\n")?; | 
