Skip to content

Commit

Permalink
font: Fix degree symbols
Browse files Browse the repository at this point in the history
Circle is on the left...

Signed-off-by: Daniel Schaefer <[email protected]>
  • Loading branch information
JohnAZoidberg committed Mar 10, 2023
1 parent d2e2200 commit c623ede
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions inputmodule-control/src/font.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
pub fn convert_symbol(symbol: &str) -> Vec<u8> {
match symbol {
"degC" => vec![
0, 0, 0, 1, 1,
0, 0, 0, 1, 1,
1, 1, 1, 0, 0,
1, 0, 0, 0, 0,
1, 0, 0, 0, 0,
1, 1, 1, 0, 0,
1, 1, 0, 0, 0,
1, 1, 0, 0, 0,
0, 0, 1, 1, 1,
0, 0, 1, 0, 0,
0, 0, 1, 0, 0,
0, 0, 1, 1, 1,
],
"degF" => vec![
0, 0, 0, 1, 1,
0, 0, 0, 1, 1,
1, 1, 1, 0, 0,
1, 0, 0, 0, 0,
1, 1, 1, 0, 0,
1, 0, 0, 0, 0,
1, 1, 0, 0, 0,
1, 1, 0, 0, 0,
0, 0, 1, 1, 1,
0, 0, 1, 0, 0,
0, 0, 1, 1, 1,
0, 0, 1, 0, 0,
],
"snow" => vec![
0, 0, 0, 0, 0,
Expand Down

0 comments on commit c623ede

Please sign in to comment.