Skip to content

Instantly share code, notes, and snippets.

@exinmusic
Last active August 16, 2021 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save exinmusic/e85e9cca226f58bf4f96b2e59515d283 to your computer and use it in GitHub Desktop.
Save exinmusic/e85e9cca226f58bf4f96b2e59515d283 to your computer and use it in GitHub Desktop.
from adafruit_ble import Service
from adafruit_ble.uuid import VendorUUID
from adafruit_ble.characteristics.stream import StreamOut, StreamIn
class TAMAService(Service):
uuid = VendorUUID("0000FFF0-0000-1000-8000-00805F9B34FB")
_server_tx = StreamOut(
uuid=VendorUUID("0000FFF2-0000-1000-8000-00805F9B34FB"),
timeout=1.0,
buffer_size=64,
)
_server_rx = StreamIn(
uuid=VendorUUID("0000FFF1-0000-1000-8000-00805F9B34FB"),
timeout=1.0,
buffer_size=64,
)
def __init__(self, service=None):
super().__init__(service=service)
self.connectable = True
if not service:
self._rx = self._server_rx
self._tx = self._server_tx
else:
# If we're a client then swap the characteristics we use.
self._tx = self._server_rx
self._rx = self._server_tx
def read(self, nbytes=None):
"""
Read characters. If ``nbytes`` is specified then read at most that many bytes.
Otherwise, read everything that arrives until the connection times out.
Providing the number of bytes expected is highly recommended because it will be faster.
:return: Data read
:rtype: bytes or None
"""
return self._rx.read(nbytes)
def readinto(self, buf, nbytes=None):
"""
Read bytes into the ``buf``. If ``nbytes`` is specified then read at most
that many bytes. Otherwise, read at most ``len(buf)`` bytes.
:return: number of bytes read and stored into ``buf``
:rtype: int or None (on a non-blocking error)
"""
return self._rx.readinto(buf, nbytes)
def readline(self):
"""
Read a line, ending in a newline character.
:return: the line read
:rtype: bytes or None
"""
return self._rx.readline()
@property
def in_waiting(self):
"""The number of bytes in the input buffer, available to be read."""
return self._rx.in_waiting
def reset_input_buffer(self):
"""Discard any unread characters in the input buffer."""
self._rx.reset_input_buffer()
def write(self, buf):
"""Write a buffer of bytes."""
self._tx.write(buf)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment