├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── IR_signal_plot.png ├── LEGO_RCX.ir ├── LEGO_RCX.json ├── LICENSE ├── README.md ├── convert.py └── plot_signal.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maehw/SerialHex2FlipperZeroInfrared/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.ir 2 | -------------------------------------------------------------------------------- /IR_signal_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maehw/SerialHex2FlipperZeroInfrared/HEAD/IR_signal_plot.png -------------------------------------------------------------------------------- /LEGO_RCX.ir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maehw/SerialHex2FlipperZeroInfrared/HEAD/LEGO_RCX.ir -------------------------------------------------------------------------------- /LEGO_RCX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maehw/SerialHex2FlipperZeroInfrared/HEAD/LEGO_RCX.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maehw/SerialHex2FlipperZeroInfrared/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maehw/SerialHex2FlipperZeroInfrared/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maehw/SerialHex2FlipperZeroInfrared/HEAD/convert.py -------------------------------------------------------------------------------- /plot_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maehw/SerialHex2FlipperZeroInfrared/HEAD/plot_signal.py --------------------------------------------------------------------------------