├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── eg4_inverter │ ├── __init__.py │ ├── binary_sensor.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── definitions.py │ ├── manifest.json │ └── sensor.py ├── image ├── 01.png ├── 02.png ├── 03.png ├── 04.png ├── 05.png └── logo.png └── tests ├── __init__.py ├── test_config_flow.py └── test_sensor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/eg4_inverter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/custom_components/eg4_inverter/__init__.py -------------------------------------------------------------------------------- /custom_components/eg4_inverter/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/custom_components/eg4_inverter/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/eg4_inverter/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/custom_components/eg4_inverter/config_flow.py -------------------------------------------------------------------------------- /custom_components/eg4_inverter/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/custom_components/eg4_inverter/const.py -------------------------------------------------------------------------------- /custom_components/eg4_inverter/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/custom_components/eg4_inverter/coordinator.py -------------------------------------------------------------------------------- /custom_components/eg4_inverter/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/custom_components/eg4_inverter/definitions.py -------------------------------------------------------------------------------- /custom_components/eg4_inverter/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/custom_components/eg4_inverter/manifest.json -------------------------------------------------------------------------------- /custom_components/eg4_inverter/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/custom_components/eg4_inverter/sensor.py -------------------------------------------------------------------------------- /image/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/image/01.png -------------------------------------------------------------------------------- /image/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/image/02.png -------------------------------------------------------------------------------- /image/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/image/03.png -------------------------------------------------------------------------------- /image/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/image/04.png -------------------------------------------------------------------------------- /image/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/image/05.png -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/image/logo.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twistedroutes/eg4_inverter_ha/HEAD/tests/test_config_flow.py -------------------------------------------------------------------------------- /tests/test_sensor.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------