Skip to content

Commit

Permalink
Merge pull request #90 from adafruit/patch-fix
Browse files Browse the repository at this point in the history
Fixed deprecated method
  • Loading branch information
evaherrada committed Jan 20, 2022
2 parents 0b20066 + fd295a2 commit cd0f906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/bno055_webgl_demo/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def read_bno():
bno_data["quaternion"] = bno.quaternion
bno_data["calibration"] = bno.calibration_status
# Notify any waiting threads that the BNO state has been updated.
bno_changed.notifyAll()
bno_changed.notify_all()
# Sleep until the next reading.
time.sleep(1.0 / BNO_UPDATE_FREQUENCY_HZ)

Expand Down

0 comments on commit cd0f906

Please sign in to comment.