├── README.md ├── __init__.py ├── alarm_control_panel.py ├── binary_sensor.py ├── config_flow.py ├── const.py ├── contact_id.yaml ├── hacs.json ├── manifest.json ├── sensor.py ├── services.yaml ├── siren.py ├── strings.json ├── switch.py └── translations ├── en.json └── pt-BR.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/__init__.py -------------------------------------------------------------------------------- /alarm_control_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/alarm_control_panel.py -------------------------------------------------------------------------------- /binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/binary_sensor.py -------------------------------------------------------------------------------- /config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/config_flow.py -------------------------------------------------------------------------------- /const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/const.py -------------------------------------------------------------------------------- /contact_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/contact_id.yaml -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/hacs.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/manifest.json -------------------------------------------------------------------------------- /sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/sensor.py -------------------------------------------------------------------------------- /services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/services.yaml -------------------------------------------------------------------------------- /siren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/siren.py -------------------------------------------------------------------------------- /strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/strings.json -------------------------------------------------------------------------------- /switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/switch.py -------------------------------------------------------------------------------- /translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/translations/en.json -------------------------------------------------------------------------------- /translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernac03/JFL_ACTIVE/HEAD/translations/pt-BR.json --------------------------------------------------------------------------------