.. highlight:: cpp MblMwMetaWearBoard ================== Like the ``MetaWearBoard`` (Android) and ``MBLMetaWear`` (iOS) classes, the `MblMwMetaWearBoard `_ struct is the C++ API's representation of a MetaWear board and is the central type for using the API. The `metawearboard.h `_ header file provides functions for instantiating and retrieving information about a board. Instantiation ------------- Before you can instantiate a `MblMwMetaWearBoard `_ struct, you must first create a `MblMwBtleConnection `_ as outlined in the :doc:`btlecommunication` section. Once you have your struct properly setup, call `mbl_mw_metawearboard_create `_ to instantiate a `MblMwMetaWearBoard `_ struct. :: #include "metawear/core/connection.h" #include "metawear/core/metawearboard.h" int main(int argc, char **argv) { MblMwBtleConnection btle_conn = { write_gatt_char, read_gatt_char }; MblMwMetaWearBoard* board = mbl_mw_metawearboard_create(&btle_conn); } Initialize ---------- After you have instantiated a `MblMwMetaWearBoard `_, you then need to initialize its internal state by calling `mbl_mw_metawearboard_initialize `_. Initializing can take a few seconds and will asynchronously alert the caller when it is finished. You can check if a `MblMwMetaWearBoard `_ has been initialized by calling `mbl_mw_metawearboard_is_initialized `_. :: void initialize_board(MblMwMetaWearBoard* board) { static auto initialized = [](void) -> void { printf("Board initialized\n"); }; mbl_mw_metawearboard_initialize(board, initialized); } Initialization must be done everytime you connect to a board. Tear Down --------- Calling `mbl_mw_metawearboard_tear_down `_ will remove all data processors, loggers, timers, and recorded events from both the board and the struct's internal state. It does not reset the board so any configuration changes will be preserved. Modules ------- Modules are sensors or features supported by the MetaWear firmware. While the C++ API does not partition the module functions in the same way the Android and iOS APIs do, it does provide the `mbl_mw_metawearboard_lookup_module `_ function. The output is used to determine what kind of module is present, i.e. which accelerometer is on the board, or if the module is even supported on the board e.g. barometers are not available on all boards. Constants identifying the modules are defined in the `module.h `_ header file. Freeing Memory -------------- When you are done using the struct, call `mbl_mw_metawearboard_free `_. This function does not affect the state of the MetaWear board, it only frees the memory allocated by the `mbl_mw_metawearboard_create `_ function.