summaryrefslogtreecommitdiffstats
path: root/watch-library
diff options
context:
space:
mode:
authorJoey Castillo <joeycastillo@utexas.edu>2022-04-06 15:53:32 -0400
committerJoey Castillo <joeycastillo@utexas.edu>2022-04-06 15:53:32 -0400
commit8bcd5dfef62665af09b6d256a5d2a6de8a083ca0 (patch)
tree540806737948c76f9dd182798b53e427428e3da8 /watch-library
parent8b0ebab65bcc82d45201bdef4b9c4e145b54b7d7 (diff)
parent5f0ebd8c66b3512d67efc8174c5f65a86488a4ea (diff)
downloadSensor-Watch-8bcd5dfef62665af09b6d256a5d2a6de8a083ca0.tar.gz
Sensor-Watch-8bcd5dfef62665af09b6d256a5d2a6de8a083ca0.tar.bz2
Sensor-Watch-8bcd5dfef62665af09b6d256a5d2a6de8a083ca0.zip
Merge branch 'main' of github.com:joeycastillo/Sensor-Watch into mars-clock
Diffstat (limited to 'watch-library')
-rw-r--r--watch-library/shared/watch/watch_private_display.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/watch-library/shared/watch/watch_private_display.h b/watch-library/shared/watch/watch_private_display.h
index 08597848..11219cf1 100644
--- a/watch-library/shared/watch/watch_private_display.h
+++ b/watch-library/shared/watch/watch_private_display.h
@@ -33,14 +33,14 @@ static const uint8_t Character_Set[] =
0b01100000, // ! (L in the top half for positions 4 and 6)
0b00100010, // "
0b01100011, // # (degree symbol, hash mark doesn't fit)
- 0b00000000, // $ (unused)
+ 0b00101101, // $ (S without the center segment)
0b00000000, // % (unused)
0b01000100, // & ("lowercase 7" for positions 4 and 6)
0b00100000, // '
0b00111001, // (
0b00001111, // )
- 0b00000000, // * (unused)
- 0b11000000, // + (only works in position 0)
+ 0b11000000, // * (The + sign for use in position 0)
+ 0b01110000, // + (segments E, F and G; looks like ┣╸)
0b00000100, // ,
0b01000000, // -
0b01000000, // . (same as -, semantically most useful)
@@ -120,9 +120,9 @@ static const uint8_t Character_Set[] =
0b01111110, // x
0b01101110, // y
0b00011011, // z
- 0b00111001, // {
- 0b00110000, // |
- 0b00001111, // }
+ 0b00010110, // { (open brace doesn't really work; overriden to represent the two character ligature "il")
+ 0b00110110, // | (overriden to represent the two character ligature "ll")
+ 0b00110100, // } (overriden to represent the two character ligature "li")
0b00000001, // ~
};