#include <array>
#include <iostream>
#include <regex>
#include <sstream>
void print_device_configuration(
const bbt_driver_t* driver);
int main(int argc, char** argv)
{
if (argc < 3) {
std::cout << "Usage: " << argv[0] << " <[bluetooth|usb]> <device> [time in seconds (default = 10)]\n";
return -1;
}
const auto device_type = std::string(argv[1]);
std::string device_name;
if (device_type.find("bluetooth") == 0)
{
const auto device = argv[2];
device_name = device;
}
else if (device_type.find("usb") == 0)
{
const auto port = std::strtol(argv[2], nullptr, 0);
std::ostringstream oss;
oss << "usb (port " << port << ")";
device_name = oss.str();
}
const auto time = argc > 3? strtol(argv[3], nullptr, 0): 10;
if (!driver)
{
std::cout << "Unable to create an instance with the parameter provided\n";
return -1;
}
std::cout << "driver to " << device_name << " created\n";
if (!connect(driver, 10)) {
std::cout << "Unable to connect to " << device_name << "\n";
return -1;
}
print_device_information(driver);
std::cout << "Initial signals:\n";
print_device_configuration(driver);
std::cout << "Enable all signals:\n";
enable_all_signals(driver);
std::cout << "Configure sd card:\n";
configure_sd_card(driver);
synchronize_device(driver);
{
std::cout << "recording started\n";
auto count = 0;
{
std::cout << "reconnect\n";
continue;
}
{
std::cout << "restart\n";
}
if (!read(driver))
continue;
count++;
}
std::cout << "recording stopped\n";
} else
std::cout << "Unable to stop recording\n";
} else
{
std::cout << "Unable to start recording\n";
}
if (!disconnect(driver, 10))
{
std::cout << "Unable to disconnect\n";
}
return 0;
}
{
std::cout << "try to connect [" << t + 1 << "]\n";
}
}
{
std::cout << "try to disconnect [" << t + 1 << "]\n";
}
}
{
unsigned short hw_major = 0, hw_minor = 0, fw_major = 0, fw_minor = 0;
std::cout << "Hardware version: " << hw_major << "." << hw_minor << "\n";
std::cout << "Firmware version: " << fw_major << "." << fw_minor << "\n";
}
{
{
std::array<char, 10> signal_type;
std::cout << "signal: " << i
<<
", type: " <<
bbt_signal_get_type(signal, signal_type.data(),
static_cast<unsigned int>(signal_type.size()))
}
std::array<char, 256> sd_folder, sd_file;
{
std::cout <<
"SD file name: " <<
bbt_driver_get_file(driver, sd_file.data(),
static_cast<unsigned int>(sd_file.size())) <<
"\n";
std::cout <<
"SD folder name: " <<
bbt_driver_get_folder(driver, sd_folder.data(),
static_cast<unsigned int>(sd_folder.size())) <<
"\n";
}
}
{
std::array<char, 10> signal_type;
bbt_signal_get_type(signal, signal_type.data(),
static_cast<unsigned int>(signal_type.size()));
std::cout << "can't enable the signal " << signal_type.data() << "\n";
}
}
{
std::cout << "Enable sd card:\n";
} else
std::cout << "Unable to enable sd card. Is the card in the device?\n";
std::cout << "Set folder and file names\n";
std::cout << "Unable to set file name\n";
std::cout << "Unable to set folder name\n";
}
}
{
unsigned short fw_major = 0, fw_minor = 0;
if (fw_major >= 1) {
std::cout << "Start synchronization\n";
long offset;
unsigned long rtt;
std::cout << "RTT computed: " << rtt << "\n";
std::cout << "Offset computed: " << offset << "\n";
} else {
std::cout << "Unable to synchronize\n";
}
}
}
{
unsigned short sequence, flags;
short battery;
if (!data) {
std::cout << "read error\n";
return false;
}
std::ostringstream battery_oss;
battery_oss << "charging";
battery_oss << "-- %";
else
battery_oss << 20 * battery << " %";
std::cout << "read sequence " << sequence << " of size " << size << " with battery " << battery_oss.str() << "\n";
std::cout << "ERROR flag active\n";
const auto n_eeg_channels = eeg_channels(driver);
std::cout << "EEG impedances:";
for (auto i = 0u; i < n_eeg_channels; ++i)
std::cout << "\n";
return true;
}
{
{
std::array<char, 10> signal_type;
bbt_signal_get_type(signal, signal_type.data(),
static_cast<unsigned int>(signal_type.size()));
std::regex re("EEG");
std::cmatch match;
if (std::regex_search(signal_type.data(), match, re))
{
}
}
return 0u;
}
Header for the Bitbrain driver SDK.
BBT_SDK_API const short bbt_driver_battery_unknown
unknown battery level
BBT_SDK_API const short bbt_driver_battery_charging
battery charging
BBT_SDK_API int bbt_driver_enable_sd_card(bbt_driver_t *driver, int enable)
Enables or disables the SD card recording.
BBT_SDK_API unsigned short bbt_driver_get_number_of_signals(const bbt_driver_t *driver)
Gets the number of signals available in the device.
BBT_SDK_API char * bbt_driver_get_file(const bbt_driver_t *driver, char *output_buffer, unsigned int max_len)
Gets the name of the file in the SD card where the data is going to be recorded.
BBT_SDK_API char * bbt_driver_get_folder(const bbt_driver_t *driver, char *output_buffer, unsigned int max_len)
Gets the name of the folder in the SD card where the data is going to be recorded.
BBT_SDK_API int bbt_driver_set_folder(bbt_driver_t *driver, const char *folder)
Sets the name of the folder in the SD card where the data is going to be recorded.
BBT_SDK_API int bbt_driver_is_sd_card_enabled(const bbt_driver_t *driver)
Checks if the SD card record is enabled.
BBT_SDK_API bbt_signal_t * bbt_driver_get_signal(const bbt_driver_t *driver, unsigned short index)
Gets a handler to the signal with the corresponding index that can be later used with functions in Si...
BBT_SDK_API int bbt_driver_set_file(bbt_driver_t *driver, const char *file)
Sets the name of the file in the SD card where the data is going to be recorded.
BBT_SDK_API int bbt_driver_has_sd_card_capability(const bbt_driver_t *driver)
Checks if the device can record the data in a SD card.
BBT_SDK_API void bbt_driver_connect(bbt_driver_t *driver)
Connects with the device associated to the driver.
BBT_SDK_API int bbt_driver_is_connected(const bbt_driver_t *driver)
Checks if the driver is connected to the device.
BBT_SDK_API void bbt_driver_disconnect(bbt_driver_t *driver)
Disconnects from the device associated.
BBT_SDK_API void bbt_driver_reconnect(bbt_driver_t *driver)
Reconnects to the device associated.
BBT_SDK_API bbt_driver_t * bbt_driver_new_usb(int port, int eeg_sensor_type)
Creates a driver for a usb device. It must be released using bbt_driver_free()
BBT_SDK_API void bbt_driver_free(bbt_driver_t *driver)
Releases the memory of the driver created by bbt_driver_new_*()
BBT_SDK_API bbt_driver_t * bbt_driver_new_bluetooth(const char *device_name, int eeg_sensor_type)
Creates a driver for a bluetooth device. It must be released using bbt_driver_free()
BBT_SDK_API unsigned long bbt_driver_read_data_size(const bbt_driver_t *driver)
Gets the size of the data vector read on each block depending on the configuration of the driver.
BBT_SDK_API int bbt_driver_start(bbt_driver_t *driver)
Stars a new recording.
BBT_SDK_API double * bbt_driver_read(bbt_driver_t *driver, unsigned short *sequence, short *battery, unsigned short *flags)
Reads one data message from the device.
BBT_SDK_API unsigned short bbt_driver_get_eeg_impedance(const bbt_driver_t *driver, unsigned short index)
Reads the impedance value for the index channel of the EEG signal (if any)
BBT_SDK_API int bbt_driver_is_running(const bbt_driver_t *driver)
Checks if the recording is active.
BBT_SDK_API int bbt_driver_stop(bbt_driver_t *driver)
Stops the current recording.
BBT_SDK_API int bbt_driver_synchronize(const bbt_driver_t *driver, unsigned long *rtt, long *offset)
Computes the rtt and clock offset between the computer and the device.
typedefBBT_SDK_API struct bbt_driver_s bbt_driver_t
Opaque data type that represents the driver for a BBT device.
Definition: bbt_driver.h:432
BBT_SDK_API const int bbt_dry_eeg_sensor
dry eeg sensor
BBT_SDK_API const unsigned short bbt_driver_flags_ok
data recording is ok
BBT_SDK_API int bbt_signal_set_mode(const bbt_signal_t *signal, int mode)
Sets the working mode of the signal.
BBT_SDK_API unsigned int bbt_signal_get_channels(const bbt_signal_t *signal)
Gets the number of channels that compose the signal.
BBT_SDK_API char * bbt_signal_get_type(const bbt_signal_t *signal, char *output_buffer, unsigned int max_len)
Gets the type of the signal.
BBT_SDK_API unsigned int bbt_signal_get_samples(const bbt_signal_t *signal)
Gets the number of measurements gathered in every message.
BBT_SDK_API int bbt_signal_get_mode(const bbt_signal_t *signal)
Gets the current working mode of the signal.