#include #include #define SERVO_PIN D9 #define POT_PIN D2 #define NEOPIXEL_PIN D10 Servo myServo; Adafruit_NeoPixel strip = Adafruit_NeoPixel(8, NEOPIXEL_PIN, NEO_GRB + NEO_KHZ800); void setup() { myServo.attach(SERVO_PIN); strip.begin(); Serial.begin(115200); // **Posición inicial del servo** myServo.write(0); // **Colocar LEDs en rojo al inicio** for (int i = 0; i < strip.numPixels(); i++) { strip.setPixelColor(i, strip.Color(255, 0, 0)); // Rojo puro } strip.show(); } void loop() { int potValue = analogRead(POT_PIN); Serial.print("Potenciómetro: "); Serial.println(potValue); int angle = map(potValue, 0, 4095, 45, 180); // **Ahora el servo empieza en 45°** angle = constrain(angle, 45, 180); // **Limitar dentro del nuevo rango ampliado** int greenValue = map(angle, 45, 180, 0, 255); int redValue = 255 - greenValue; for (int i = 0; i < strip.numPixels(); i++) { strip.setPixelColor(i, strip.Color(redValue, greenValue, 0)); } strip.show(); // **El servo se mueve más cuando hay rojo fuerte** if (redValue >= 200) { myServo.write(angle); } else { myServo.write(45); // **En vez de 0°, ahora el mínimo es 45°** } delay(50); }