Adminy

Results 181 comments of Adminy

may I borrow that tailwind/css blur behind the font :}?

+1, when you do a couple of `ssh_resource`, it gets pretty repetitive.

Any updates on this? Sounds like a simple reserved `version` variable should do the trick.

for _wait_for_packet I had to use the libgpiod python package. I have the code changes if you'd like a PR. Can there be multiple fixed values for packages received or...

The GPIO was missing the library call in the dll/so lib, because it seems I'm using a newer version of libgpiod. So this worked for me: ![IMG_6772](https://github.com/fphammerle/python-cc1101/assets/22717869/795248cf-5552-4d78-81f1-3ddfb312b2c8) I'll try see...

Ok, so I've exhausted all options here, still not receiving anything at all. ```python import cc1101 with cc1101.CC1101() as transceiver: transceiver.set_base_frequency_hertz(433.92e6) transceiver.set_symbol_rate_baud(2048) transceiver.set_sync_mode(cc1101.SyncMode.NO_PREAMBLE_AND_SYNC_WORD) transceiver.disable_checksum() transceiver.set_packet_length_mode(cc1101.PacketLengthMode.VARIABLE) transceiver._set_filter_bandwidth(mantissa=3, exponent=3) transceiver._enable_receive_mode() print(transceiver) #...

the two variables i'm not sure about is the symbol rate and filter bandwidth. I didn't know the rtl_sdr dongle reports back a symbol rate, is this perhaps the sample...

I scanned with rtl sdr. here are the results: https://triq.org/pdv/#AAB0210306015003EC28108190908190909081818181819090818190818181819090818255+AAB0120301015003EC28108190908190909081818255 I have: - 119 bytes or 119 * 8 bits of data. - Duration is 279.16 ms - sample rate...

I did a little sanity check test by doing this: ```python3 transceiver._enable_receive_mode() while True: packet = transceiver._get_received_packet() if packet and packet.payload: print(packet.payload) transceiver._enable_receive_mode() ``` So it looks like packet payload...