From f47c750681c31e973a22c015b8b68dee1efd070b Mon Sep 17 00:00:00 2001 From: Michael Richters Date: Fri, 4 Mar 2022 18:41:37 -0600 Subject: [PATCH] Stop using deprecated Leader variable `time_out` Replaced with the new `setTimeout()` function call. Signed-off-by: Michael Richters --- tests/plugins/Leader/basic/basic.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/plugins/Leader/basic/basic.ino b/tests/plugins/Leader/basic/basic.ino index 9995a663..7d010e25 100644 --- a/tests/plugins/Leader/basic/basic.ino +++ b/tests/plugins/Leader/basic/basic.ino @@ -72,7 +72,7 @@ static const kaleidoscope::plugin::Leader::dictionary_t leader_dictionary[] PROG void setup() { Kaleidoscope.setup(); - Leader.time_out = 20; + Leader.setTimeout(20); Leader.dictionary = leader_dictionary; }