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: mbed
Fork of Turrett_Project by
Nerf_function.h
00001 void fire_shots(PinName trigger_pin,PinName spinner_pin, int shots) 00002 { DigitalOut trigger(trigger_pin); 00003 DigitalOut spinner(spinner_pin); 00004 00005 spinner = 1; 00006 wait(3.0); 00007 00008 trigger = 1; 00009 wait((float)shots*0.35); 00010 00011 trigger = 0; 00012 spinner = 0; 00013 wait(3.0); 00014 }
Generated on Tue Jul 26 2022 16:07:44 by
1.7.2
