From 7e376763b84d480f9b70cc52b272c4f222e147d5 Mon Sep 17 00:00:00 2001 From: tth Date: Sun, 6 Jan 2019 21:59:03 +0100 Subject: [PATCH] finetuning the random sender --- simulator/send-random/send-random.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simulator/send-random/send-random.ino b/simulator/send-random/send-random.ino index a937b7b..5dbb913 100644 --- a/simulator/send-random/send-random.ino +++ b/simulator/send-random/send-random.ino @@ -5,7 +5,7 @@ /* -------------------------------------------------- */ #define NBVAL 4 -#define DELAI 1664 +#define DELAI 1789 int values[NBVAL]; @@ -23,11 +23,11 @@ void updatevalues(void) { int foo; for (foo=0; foo 1023) { - values[foo] = rand()%25; + values[foo] = rand()%5; } } }