├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── circa ├── __init__.py ├── __main__.py ├── cli.py ├── core.py ├── devices │ ├── __init__.py │ └── broadlink.py ├── formats │ ├── broadlink.py │ ├── nec.py │ ├── pronto.py │ └── rc5.py └── util.py └── pyproject.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/README.md -------------------------------------------------------------------------------- /circa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/__init__.py -------------------------------------------------------------------------------- /circa/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/__main__.py -------------------------------------------------------------------------------- /circa/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/cli.py -------------------------------------------------------------------------------- /circa/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/core.py -------------------------------------------------------------------------------- /circa/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circa/devices/broadlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/devices/broadlink.py -------------------------------------------------------------------------------- /circa/formats/broadlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/formats/broadlink.py -------------------------------------------------------------------------------- /circa/formats/nec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/formats/nec.py -------------------------------------------------------------------------------- /circa/formats/pronto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/formats/pronto.py -------------------------------------------------------------------------------- /circa/formats/rc5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/formats/rc5.py -------------------------------------------------------------------------------- /circa/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/circa/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcan/circa/HEAD/pyproject.toml --------------------------------------------------------------------------------