Set IMU pin as input pin when using camera

If we don't set this as an input, it interferes with our PWM signal
Also, setting LED duty_cycle to 0.25, to make it less blinding

Change-Id: I6660273753b42141bf72b6617b06d15a4f97071f
Signed-off-by: Jim Ostrowski <yimmy13@gmail.com>
diff --git a/y2022/vision/gpio.h b/y2022/vision/gpio.h
index 90ad812..bc9aa8a 100644
--- a/y2022/vision/gpio.h
+++ b/y2022/vision/gpio.h
@@ -23,6 +23,11 @@
 // This pin is MOSI, being used to control the LED Disable
 static constexpr int GPIO_PIN_MOSI_DISABLE = 10;
 
+// Physical pin 23 maps to sysfs pin 11
+// This pin is SCLK, and is used to talk to the IMU
+// To drive the lights, we have to set this pin to an input
+static constexpr int GPIO_PIN_SCLK_IMU = 11;
+
 // Physical pin 33 maps to sysfs pin 13
 // This pin is SCK, being used to control the LED PWM
 static constexpr int GPIO_PIN_SCK_PWM = 13;