Skip to content

Commit 54ed485

Browse files
committed
Fix LCD window offset (0, 26) -> (1, 26)
1 parent f595db0 commit 54ed485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lcd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ impl Lcd {
6969
let mut delay = McycleDelay::new(&rcu.clocks);
7070
lcd.init(&mut delay).unwrap();
7171
lcd.set_orientation(&Orientation::Landscape).unwrap();
72-
lcd.set_offset(0, 26);
72+
lcd.set_offset(1, 26);
7373

7474
Lcd {
7575
driver: lcd

0 commit comments

Comments
 (0)