From bd3eaa9f1623780066d89d2d249b447ebe13de79 Mon Sep 17 00:00:00 2001 From: Rodion Chaykovskiy <50547116+sentouki@users.noreply.github.com> Date: Mon, 30 Jan 2023 20:13:52 +0100 Subject: [PATCH] - minor fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eb0b236..663522f 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ LCD4PicoBase is the base class for LCD4Pico and contains the "low level" methods ### Example First of all you need to declare the pins. -Declare the data pins in the order from D7 to D0. +Declare the data pins in the order from D0 to D7. -LCD4Pico works in 4bit mode as well, in 4bit mode you only need to set the pins D7 to D4. +LCD4Pico works in 4bit mode as well, in 4bit mode you only need to set the pins D4 to D7. If you want to use the LCD in write-only mode (without the RW pin), call the overloaded ctor without the ```rw_pin``` arg or set ```rw_pin``` to ``` WRITE_ONLY```.