ChazTuna

Results 16 comments of ChazTuna

? Not sure what you are referring to - My hardware is SDRPlay RSPdx (one of their newest). Software is the latest URH (Windows 10, 64 bit). jopohl suggests updating...

FYI I have the same issue with weak signals when using my SDRplay RSPdx at ~300MHz. For some reason the native support is not quite working right.

Me too - what's with the hidden source code?

I think you mean "Bullseye" Debian version 11 (bullseye)

Fixed this for my python program using: `import os os._exit(0)` Instead of sys.exit(0) No exit error "RESETUP set from recv thread" Might be brute force to create a graceful exit...

I understand what you are describing. That's what I expected. I placed a logger.warning() to get this in protocols.py data_received() at the elif msg.startswith("POST /upnp/control/basicevent1 HTTP/1.1") I did this to...

Thank so much. Trying to get you what I am referring to. First, Fauxmo works fine with Alexa, so that is not an issue. It works as expected. *** I...

Yes you understand correctly: all the 3 instances are correct. I am using the Espressif library 3.0.0 (the latest) with HTTPclient POST call. Re Ncat, I' not sure how to...

Update on sending a POST to Fauxmo: What I tested to see if the POST message comes through: A Curl from windows and another Raspberry Pi works. I did the...

Here is the code: ``` port = 49915 myIP = '192.168.XX.XXX' localhost = '127.0.0.1' import asyncio class EchoServerProtocol(asyncio.Protocol): def connection_made(self, transport): peername = transport.get_extra_info('peername') print('connection_made: Connection from {}'.format(peername)) self.transport =...