1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
Radio
*****
.. py:module:: radio
The ``radio`` module allows devices to work together via simple wireless
networks.
The radio module is conceptually very simple:
* Broadcast messages are of a certain configurable length (up to 251 bytes).
* Messages received are read from a queue of configurable size (the larger the queue the more RAM is used). If the queue is full, new messages are ignored. Reading a message removes it from the queue.
* Messages are broadcast and received on a preselected channel (numbered 0-83).
* Broadcasts are at a certain level of power - more power means more range.
* Messages are filtered by address (like a house number) and group (like a named recipient at the specified address).
* The rate of throughput can be one of three pre-determined settings.
* Send and receive bytes to work with arbitrary data.
* Use `receive_full` to obtain full details about an incoming message: the data, receiving signal strength, and a microsecond timestamp when the message arrived.
* As a convenience for children, it's easy to send and receive messages as strings.
* The default configuration is both sensible and compatible with other platforms that target the BBC micro:bit.
To access this module you need to::
import radio
We assume you have done this for the examples below.
Constants
=========
.. py:attribute:: RATE_250KBIT
Constant used to indicate a throughput of 256 Kbit a second.
.. py:attribute:: RATE_1MBIT
Constant used to indicate a throughput of 1 MBit a second.
.. py:attribute:: RATE_2MBIT
Constant used to indicate a throughput of 2 MBit a second.
Functions
=========
.. py:function:: on()
Turns the radio on. This needs to be explicitly called since the radio
draws power and takes up memory that you may otherwise need.
.. py:function:: off()
Turns off the radio, thus saving power and memory.
.. py:function:: config(**kwargs)
Configures various keyword based settings relating to the radio. The
available settings and their sensible default values are listed below.
The ``length`` (default=32) defines the maximum length, in bytes, of a
message sent via the radio. It can be up to 251 bytes long (254 - 3 bytes
for S0, LENGTH and S1 preamble).
The ``queue`` (default=3) specifies the number of messages that can be
stored on the incoming message queue. If there are no spaces left on the
queue for incoming messages, then the incoming message is dropped.
The ``channel`` (default=7) can be an integer value from 0 to 83
(inclusive) that defines an arbitrary "channel" to which the radio is
tuned. Messages will be sent via this channel and only messages received
via this channel will be put onto the incoming message queue. Each step is
1MHz wide, based at 2400MHz.
The ``power`` (default=6) is an integer value from 0 to 7 (inclusive) to
indicate the strength of signal used when broadcasting a message. The
higher the value the stronger the signal, but the more power is consumed
by the device. The numbering translates to positions in the following list
of dBm (decibel milliwatt) values: -30, -20, -16, -12, -8, -4, 0, 4.
The ``address`` (default=0x75626974) is an arbitrary name, expressed as a
32-bit address, that's used to filter incoming packets at the hardware
level, keeping only those that match the address you set. The default used
by other micro:bit related platforms is the default setting used here.
The ``group`` (default=0) is an 8-bit value (0-255) used with the
``address`` when filtering messages. Conceptually, "address" is like a
house/office address and "group" is like the person at that address to
which you want to send your message.
The ``data_rate`` (default=radio.RATE_1MBIT) indicates the speed at which
data throughput takes place. Can be one of the following contants defined
in the ``radio`` module : ``RATE_250KBIT``, ``RATE_1MBIT`` or
``RATE_2MBIT``.
If ``config`` is not called then the defaults described above are assumed.
.. py:function:: reset()
Reset the settings to their default values (as listed in the documentation
for the ``config`` function above).
.. note::
None of the following send or receive methods will work until the radio is
turned on.
.. py:function:: send_bytes(message)
Sends a message containing bytes.
.. py:function:: receive_bytes()
Receive the next incoming message on the message queue. Returns ``None`` if
there are no pending messages. Messages are returned as bytes.
.. py:function:: receive_bytes_into(buffer)
Receive the next incoming message on the message queue. Copies the message
into ``buffer``, trimming the end of the message if necessary.
Returns ``None`` if there are no pending messages, otherwise it returns the length
of the message (which might be more than the length of the buffer).
.. py:function:: send(message)
Sends a message string. This is the equivalent of
``send_bytes(bytes(message, 'utf8'))`` but with ``b'\x01\x00\x01'``
prepended to the front (to make it compatible with other platforms that
target the micro:bit).
.. py:function:: receive()
Works in exactly the same way as ``receive_bytes`` but returns
whatever was sent.
Currently, it's equivalent to ``str(receive_bytes(), 'utf8')`` but with a
check that the the first three bytes are ``b'\x01\x00\x01'`` (to make it
compatible with other platforms that may target the micro:bit). It strips
the prepended bytes before converting to a string.
A ``ValueError`` exception is raised if conversion to string fails.
.. py:function:: receive_full()
Returns a tuple containing three values representing the next incoming
message on the message queue. If there are no pending messages then
``None`` is returned.
The three values in the tuple represent:
* the next incoming message on the message queue as bytes.
* the RSSI (signal strength): a value between 0 (strongest) and -255 (weakest) as measured in dBm.
* a microsecond timestamp: the value returned by ``time.ticks_us()`` when the message was received.
For example::
details = radio.receive_full()
if details:
msg, rssi, timestamp = details
This function is useful for providing information needed for triangulation
and/or triliteration with other micro:bit devices.
Examples
--------
.. include:: ../examples/radio.py
:code: python
|