Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
StreamZap receiver with other remotes?
StreamZap receiver with other remotes?
Is it possible to use the StreamZap USB receiver with remotes other than the StreamZap? I looked in the __init__.py and it seems the StreamZap remote uses the RC5 protocol. Is it possible to use the Panasonic protocol? Is there any documentation on irdata.dll?
- Bitmonster
- Site Admin
- Posts: 2239
- Joined: Mon Feb 06, 2006 10:28 pm
Re: StreamZap receiver with other remotes?
The receiver can receive other protocols, but since its sample time is relative high, not all protocols will work good. Panasonic might be to fast, but you can try if you get stable events.
The API doesn't offer more than what is used in the code:
The API doesn't offer more than what is used in the code:
Code: Select all
extern "C" __declspec(dllimport) BOOL sz_Open(void);
extern "C" __declspec(dllimport) BOOL sz_Close(void);
extern "C" __declspec(dllimport) BOOL sz_ReadFile(BYTE *pData, LPDWORD lpNumberOfBytesRead);
extern "C" __declspec(dllimport) void sz_Flush(void);
Please post software-related questions in the forum - PMs will only be answered, if really private, thanks!
Re: StreamZap receiver with other remotes?
Thanks for the prompt reply.
When I try the Panasonic remote, EG show: Streamzap.UE000000000000000000000000
Should I try modifying: SAMPLE_TIME = 0.000256
RC5 uses MSB-C while Panasonic uses LSB-C style, can that changed in the code?
Ie, are there other parameters to MyDecoder?
Where are the mapTable RC5_xxxx values defined? _hashlib.pyd?
thanks, kiwin
When I try the Panasonic remote, EG show: Streamzap.UE000000000000000000000000
Should I try modifying: SAMPLE_TIME = 0.000256
RC5 uses MSB-C while Panasonic uses LSB-C style, can that changed in the code?
Ie, are there other parameters to MyDecoder?
Where are the mapTable RC5_xxxx values defined? _hashlib.pyd?
thanks, kiwin
- Bitmonster
- Site Admin
- Posts: 2239
- Joined: Mon Feb 06, 2006 10:28 pm
Re: StreamZap receiver with other remotes?
Then the protocol is to fast for the receiver. You can't change the SAMPLE_TIME. It is fixed by the hardware.kiwin wrote: When I try the Panasonic remote, EG show: Streamzap.UE000000000000000000000000
Please post software-related questions in the forum - PMs will only be answered, if really private, thanks!