test publish

Dependencies:   mbed GroveEarbudSensor

main.cpp

Committer:
age2pierre
Date:
2016-04-14
Revision:
12:a56f9fb318de
Parent:
11:e9d48f0a6b3e

File content as of revision 12:a56f9fb318de:

#include "mbed.h"
#include "Application.h"

using namespace std;

InterruptIn earSensorPin(p5);
AnalogIn GSRPin(p15);
PwmOut speakerPin(p21);

int main()
{
    Application App = Application(&earSensorPin, &GSRPin, &speakerPin);
    App.Init();
    App.Run();
}