From 85aa7cc463f89413c468b088b85c6170707e5d7a Mon Sep 17 00:00:00 2001 From: mandlm Date: Fri, 15 Jan 2016 16:31:03 +0100 Subject: [PATCH] Re-wired the shift-register to the ks0066 to save space --- LCD/LCD/KS0066.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/LCD/LCD/KS0066.h b/LCD/LCD/KS0066.h index c531019..1ff9bc9 100644 --- a/LCD/LCD/KS0066.h +++ b/LCD/LCD/KS0066.h @@ -11,13 +11,13 @@ class KS0066 private: ShiftRegister *m_shiftRegister; - static const uint8_t m_rs = 0; - static const uint8_t m_rw = 1; - static const uint8_t m_e = 2; - static const uint8_t m_db4 = 3; - static const uint8_t m_db5 = 4; - static const uint8_t m_db6 = 5; - static const uint8_t m_db7 = 6; + static const uint8_t m_rs = 1; + static const uint8_t m_rw = 2; + static const uint8_t m_e = 3; + static const uint8_t m_db4 = 4; + static const uint8_t m_db5 = 5; + static const uint8_t m_db6 = 6; + static const uint8_t m_db7 = 7; uint8_t m_lines = 2; uint8_t m_columns = 16;