Skip to content
Snippets Groups Projects
Communications.cpp 522 B
Newer Older
#include "../Headers/Communications.h"

// Connects to a specified bluetooth address
bool connect()
{
	return true;
}

// Disconnects from the current connection
bool disconnect()
{
	return false;
}

// Reads from a single sensor
double readSensor(int serviceID)
{

}

// Read from a set of sensors specified
int readSensors(double buff[], int length, ServiceSet serviceIDs)
{

}

// Receive audio from the audio codec
bool receiveAudio()
{

}

// Sends a set of audio to be played by the audio codec
bool sendAudio()
{

}