Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
00001 #include "mbed.h" 00002 #include "Motor.h" 00003 00004 Motor motor1(p26,p29,p30); 00005 00006 int main() 00007 { 00008 float motorspeed; 00009 for (motorspeed=-1.0;motorspeed<=1.0;motorspeed+=.2) 00010 { 00011 motor1.speed(motorspeed); 00012 printf("Motor speed is %.2f\n",motorspeed); 00013 getchar(); 00014 } 00015 motor1.speed(0.0); 00016 }
Generated on Fri Jul 22 2022 03:24:05 by
1.7.2