Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
packet = rfm69.receive(with_ack=True)
packet = rfm69.receive(with_ack=True,with_header=True)
Re: Circuitpython RFM69 Gateway
if fifo_length < 5:
packet = None
else:
print(packet)
self._read_into(_REG_FIFO, packet)
self.spi.write(bytes([address & 0x7F]))
self.spi.readinto(buf)
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway
Re: Circuitpython RFM69 Gateway