You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`custom_components/blueprint/__init__.py` | The component file for the integration.
32
-
`custom_components/blueprint/binary_sensor.py` | Binary sensor platform for the integration.
33
-
`custom_components/blueprint/config_flow.py` | Config flow file, this adds the UI configuration possibilities.
34
-
`custom_components/blueprint/const.py` | A file to hold shared variables/constants for the entire integration.
35
-
`custom_components/blueprint/manifest.json` | A [manifest file](https://developers.home-assistant.io/docs/en/creating_integration_manifest.html) for Home Assistant.
36
-
`custom_components/blueprint/sensor.py` | Sensor platform for the integration.
37
-
`custom_components/blueprint/switch.py` | Switch sensor platform for the integration.
`custom_components/{{ cookiecutter.domain_name }}/__init__.py` | The component file for the integration.
32
+
`custom_components/{{ cookiecutter.domain_name }}/binary_sensor.py` | Binary sensor platform for the integration.
33
+
`custom_components/{{ cookiecutter.domain_name }}/config_flow.py` | Config flow file, this adds the UI configuration possibilities.
34
+
`custom_components/{{ cookiecutter.domain_name }}/const.py` | A file to hold shared variables/constants for the entire integration.
35
+
`custom_components/{{ cookiecutter.domain_name }}/manifest.json` | A [manifest file](https://developers.home-assistant.io/docs/en/creating_integration_manifest.html) for Home Assistant.
36
+
`custom_components/{{ cookiecutter.domain_name }}/sensor.py` | Sensor platform for the integration.
37
+
`custom_components/{{ cookiecutter.domain_name }}/switch.py` | Switch sensor platform for the integration.
38
38
`CONTRIBUTING.md` | Guidelines on how to contribute.
39
39
`example.png` | Screenshot that demonstrate how it might look in the UI.
40
40
`info.md` | An example on a info file (used by [hacs][hacs]).
@@ -66,21 +66,19 @@ to ensure Home Assistant update the code of the python library. (example `"requi
If you want to contribute to this please read the [Contribution guidelines](CONTRIBUTING.md)
126
124
125
+
## Credits
126
+
127
+
This project was generated from [@oncleben31](https://github.com/oncleben31)'s [Home Assistant Custom Component Cookiecutter](https://github.com/oncleben31/cookiecutter-homeassistant-custom-component) template.
128
+
129
+
Code template was mainly taken from [@Ludeeus](https://github.com/ludeeus)'s [blueprint][blueprint] template
1. In the HA UI go to "Configuration" -> "Integrations" click "+" and search for "Blueprint".
29
29
30
-
{% endif %}
30
+
{{ "{% endif %}" }}
31
31
32
32
33
33
## Configuration is done in the UI
34
34
35
35
<!---->
36
36
37
+
## Credits
38
+
39
+
This project was generated from [@oncleben31](https://github.com/oncleben31)'s [Home Assistant Custom Component Cookiecutter](https://github.com/oncleben31/cookiecutter-homeassistant-custom-component) template.
40
+
41
+
Code template was mainly taken from [@Ludeeus](https://github.com/ludeeus)'s [blueprint][blueprint] template
0 commit comments