Color
Color
h>
#include <LiquidCrystal.h> // Include the LCD library
Servo servoTop;
Servo servoBottom;
void setup() {
// Initialize serial communication
Serial.begin(9600);
void loop() {
unsigned long currentTime = millis();
// Return to 0 degrees
servoTop.write(0);
delay(2000); // Adjust the delay as needed
}
}