Open tagraf opened 1 year ago
##########################################
flipper.ir.rx(timeout=5)
# OUTPUT
Receiving INFRARED...
Press Ctrl+C to abort
NECext, A:0xEF00, C:0xFD02
NECext, A:0xEF00, C:0xFD02 R
NECext, A:0xEF00, C:0xFD02 R
>:
##########################################
flipper.storage.read(file="/ext/infrared/Aura_led.ir")
# OUTPUT
name: NECe_FD02
type: parsed
protocol: NECext
address: 00 EF 00 00
command: 02 FD 00 00
##########################################
I've tested with:
flipper.ir.tx(protocol="NECext", hex_address="00 EF 00 00", hex_command="02 FD 00 00")
Got failed, Protocol unavailable.
---
Tested with different protocols as well:
flipper.ir.tx(protocol="NEC", hex_address="00 EF 00 00", hex_command="02 FD 00 00") # FAILED (Not responsive)
flipper.ir.tx(protocol="NEC42", hex_address="00 EF 00 00", hex_command="02 FD 00 00") # FAILED (Not responsive)
flipper.ir.tx(protocol="NEC42ext", hex_address="00 EF 00 00", hex_command="02 FD 00 00") # FAILED (Not responsive)
---
Note the difference in command value (they're the same pressed button)
C:0xFD02 # flipper.ir.rx()
command: 02 FD 00 00 # flipper.storage.read(file="/ext/infrared/Aura_led.ir")