guilhermesilveira

About

Username
guilhermesilveira
Joined
Visits
13
Last Active
Roles
Member

Comments

  • @Xiaorui Nice! I actually use one thread to connect to all 5 sensors, then 1 thread per sensor to listen to their events. Do you create one thread per sensor before connecting, and inside each thread connect to them? And do you wait for the first on…
  • In my case I: * first isolate the problem, does your entire program work with only one device? * if yes, try with two, if yes three * find out when it hangs If it hangs only with more than one, you might be having the same problem that I …
  • @Eric @Laura my suspicion was correct, first there is an issue with the. bluetooth dongle. Some bluetooth dongles do not support more than one paired connection at a time. So after connecting with one device, the second one always fail. I got a few …
  • @minousoso can you tell me what's is the firmware update?
  • Thanks Eric, I will compile and run with the debug settings. Answering your question, the connections are done serialized. You can think of the following codes if it was just one script: m1 = MetaWear(mac1) m1.connect() m2 = MetaWear(mac2) m2.…
  • More specifically, the error occurs on self.warble.connect_async(completed)
  • If it helps, when trying to connect to two devices at the same time, the json file in the cache folder is created for the first one (connected successfuly) but the buffer overflow occurs before creating the cache folder json file for the second devi…
  • @Laura , I did the following: * removed batteries from all trackers (7 in total) * inserted battery in tracker E9, it showed up on metabase as the only one on * connected, retrieved firmware=1.2.5, asked for firmware update, choose LATER * "…
  • Solved it... libmetawear.mbl_mw_acc_bosch_set_any_motion_count(self.device.board, 4) libmetawear.mbl_mw_acc_bosch_set_any_motion_threshold(self.device.board, 0.25) libmetawear.mbl_mw_acc_bosch_write_motion_config(self.devi…