From bb1417ce7549cae4e69916891e3bb4de954fdecf Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Fri, 19 Oct 2018 08:19:23 +0200 Subject: [PATCH] hardware::Atreus: Implement a dummy getLedIndex() Signed-off-by: Gergely Nagy --- src/kaleidoscope/hardware/Atreus.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/kaleidoscope/hardware/Atreus.h b/src/kaleidoscope/hardware/Atreus.h index 1165b7ba..3236f8be 100644 --- a/src/kaleidoscope/hardware/Atreus.h +++ b/src/kaleidoscope/hardware/Atreus.h @@ -54,6 +54,9 @@ class Atreus { 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);