devedag

About

Username
devedag
Joined
Visits
37
Last Active
Roles
Member

Comments

  • Ok, I was thinking too quick, got the battery query work now: let onBatteryDataCallback = (dataPtr) => { let data = dataPtr.deref(); let MblMwBatteryState = data.parseValue(); /* MblMwBatteryState Public Attribute…
  • Thanks Eric, but it´s still not clear to me how to realize it in JavaScript. Regarding the battery, this is my approach: function batteryHandler(board, onDataCallback){ battery_signal = MetaWear.mbl_mw_settings_get_battery_state_data_signal(…
  • Thank´s Eric! Resetting solves the problem. But for my use case the workaround is a bit unpleasant because I am recording in a loop and therefore I need to reconnect the sensors each time after resetting. @Eric said: That is mostly a res…
  • @Eric said: Internal acc settings are not exposed. What can I do with this function MetaWear.mbl_mw_acc_read_config then?
  • @Eric said: @devedag said: @Eric said: Set the NOBLE_HCI_DEVICE_ID env variable to the hci adapter number of the dongle to use, before executing MetaBase. You'll need to either setup separate config files or use…
  • @Eric said: Set the NOBLE_HCI_DEVICE_ID env variable to the hci adapter number of the dongle to use, before executing MetaBase. You'll need to either setup separate config files or use the command line options to pair different groups of devices…
  • @Eric said: @aribes said: @Eric said: How can I "program the board to stop streaming upon disconnect"? https://mbientlab.com/cppdocs/0/settings.html#handling-disconnects I solve…