Skip to content

Commit

Permalink
lcd: Print which variant is running
Browse files Browse the repository at this point in the history
  • Loading branch information
sorf committed Jan 26, 2024
1 parent 6296d4a commit e06dec4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion countdown-lcd-1602-4bits/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func main() {
}

println("Start")
lcd.Write([]byte("Countdown:"))
lcd.Write([]byte("Countdown (4b):"))
lcd.Display()
time.Sleep(1 * time.Second)

Expand Down
2 changes: 1 addition & 1 deletion countdown-lcd-1602-8bits/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func main() {
}

println("Start")
lcd.Write([]byte("Countdown:"))
lcd.Write([]byte("Countdown (8b):"))
lcd.Display()
time.Sleep(1 * time.Second)

Expand Down

0 comments on commit e06dec4

Please sign in to comment.