MetaWear C# SDK
1.2.0
C# API for MbientLab's sensor platform
|
Firmware feature that saves MetaWear commands to the on-board flash memory More...
Public Member Functions | |
void | StartRecord (bool execOnBoot=true) |
Starts macro recording. Every MetaWear command issued will be recorded to the flash memory. More... | |
Task< byte > | EndRecordAsync () |
Ends macro recording More... | |
void | Execute (byte id) |
Execute the commands corresponding to the macro ID More... | |
void | EraseAll () |
Remove all macros on the flash memory. The erase operation will not be performed until you disconnect from the board.If you wish to reset the board after the erase operation, use the IDebug.ResetAfterGc method. More... | |
Firmware feature that saves MetaWear commands to the on-board flash memory
Task<byte> MbientLab.MetaWear.Core.IMacro.EndRecordAsync | ( | ) |
Ends macro recording
void MbientLab.MetaWear.Core.IMacro.EraseAll | ( | ) |
Remove all macros on the flash memory. The erase operation will not be performed until you disconnect from the board.If you wish to reset the board after the erase operation, use the IDebug.ResetAfterGc method.
void MbientLab.MetaWear.Core.IMacro.Execute | ( | byte | id | ) |
Execute the commands corresponding to the macro ID
id | Numerical ID of the macro to execute |
void MbientLab.MetaWear.Core.IMacro.StartRecord | ( | bool | execOnBoot = true | ) |
Starts macro recording. Every MetaWear command issued will be recorded to the flash memory.
execOnBoot | True if the commands should be executed when the board powers on, defaults to true |