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.
Dependencies: SeeedStudioShieldBot mbed
main.cpp
00001 #include "mbed.h" 00002 #include "SeeedStudioShieldBot.h" 00003 00004 SeeedStudioShieldBot bot; 00005 float speed = 0; 00006 00007 int main() { 00008 bot.enable_right_motor(); 00009 bot.enable_left_motor(); 00010 00011 while(1) { 00012 speed += 0.1; 00013 bot.forward(speed); 00014 wait_ms(1000); 00015 if (speed == 1) { 00016 speed = 0; 00017 } 00018 } 00019 }
Generated on Thu Jul 21 2022 00:40:48 by
1.7.2
Seeed Studio Shield Bot