From b042a05d2f261860aa8c33da5c8c6d4f44a33c09 Mon Sep 17 00:00:00 2001 From: Jesse Abrahams <31041350+jabberhams@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:42:33 -0400 Subject: [PATCH] Update Hello World example in CharacterLcd readme to match diagram (#2338) Small change to sync the sample code with the diagram (which itself was pulled from the Adafruit tutorial) --- src/devices/CharacterLcd/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/CharacterLcd/README.md b/src/devices/CharacterLcd/README.md index 4ed1bcc0df..030c12567c 100644 --- a/src/devices/CharacterLcd/README.md +++ b/src/devices/CharacterLcd/README.md @@ -20,7 +20,7 @@ These devices are controlled purely by GPIO (except Grove LCD RGB Backlight). Th Here is a Hello World example of how to consume this binding: ```csharp -using (var lcd = new Lcd1602(18, 5, new int[]{6, 16, 20, 21})) //using 4 data pins +using (var lcd = new Lcd1602(22, 17, new int[] { 25, 24, 23, 18 })) //using 4 data pins { lcd.Write("Hello World!"); }