summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAgathe Porte <microjoe@microjoe.org>2020-02-23 11:38:35 +0100
committerAgathe Porte <microjoe@microjoe.org>2020-02-23 11:38:35 +0100
commit3110d3fa3a2a5a17fd467b30a4acaeab9ff8b978 (patch)
tree78fdea9a4f295b7cb554b1fc6b32482e04a21610 /examples
parentc07aa9f0c068200d80f6635c221dd7480e53766a (diff)
downloadcharlcd-3110d3fa3a2a5a17fd467b30a4acaeab9ff8b978.tar.gz
charlcd-3110d3fa3a2a5a17fd467b30a4acaeab9ff8b978.zip
add special_char pub mod
Diffstat (limited to 'examples')
-rw-r--r--examples/special_char.rs35
1 files changed, 35 insertions, 0 deletions
diff --git a/examples/special_char.rs b/examples/special_char.rs
new file mode 100644
index 0000000..5f66fd9
--- /dev/null
+++ b/examples/special_char.rs
@@ -0,0 +1,35 @@
+use charlcd::special_char;
+use charlcd::Screen;
+use std::io::Write;
+
+fn main() -> std::io::Result<()> {
+ let mut screen = Screen::default()?;
+
+ screen.clear()?;
+
+ screen.write(&[special_char::ALPHA])?;
+ screen.write(&[special_char::BETA])?;
+ screen.write(&[special_char::EPSILON])?;
+ screen.write(&[special_char::MU])?;
+ screen.write(&[special_char::SIGMA])?;
+ screen.write(&[special_char::RO])?;
+ screen.write(&[special_char::THETA])?;
+ screen.write(&[special_char::OMEGA])?;
+ screen.write(&[special_char::SIGMA_UPPER])?;
+ screen.write(&[special_char::PI])?;
+
+ screen.write(b"\n")?;
+
+ screen.write(&[special_char::SQRT])?;
+ screen.write(&[special_char::INV])?;
+ screen.write(&[special_char::INFINITE])?;
+ screen.write(&[special_char::DIV])?;
+ screen.write(&[special_char::MEAN])?;
+
+ screen.write(&[special_char::MEDIAN_DOT])?;
+ screen.write(&[special_char::BLOCK])?;
+
+ screen.flush()?;
+
+ Ok(())
+}