aboutsummaryrefslogtreecommitdiff
path: root/zumo/zumo.ino
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-06-08 09:33:12 +0200
committerlonkaars <loek@pipeframe.xyz>2023-06-08 09:33:12 +0200
commitc81c6223b7d9e5973f5d2825c399d5777e093c58 (patch)
treea7eceaf2e0b6525f6aeacaedb1b33e42582529e8 /zumo/zumo.ino
parent97939ee4eaad5937a0a2eee190b2b9028d009a97 (diff)
parent2903e61cbe2eeff3121f67da516ea195999f0bba (diff)
merge dev into master
Diffstat (limited to 'zumo/zumo.ino')
-rw-r--r--zumo/zumo.ino6
1 files changed, 3 insertions, 3 deletions
diff --git a/zumo/zumo.ino b/zumo/zumo.ino
index 1a64381..9e79581 100644
--- a/zumo/zumo.ino
+++ b/zumo/zumo.ino
@@ -8,13 +8,13 @@
dui_state_t g_dui_target_state = {
.steer = 0.0f,
- .speed = 0.0f,
+ .Speed = 0.0f,
.current_sign = DUI_SIGN_NONE,
.speed_mod = 1.f,
};
dui_state_t g_dui_current_state = {
.steer = 0.f,
- .speed = 0.f,
+ .Speed = 0.f,
.current_sign = DUI_SIGN_NONE,
.speed_mod = 1.f,
};
@@ -22,7 +22,7 @@ dui_state_t g_dui_current_state = {
void setup() {
pinMode(DUI_PINOUT_NICLA_TX, OUTPUT);
pinMode(DUI_PINOUT_NICLA_RX, INPUT_PULLUP);
- Serial.begin(115200);
+ Serial.begin(11500);
}
void loop() {