diff --git a/README.md b/README.md
index 5974760..ba6196a 100644
--- a/README.md
+++ b/README.md
@@ -60,18 +60,17 @@ type: markdown
content: >
## Devices
- | IP Address | MAC Address | Name | Type | Vendor |
- |------------|-------------|------|------|--------|
+ | IP Address | MAC Address | Custom Name | Custom Description | Hostname | Vendor |
+ |------------|-------------|-------------|--------------------|----------|--------|
{% for device in state_attr('sensor.network_scanner', 'devices') %}
- | {{ device.ip }} | {{ device.mac }} | {{ device.name }} | {{ device.type }} | {{ device.vendor }} |
+ | {{ device.ip }} | {{ device.mac }} | {{ device.name }} | {{ device.type }} | {{ device.hostname }} | {{ device.vendor }} |
{% endfor %}
```
This card will display a table with the IP Address, MAC Address, and Vendor of each device that has been scanned in your network. Name and Type are custom mapping provided by the user. Here's how it will look:
-
-
+
## Technical Details