adafruit / Adafruit_CircuitPython_RFM69

CircuitPython module for the RFM69 series of 433/915 mhz packet radios.
MIT License
31 stars 28 forks source link

address a server #30

Closed Pythonaire closed 4 years ago

Pythonaire commented 4 years ago

to prevent useless communication, I used "rx_filter" to address data packets to a correct destination, the server just listening on packets designated for his own address. Now is see, "rx_filter" was deleted. Why?

jerryneedell commented 4 years ago

to prevent useless communication, I used "rx_filter" to address data packets to a correct destination, the server just listening on packets designated for his own address. Now is see, "rx_filter" was deleted. Why? Now just set rfm69.node as an attribute and it will be filtered as it was before. The argument is not needed. See the rfm69_node1.py example