Thank you! This is the error code is below. The sketch is linked above
./opt/arduino-builder/arduino-builder -compile -core-api-version 10611 -hardware opt/arduino-builder/hardware -hardware ./opt/cores -tools opt/arduino-builder/tools -tools ./opt/tools -built-in-libraries opt/libraries/latest -logger humantags -fqbn arduino:avr:nano:cpu=atmega328old -build-cache /tmp -build-path /tmp/419444375/build -verbose -prefs runtime.tools.avr-gcc.path=./opt/tools/avr-gcc/5.4.0-atmel3.6.1-arduino2 -prefs runtime.tools.avrdude.path=./opt/tools/avrdude/6.3.0-arduino14 -prefs runtime.tools.arduinoOTA.path=./opt/tools/arduinoOTA/1.2.1 -libraries /tmp/419444375/custom -libraries /tmp/419444375/pinned /tmp/419444375/RocketMotorPIDGimbal
Multiple libraries were found for "Servo.h"
Used: /home/ubuntu/opt/libraries/latest/servo_1_1_3
Not used: /home/ubuntu/opt/libraries/latest/rokitsmart_1_0_9
Not used: /home/ubuntu/opt/libraries/latest/printoo_library_1_0_2
Not used: /home/ubuntu/opt/libraries/latest/evive_2_0_1
Multiple libraries were found for "I2Cdev.h"
Used: /home/ubuntu/opt/libraries/latest/mpu6050_0_0_1
Not used: /home/ubuntu/opt/libraries/latest/grove_imu_9dof_1_0_0
Not used: /home/ubuntu/opt/libraries/latest/grove_imu_9dof_1_0_0
Not used: /home/ubuntu/opt/libraries/latest/grove_imu_9dof_1_0_0
Not used: /home/ubuntu/opt/libraries/latest/grove_imu_9dof_1_0_0
Using library Wire at version 1.0 in folder: /home/ubuntu/opt/cores/arduino/avr/libraries/Wire
Using library pid_1_2_0 at version 1.2.0 in folder: /home/ubuntu/opt/libraries/latest/pid_1_2_0
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino: In function 'void setup()':
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:108:17: error: 'PA1' was not declared in this scope
ServoX.attach(PA1); // attaches the X servo on PA1 for stm32 or D10 for the Arduino Uno
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:109:17: error: 'PA2' was not declared in this scope
ServoY.attach(PA2); // attaches the Y servo on PA2 for stm32 or D11 for the Arduino Uno
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:119:3: error: 'Serial1' was not declared in this scope
Serial1.begin(38400);
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:38:17: error: 'PC13' was not declared in this scope
#define LED_PIN PC13 //pin 13 for the arduino Uno and PC13 for the stm32
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:146:11: note: in expansion of macro 'LED_PIN'
pinMode(LED_PIN, OUTPUT);
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino: In function 'void initialize()':
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:153:3: error: 'Serial1' was not declared in this scope
Serial1.println(F("Initializing MPU 6050 device..."));
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino: In function 'void myloop()':
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:218:5: error: 'Serial1' was not declared in this scope
Serial1.println(F("FIFO overflow!"));
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:38:17: error: 'PC13' was not declared in this scope
#define LED_PIN PC13 //pin 13 for the arduino Uno and PC13 for the stm32
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:248:16: note: in expansion of macro 'LED_PIN'
digitalWrite(LED_PIN, blinkState);
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:272:3: error: 'Serial1' was not declared in this scope
Serial1.print(mpuPitch);
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino: In function 'void serialPrintFloatArr(float*, int)':
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:292:5: error: 'Serial1' was not declared in this scope
Serial1.print(",");
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino: In function 'void serialFloatPrint(float)':
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:307:5: error: 'Serial1' was not declared in this scope
Serial1.print(c1);
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino: In function 'void calibrate()':
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:321:3: error: 'Serial1' was not declared in this scope
Serial1.println("\nMPU6050 Calibration Sketch");
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino: In function 'void calibration()':
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:435:5: error: 'Serial1' was not declared in this scope
Serial1.println("...");
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:38:17: error: 'PC13' was not declared in this scope
#define LED_PIN PC13 //pin 13 for the arduino Uno and PC13 for the stm32
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:437:18: note: in expansion of macro 'LED_PIN'
digitalWrite(LED_PIN, blinkState);
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino: In function 'void MainMenu()':
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:472:10: error: 'Serial1' was not declared in this scope
while (Serial1.available())
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino: In function 'void interpretCommandBuffer(char*)':
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:499:5: error: 'Serial1' was not declared in this scope
Serial1.println(F("calibration\n"));
^
/tmp/419444375/RocketMotorPIDGimbal/RocketMotorPIDGimbal.ino:514:5: error: 'Serial1' was not declared in this scope
Serial1.println(F("Unknown command" ));
^
exit status 1