From 121e8147f7d181cbabeb5025d4464799a7c14a85 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Fri, 24 Dec 2021 16:00:39 +0100 Subject: [PATCH] hd44780i2c: clean up for go fmt Signed-off-by: deadprogram --- hd44780i2c/hd44780i2c.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hd44780i2c/hd44780i2c.go b/hd44780i2c/hd44780i2c.go index 3005f4f..90571da 100644 --- a/hd44780i2c/hd44780i2c.go +++ b/hd44780i2c/hd44780i2c.go @@ -117,7 +117,7 @@ func (d *Device) Home() { delayus(2000) } -// SetCursor sets the cursor to a specific position (x, y). +// SetCursor sets the cursor to a specific position (x, y). // // For example, on 16x2 LCDs the range of x (column) is 0~15 and y (row) is 0~1. // if y is larger than actual rows, it would be set to 0 (restart from first row).