You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While running RPi_utils/RFSniffer I get negative numbers from my remote:
Received -1550055680
If I instead use pigpio as per the instructions on sending rf codes with pigpio, I see that it is a 32-bit code which was not being correctly read:
code=2325481216 bits=32
I can transmit the correct code if below the line tx=_433.tx(pi, gpio=TX) I add the line:
tx.set_bits(32)
The text was updated successfully, but these errors were encountered:
While running
RPi_utils/RFSniffer
I get negative numbers from my remote:If I instead use
pigpio
as per the instructions on sending rf codes with pigpio, I see that it is a 32-bit code which was not being correctly read:code=2325481216 bits=32
I can transmit the correct code if below the line
tx=_433.tx(pi, gpio=TX)
I add the line:The text was updated successfully, but these errors were encountered: