From 43c1d3c8b6390b1c5a6be4d3157affa2f1a172ae Mon Sep 17 00:00:00 2001 From: theresed1 <49913434+theresed1@users.noreply.github.com> Date: Mon, 27 May 2019 16:22:54 +0200 Subject: [PATCH] Changed pin number so they match with content in platform --- .../Lessons/L7_AnalogInputs/L7_Activity3/L7_Activity3.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Examples/Lessons/L7_AnalogInputs/L7_Activity3/L7_Activity3.ino b/Examples/Lessons/L7_AnalogInputs/L7_Activity3/L7_Activity3.ino index fb9d944..ce667b6 100644 --- a/Examples/Lessons/L7_AnalogInputs/L7_Activity3/L7_Activity3.ino +++ b/Examples/Lessons/L7_AnalogInputs/L7_Activity3/L7_Activity3.ino @@ -7,9 +7,9 @@ int USsensor = A0; - int yellowLED = 9; - int redLED = 11; - int greenLED = 13; + int yellowLED = 11; + int redLED = 13; + int greenLED = 9; float distance = 0; int value = 0;