Libraries
bignum
binary
bitmap
ble
bytes
core
crypto
device
encoding
esp32
expect
fixed-point
flash
font
gpio
i2c
i2s
icons
io
line-wrap
log
math
monitor
net
pulse-counter
reader
reader-writer
rmt
serial
spi
statistics
system
tls
uart
uuid
writer
zlib
Library bytes
To use this library in your code:
import bytes
Utilities to build and use binary data.
The
Buffer
class can be used to build up binary data. The collected data is then returned in a byte array.
The
Reader
class makes a byte array readable, by providing a
read
method.
Interfaces
Producer
Producer that can produce a fixed size payload of data, on demand.
Classes
Buffer
A buffer that can be used to build byte data.
BufferConsumer
A consumer of data.
BufferSizeCounter
A consumer that counts the number of written bytes.
ByteArrayProducer
A
Producer
backed by a byte array.
Reader
A reader to make byte arrays readable.