Hallo stollentroll,

wenn der Asuro nach 1 sek wieder stehen bleiben soll, mußt du ihn auch anhalten.

So könnte es gehen:
Code:
#include “asuro.h”
int main(void) {
  Init();
  MotorDir(FWD,FWD);
  MotorSpeed(100,100);
  Msleep(1000);
  MotorSpeed(0,0);
  while(1);
  return 0;
}
Gruß m.a.r.v.i.n