summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAgathe Porte <microjoe@microjoe.org>2020-02-27 12:54:44 +0100
committerAgathe Porte <microjoe@microjoe.org>2020-02-27 13:07:25 +0100
commitd3e3f24970cfc520f024c27bfbe9b8b59e8a609a (patch)
treefeec351fe92ef7daa49bbbb4cfa4512063cf3b90 /src
parent5ea929298cff29b68aee860cfcedd9f320057d74 (diff)
downloadcharlcd-d3e3f24970cfc520f024c27bfbe9b8b59e8a609a.tar.gz
charlcd-d3e3f24970cfc520f024c27bfbe9b8b59e8a609a.zip
special_char: add module doc
Diffstat (limited to 'src')
-rw-r--r--src/special_char.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/special_char.rs b/src/special_char.rs
index a5a8807..b288ef1 100644
--- a/src/special_char.rs
+++ b/src/special_char.rs
@@ -1,19 +1,41 @@
+//! Module containing special characters constant codes (Greek letters, math
+//! symbols, etc.)
+//!
+//! Note: these characters only work on the HD44780 screen.
+
+/// α
pub const ALPHA: u8 = 0xe0;
+/// β
pub const BETA: u8 = 0xe2;
+/// ε
pub const EPSILON: u8 = 0xe3;
+/// μ
pub const MU: u8 = 0xe4;
+/// σ
pub const SIGMA: u8 = 0xe5;
+/// ρ
pub const RO: u8 = 0xe6;
+/// θ
pub const THETA: u8 = 0xf2;
+/// Ω
pub const OMEGA: u8 = 0xf4;
+/// Σ
pub const SIGMA_UPPER: u8 = 0xf6;
+/// π
pub const PI: u8 = 0xf7;
+/// ✓
pub const SQRT: u8 = 0xe8;
+/// ⁻¹
pub const INV: u8 = 0xe9;
+/// ∞
pub const INFINITE: u8 = 0xf3;
+/// ÷
pub const DIV: u8 = 0xfd;
+/// x̅
pub const MEAN: u8 = 0xf8;
+/// ·
pub const MEDIAN_DOT: u8 = 0xa5;
+/// ▮
pub const BLOCK: u8 = 0xff;