NERF / Mbed 2 deprecated Turrett_Project

Dependencies:   mbed

Fork of Turrett_Project by Ty LaFramboise

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "Nerf_function.h"
00003 
00004 PinName spinner(p20);
00005 PinName trigger(p19);
00006 
00007 int main()
00008 { int shots = 3;
00009 
00010   fire_shots(trigger,spinner,shots); // Source code is in Nerf_function.h
00011   
00012   while(1);
00013 }
00014