#include <Adafruit_MPU6050.h>
#include <Servo.h>
#include <Wire.h>
#include <Adafruit_Sensor.h>
Servo yawController;
Adafruit_MPU6050 mpu;
int yawPin = 22;
int slideYawPin = 28;
int openPin = 3;
int buttonPin = 17;
const int ledCount = 10;
int ledPins[] = {
6, 7, 8, 9, 10, 11, 12, 13, 14, 16
};
void setup() {
for (int led = 0; led < ledCount; led++) {
pinMode(ledPins[led], OUTPUT);
}
yawController.attach(yawPin);
Serial1.begin(115200);
Serial1.println("Hello, Raspberry Pi Pico W!");
while (!mpu.begin()) {
Serial1.println("MPU6050 not connected!");
delay(500);
}
pinMode(slideYawPin, INPUT);
pinMode(buttonPin, INPUT_PULLUP);
}
sensors_event_t event;
int targetYaw;
int yAccel;
int ledIndex;
int oldValue = HIGH;
bool isOpen = false;
void loop() {
targetYaw = analogRead(slideYawPin);
Serial1.print("Raw targetYaw: ");
Serial1.println(targetYaw);
targetYaw = map(targetYaw, 0, 1023, 0, 180);
yawController.write(targetYaw);
mpu.getAccelerometerSensor()->getEvent(&event);
yAccel = event.acceleration.y;
if (yAccel > 5) {yAccel = 5;}
if (yAccel < -5) {yAccel = -5;}
ledIndex = yAccel + 5;
for (int led=0; led<ledCount; led++) {
digitalWrite(ledPins[led], LOW);
}
if (ledIndex >= 0 && ledIndex < ledCount) {
digitalWrite(ledPins[ledIndex], HIGH);
}
int newValue = digitalRead(buttonPin);
if (newValue != oldValue) {
isOpen = !isOpen;
}
if (isOpen) {
Serial1.println("OPEN");
digitalWrite(openPin, HIGH);
} else {
digitalWrite(openPin, LOW);
}
delay(100);
}
pico:GP0
pico:GP1
pico:GND.1
pico:GP2
pico:GP3
pico:GP4
pico:GP5
pico:GND.2
pico:GP6
pico:GP7
pico:GP8
pico:GP9
pico:GND.3
pico:GP10
pico:GP11
pico:GP12
pico:GP13
pico:GND.4
pico:GP14
pico:GP15
pico:GP16
pico:GP17
pico:GND.5
pico:GP18
pico:GP19
pico:GP20
pico:GP21
pico:GND.6
pico:GP22
pico:RUN
pico:GP26
pico:GP27
pico:GND.7
pico:GP28
pico:ADC_VREF
pico:3V3
pico:3V3_EN
pico:GND.8
pico:VSYS
pico:VBUS
wokwi-mpu6050-0:INT
wokwi-mpu6050-0:AD0
wokwi-mpu6050-0:XCL
wokwi-mpu6050-0:XDA
wokwi-mpu6050-0:SDA
wokwi-mpu6050-0:SCL
wokwi-mpu6050-0:GND
wokwi-mpu6050-0:VCC
wokwi-servo-1:GND
wokwi-servo-1:V+
wokwi-servo-1:PWM
wokwi-led-bar-graph-0:A1
wokwi-led-bar-graph-0:A2
wokwi-led-bar-graph-0:A3
wokwi-led-bar-graph-0:A4
wokwi-led-bar-graph-0:A5
wokwi-led-bar-graph-0:A6
wokwi-led-bar-graph-0:A7
wokwi-led-bar-graph-0:A8
wokwi-led-bar-graph-0:A9
wokwi-led-bar-graph-0:A10
wokwi-led-bar-graph-0:C1
wokwi-led-bar-graph-0:C2
wokwi-led-bar-graph-0:C3
wokwi-led-bar-graph-0:C4
wokwi-led-bar-graph-0:C5
wokwi-led-bar-graph-0:C6
wokwi-led-bar-graph-0:C7
wokwi-led-bar-graph-0:C8
wokwi-led-bar-graph-0:C9
wokwi-led-bar-graph-0:C10
wokwi-slide-potentiometer-0:VCC
wokwi-slide-potentiometer-0:SIG
wokwi-slide-potentiometer-0:GND
wokwi-relay-module-0:VCC
wokwi-relay-module-0:GND
wokwi-relay-module-0:IN
wokwi-relay-module-0:NC
wokwi-relay-module-0:COM
wokwi-relay-module-0:NO
wokwi-led-0:A
wokwi-led-0:C
wokwi-pushbutton-0:1.l
wokwi-pushbutton-0:2.l
wokwi-pushbutton-0:1.r
wokwi-pushbutton-0:2.r