We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d93b46d + 4e89f7f commit 7c00d8aCopy full SHA for 7c00d8a
4 files changed
playstreams.sh
src/config/mod.rs
@@ -21,8 +21,8 @@ const CONFIG_FILE: &str = "config.toml";
21
const CONTROL_BOARD_PATH: &str = "/dev/ttyACM0";
22
const CONTROL_BOARD_BACKUP_PATH: &str = "/dev/ttyACM3";
23
const MEB_PATH: &str = "/dev/ttyACM2";
24
-const FRONT_CAM: &str = "/dev/video1";
25
-const BOTTOM_CAM: &str = "/dev/video0";
+const FRONT_CAM: &str = "/dev/video0";
+const BOTTOM_CAM: &str = "/dev/video1";
26
27
#[derive(Debug, Serialize, Deserialize)]
28
pub struct Config {
src/missions/coinflip.rs
@@ -119,7 +119,7 @@ pub fn coinflip<
119
const TRUE_COUNT: u32 = 4;
120
const DELAY_TIME: f32 = 3.0;
121
122
- const DEPTH: f32 = -1.25;
+ const DEPTH: f32 = -1.6;
123
const ALIGN_X_SPEED: f32 = 0.0;
124
const ALIGN_Y_SPEED: f32 = 0.0;
125
const ALIGN_YAW_SPEED: f32 = -3.0;
src/missions/gate.rs
@@ -585,7 +585,7 @@ pub fn gate_run_coinflip<
585
ActionChain::new(
586
Stability2Movement::new(
587
context,
588
- Stability2Pos::new(0.0, 1.0, 0.0, 0.0, None, depth),
+ Stability2Pos::new(0.0, 0.5, 0.0, 0.0, None, depth),
589
),
590
OutputType::<()>::default()
591
@@ -598,7 +598,7 @@ pub fn gate_run_coinflip<
598
599
600
601
602
603
604
@@ -617,7 +617,7 @@ pub fn gate_run_coinflip<
617
618
619
620
- Stability2Pos::new(0.0, 0.5, 0.0, 0.0, None, depth),
+ Stability2Pos::new(0.0, 0.0, 0.0, 0.0, None, depth),
621
622
623
0 commit comments