From 32a15eff50bf809ccda248be78cd51ebf766c4b7 Mon Sep 17 00:00:00 2001 From: Paul Dino Jones Date: Mon, 30 Sep 2024 20:34:29 -0400 Subject: [PATCH] set simhaptic baud to 9600 --- src/arduino/simhaptic/simhaptic.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arduino/simhaptic/simhaptic.ino b/src/arduino/simhaptic/simhaptic.ino index e7d6f4b..94ce4e3 100644 --- a/src/arduino/simhaptic/simhaptic.ino +++ b/src/arduino/simhaptic/simhaptic.ino @@ -22,7 +22,7 @@ int effect3 = 0; int effect4 = 0; void setup() { - Serial.begin(115200); + Serial.begin(9600); if (!AFMS.begin()) { Serial.println("Could not find Motor Shield. Check wiring."); while (1);