a

Dependencies:   mbed

Fork of Turrett_Project by Ty LaFramboise

main.cpp

Committer:
taylormooers
Date:
2016-03-01
Revision:
1:c9b199994bc2
Parent:
0:d9acaeb37aed

File content as of revision 1:c9b199994bc2:

#include "mbed.h"
#include "Nerf_function.h"

PinName spinner(p20);
PinName trigger(p19);

int main()
{ int shots = 3;

  fire_shots(trigger,spinner,shots); // Source code is in Nerf_function.h
  
  while(1);
}