MurphyBat_LPC

Dependencies:   mbed

main.cpp

Committer:
SamuelEarnshawARM
Date:
2017-08-06
Revision:
0:a20f005ea7ae

File content as of revision 0:a20f005ea7ae:

#include "mbed.h"
#include "MurphyBat.hpp"

MurphyBat Bat(p15, p16, p17, p18, p21);


DigitalOut Led1(LED1);
int main()
{
    Led1 = 1;
    while(true)
    {
        Bat.update();
    }
}