summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEddy Pedroni <epedroni@pm.me>2025-08-25 21:39:29 +0200
committerEddy Pedroni <epedroni@pm.me>2025-08-25 21:39:29 +0200
commite37d62700d05c7a4a57c100a32e50cc2d94e3c2a (patch)
treefab2bad87e9f44ca8c57823f1c377f0517fada01
parentf970722aac1d7aa257b4f4723645bae25e2e38f3 (diff)
Change delay to 2 secondsHEADmaster
-rw-r--r--power-seq-software/power-seq-software.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/power-seq-software/power-seq-software.cpp b/power-seq-software/power-seq-software.cpp
index cb10215..2d01e88 100644
--- a/power-seq-software/power-seq-software.cpp
+++ b/power-seq-software/power-seq-software.cpp
@@ -9,7 +9,7 @@ static constexpr std::size_t button_gpio = 6;
static constexpr std::size_t led_gpio = 2;
static constexpr std::array<std::size_t, 3> gpio_on_sequence { 3, 4, 5 };
static constexpr std::array<std::size_t, 3> gpio_off_sequence { 5, 4, 3 };
-static constexpr std::size_t delay_ms = 100;
+static constexpr std::size_t delay_ms = 2000;
int main()
{