From 6a252cc8ac1e7ca591cb0650d073b497fa3997cf Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Fri, 19 Oct 2018 08:36:58 +0200 Subject: [PATCH] hardware::ErgoDox: Add a dummy getLedIndex() method Signed-off-by: Gergely Nagy --- src/kaleidoscope/hardware/ErgoDox.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/kaleidoscope/hardware/ErgoDox.h b/src/kaleidoscope/hardware/ErgoDox.h index 7b1c3df4..5fb36ee3 100644 --- a/src/kaleidoscope/hardware/ErgoDox.h +++ b/src/kaleidoscope/hardware/ErgoDox.h @@ -59,6 +59,9 @@ class ErgoDox { cRGB getCrgbAt(uint8_t i) { return CRGB(0, 0, 0); } + uint8_t getLedIndex(byte row, byte col) { + return 0; + } void scanMatrix(void); void readMatrix(void);