From 6fc6426eb6c5e7f694c58871210cad1c7af1f4b6 Mon Sep 17 00:00:00 2001 From: Vladyslav Levada Date: Sat, 4 Apr 2020 21:16:02 +0300 Subject: [PATCH] some changes --- fade.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fade.ino b/fade.ino index 599aca1..f592a51 100644 --- a/fade.ino +++ b/fade.ino @@ -1,4 +1,4 @@ -int led = 9; // the pin that the LED is attached to +int led = 19; // the pin that the LED is attached to int brightness = 0; // how bright the LED is int fadeAmount = 5; // how many points to fade the LED by @@ -21,5 +21,5 @@ void loop() { fadeAmount = -fadeAmount ; } // wait for 30 milliseconds to see the dimming effect - delay(30); + delay(130); }