-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.j2
83 lines (61 loc) · 2.15 KB
/
README.j2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Home Assistant Configuration
Welcome to my Home Assistant Configuration!
I used to do a lot in YAML but since the push for GUI usage from Home Assistant, my configuration got slimmer too.
## Home Assistant Details
### Version
{{ states('sensor.current_version') }}
### Stats
Description | Count
-- | --
Number of entities | {{states | count}}
Number of sensors | {{states.sensor | count}}
## Hardware
### Hardware List
For the full hardware list, see my [home repository](https://github.com/DevSecNinja/home?tab=readme-ov-file#hardware).
### USB
USB Device name | Host identifier short | Description | Purpose
-- | -- | -- | -- |
usb0 | 1cf1 | ConBee II | Zigbee Stick
usb1 | 10c4 | WiMOD iM871A | wmbusmeters stick for heat/water sensors
usb2 | 0403 | FT232R USB UART | DSMR Smart Energy Meter
usb3 | 2357 | TP-Link UB500 | Bluetooth Adapter
usb4 | 1a86 | USB Serial | Various connections such as ESP32
## My installed extensions
### Add-ons
{%- set addons_list = addons | sort(attribute='name') %}
{%- if addons_list %}
{%- for component in addons_list %}
- {{component.name}}
{%- endfor %}
{%- else %}
None
{%- endif %}
### Custom integrations
{%- set integrations = hacs_components | selectattr('category', 'equalto', 'integration') | sort(attribute='name') %}
{%- if integrations %}
{%- for component in integrations %}
- [{{component.name}}]({{component.documentation}})
{%- endfor %}
{%- else %}
None
{%- endif %}
### Lovelace plugins
{%- set plugins = hacs_components | selectattr('category', 'equalto', 'plugin') | sort(attribute='name') %}
{%- if plugins %}
{%- for component in plugins %}
- [{{component.name}}]({{component.documentation}})
{%- endfor %}
{%- else %}
None
{%- endif %}
### Themes
{%- set themes = hacs_components | selectattr('category', 'equalto', 'theme') | sort(attribute='name') %}
{%- if themes %}
{%- for component in themes %}
- [{{component.name}}]({{component.documentation}})
{%- endfor %}
{%- else %}
None
{%- endif %}
***
Generated at {{ states('sensor.date_time_utc') }} UTC by the [custom readme integration](https://github.com/custom-components/readme) based on [my configuration](templates/README.j2).