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
Forgive me if I'm in the wrong place to be but I'll post nonetheless in the hope for some answers.
I'm able to printout this "flipper.ir.rx(timeout=5)" as shown:
NECext, A:0xEF00, C:0xFD02
------------------------------------------------------------------------------------------
My question is, is this the correct setup for tx?
flipper.ir.tx(protocol="NECext", hex_address="EF00", hex_command="FD02")
------------------------------------------------------------------------------------------
I had to revise several times on account of errors:
- "NECext" protocol is not available (according to pyFlipper)
- AssertionError: Available protocols: ['NEC', 'NEC42', 'NEC42ext', 'Samsung32', 'RC6', 'RC5', 'RC5X', 'SIRC', 'SIRC15', 'SIRC20']
- Address & Command's length of bytes need to be 8.
------------------------------------------------------------------------------------------
Here's my revision by far:
flipper.ir.tx(protocol="NEC", hex_address="0000EF00", hex_command="0000FD02") # Four zeros in leftmost
flipper.ir.tx(protocol="NEC", hex_address="EF000000", hex_command="FD020000") # Four zeros in rightmost
------------------------------------------------------------------------------------------
Upon testing it, it didn't produce errors but the end-device did not responded by signals. The IR did flickered (as visibly tested by my phone camera). So, my guess is it's the protocol that needs to be NECext.
------------------------------------------------------------------------------------------
...OR...
I need to figure out how to translate this (( NECext, A:0xEF00, C:0xFD02 )) into this:
flipper.ir.tx_raw(frequency=, duty_cycle=, samples=[])
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: