Pull request for i.a. sensor buffer template

Dependencies:   BLE_API MPU6050 mbed nRF51822

AppTime.cpp

Committer:
JustinAtAlten
Date:
2018-11-15
Revision:
10:eed92ffd0bba

File content as of revision 10:eed92ffd0bba:

#include "AppTime.h"

#include "mbed.h"
#include "Timer.h"

static Timer runTime;

void AppTime::init(){
	runTime.start();
}

float AppTime::getTime(){
	return runTime;
}