Open
Description
This innocent looking constructor in a sub-class of Advertisement
:
def __init__(self, enc_data=None, round=0):
super().__init__()
if enc_data is not None:
self.enc_data = enc_data
if round is not None:
self.round = round
was causing ads to be receieved on another Adafruit device use this library as
<RpsEncDataAdvertisement manufacturer_data=<ManufacturerData company_id=0822 data=03 31 ff 00 > >
Minor possibility I've misdiagnosed this and they are sent like this due to a bug but this seems unlikely.
Originally mentioned in the comments of #79 (comment)