/ LSM303 / servo_calibration / servo_calibration.ino
servo_calibration.ino
 1  // SPDX-FileCopyrightText: 2019 Bryan Siepert for Adafruit Industries
 2  //
 3  // SPDX-License-Identifier: MIT
 4  
 5  #include <Servo.h> 
 6  Servo servo;  
 7  
 8  void setup() 
 9  { 
10    servo.attach(9);  // attaches the servo on pin 9 to the servo object 
11    servo.write(90);  // change this value to achieve minimum rotation!
12  } 
13   
14  void loop() 
15  { 
16  }