:mod:`thingz_radio` =================== .. py:module:: thingz_radio .. autoapi-nested-parse:: Thingz Radio .. py:class:: Radio Send and receive messages between boards .. py:method:: send(data: str) -> None Send a message. The message is broadcasted, the board around, if on the same channel, will receive it :param str data: The data to send .. py:method:: receive() -> str Wait for data to be received :return: The data received :rtype: str .. py:method:: set_chanel(channel: int) -> None Change the channel used by the radio module :param int channel: The channel between 1 and 10 .. py:method:: get_channel() -> int Get the channel used by the radio module :return: The channel used by the radio module :rtype: int