From a2a9f56779012d393d096715c7f6e9aa615b8f49 Mon Sep 17 00:00:00 2001 From: Bollie Date: Sat, 8 Dec 2018 12:26:37 +0100 Subject: [PATCH] Typo --- libraries/Max44009/max44009.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Max44009/max44009.cpp b/libraries/Max44009/max44009.cpp index ed366308..1a4dc0f3 100644 --- a/libraries/Max44009/max44009.cpp +++ b/libraries/Max44009/max44009.cpp @@ -26,7 +26,7 @@ Max44009::Max44009(const uint8_t address, const uint8_t dataPin, const uint8_t clockPin) { _address = address; - if ((dataPin < 255) && (dataPin < 255)) + if ((dataPin < 255) && (clockPin < 255)) { Wire.begin(dataPin, clockPin); } else {