diff options
author | Thomas Friebel <yaron.de@gmail.com> | 2020-04-14 00:17:25 +0200 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-04-19 00:18:14 +1000 |
commit | 1b1ceb67b25e0ea56c1e972514a48468fe478ad3 (patch) | |
tree | d84a6a325c54b369a35a03719416dbc7918c8940 /docs | |
parent | 8ee2e1fdbcf494d39162b38d9a8427aa012fe044 (diff) |
docs/library: Document that char_data/notify_data are also references.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/library/ubluetooth.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/library/ubluetooth.rst b/docs/library/ubluetooth.rst index a16019e60..62a823924 100644 --- a/docs/library/ubluetooth.rst +++ b/docs/library/ubluetooth.rst @@ -68,7 +68,8 @@ Event Handling The optional *trigger* parameter allows you to set a mask of events that your program is interested in. The default is all events. - Note: the ``addr``, ``adv_data`` and ``uuid`` entries in the tuples are + Note: the ``addr``, ``adv_data``, ``char_data``, ``notify_data``, and + ``uuid`` entries in the tuples are references to data managed by the :mod:`ubluetooth` module (i.e. the same instance will be re-used across multiple calls to the event handler). If your program wants to use this data outside of the handler, then it must |