Skip to content

Commit

Permalink
Update Hello World example in CharacterLcd readme to match diagram (#…
Browse files Browse the repository at this point in the history
…2338)

Small change to sync the sample code with the diagram (which itself was pulled from the Adafruit tutorial)
  • Loading branch information
jabberhams authored Aug 8, 2024
1 parent 249d49e commit b042a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/CharacterLcd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!");
}
Expand Down

0 comments on commit b042a05

Please sign in to comment.