Compatibility Question for Xiao?

One of the great things about the Xiao board is the small amount of room it requires. I ran a simple sketch on a Raspberry Pi Pico and wanted to use a Xiao to shrilnk the same project space.
The code uploaded fine but all t did was cycle the servo back and forth? I checked all connections, this board is fine, could there be a simple compatibiltiy issue here?
This is the code, it has an HC-SR04 that triggers a standard servo. Any input appreciated Thanks

 #include <Servo.h>   //servo library
Servo servo;     
int trigPin = 5;    
int echoPin = 6;   
int servoPin = 7;
int led= 10;
long duration, dist, average;   
long aver[3];   //array for average


void setup() {       
    Serial.begin(9600);
    servo.attach(servoPin);  
    pinMode(trigPin, OUTPUT);  
    pinMode(echoPin, INPUT);  
    servo.write(0);         //close cap on power on
    delay(100);
    servo.detach(); 
} 

void measure() {  
 digitalWrite(10,HIGH);
digitalWrite(trigPin, LOW);
delayMicroseconds(5);
digitalWrite(trigPin, HIGH);
delayMicroseconds(15);
digitalWrite(trigPin, LOW);
pinMode(echoPin, INPUT);
duration = pulseIn(echoPin, HIGH);
dist = (duration/2) / 29.1;    //obtain distance
}
void loop() { 
  for (int i=0;i<=2;i++) {   //average distance
    measure();               
   aver[i]=dist;            
    delay(10);              //delay between measurements
  }
 dist=(aver[0]+aver[1]+aver[2])/3;    

if ( dist<50 ) {
//Change distance as per your need
 servo.attach(servoPin);
  delay(1);
 servo.write(0);  
 delay(3000);       
 servo.write(150);    
 delay(1000);
 servo.detach();      
}
Serial.print(dist);
}
 

Hi, James I wonder which Xiao board? what servo ?
They all 5v dc components?
Hmm
GL:-)

1 Like

Thanks
Seeduino Xiao SAMD21 and standard servo

Hi James_Cotter,
The pin names of XIAO_SAMD21 are A0 to A10. It will work if you define 5,6,7,10 in the sketch to the correct pin names.

1 Like

I did that but the servo kept cycling and did not stop?

well I tried it with a different sensor and it seems to work fine…that was odd