public interface EmpaDataDelegate
Modifier and Type | Method and Description |
---|---|
void |
didReceiveAcceleration(int x,
int y,
int z,
double timestamp)
This method is invoked when a new acceleration value is available
|
void |
didReceiveBatteryLevel(float level,
double timestamp)
This method is invoked when a new battery level value is available
|
void |
didReceiveBVP(float bvp,
double timestamp)
This method is invoked when a new BVP value is available
|
void |
didReceiveGSR(float gsr,
double timestamp)
This method is invoked when a new GSR value is available
|
void |
didReceiveIBI(float ibi,
double timestamp)
This method is invoked when a new interbeat interval (IBI) value is available.
|
void |
didReceiveTemperature(float t,
double timestamp)
This method is invoked when a new temperature value is available
|
void didReceiveGSR(float gsr, double timestamp)
gsr
- a GSR valuetimestamp
- the timestamp for the GSR valuevoid didReceiveBVP(float bvp, double timestamp)
bvp
- a BVP valuetimestamp
- the timestamp for the BVP valuevoid didReceiveIBI(float ibi, double timestamp)
ibi
- an IBI valuetimestamp
- the timestamp for the IBI valuevoid didReceiveTemperature(float t, double timestamp)
t
- a temperature valuetimestamp
- the timestamp for the temperature valuevoid didReceiveAcceleration(int x, int y, int z, double timestamp)
x
- x component of the accelerationy
- y component of the accelerationz
- z component of the accelerationtimestamp
- the timestamp for the acceleration valuevoid didReceiveBatteryLevel(float level, double timestamp)
level
- a battery level valuetimestamp
- the timestamp for the battery level value