From 50272d6ed570a04e056acd381562ae84a427bd01 Mon Sep 17 00:00:00 2001 From: friesenkiwi Date: Sat, 23 Feb 2019 21:30:47 +0100 Subject: [PATCH] Fix small bugs (inverse pin numbers) --- wordclock/wordclock.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wordclock/wordclock.ino b/wordclock/wordclock.ino index e4d008c..1168760 100644 --- a/wordclock/wordclock.ino +++ b/wordclock/wordclock.ino @@ -80,9 +80,9 @@ int clockWords[22][10] = { {31,32,-1,-1,-1,-1,-1,-1,-1,-1}, // acht 16 {33,34,35,-1,-1,-1,-1,-1,-1,-1}, // sieben 17 {36,37,38,-1,-1,-1,-1,-1,-1,-1}, // zwölf 18 - {39,40,-1,-1,-1,-1,-1,-1,-1,-1}, // zehn 19 - {41,-1,-1,-1,-1,-1,-1,-1,-1,-1}, // elf 20 - {42,-1,-1,-1,-1,-1,-1,-1,-1}, // uhr 21 + {41,42,-1,-1,-1,-1,-1,-1,-1,-1}, // zehn 19 + {40,-1,-1,-1,-1,-1,-1,-1,-1,-1}, // elf 20 + {39,-1,-1,-1,-1,-1,-1,-1,-1}, // uhr 21 }; WiFiUDP Udp;