Skip to content

Commit cd0f906

Browse files
authored
Merge pull request #90 from adafruit/patch-fix
Fixed deprecated method
2 parents 0b20066 + fd295a2 commit cd0f906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/bno055_webgl_demo/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def read_bno():
7979
bno_data["quaternion"] = bno.quaternion
8080
bno_data["calibration"] = bno.calibration_status
8181
# Notify any waiting threads that the BNO state has been updated.
82-
bno_changed.notifyAll()
82+
bno_changed.notify_all()
8383
# Sleep until the next reading.
8484
time.sleep(1.0 / BNO_UPDATE_FREQUENCY_HZ)
8585

0 commit comments

Comments
 (0)