diff --git a/atom.xml b/atom.xml index 8f79bc31bc..d498056a43 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
The 1-Wire bus can be connected directly to the IO pins of Raspberry Pi or using dedicated interface adapter (e.g DS9490R). When an interface adapter is used, sensors can be accessed on Linux hosts via owfs 1-Wire file system. When using an interface adapter and the owfs, the ‘mount_dir’ option must be configured to correspond a directory, where owfs device tree has been mounted. If you are using Raspberry Pi and IO pin connected bus setup, don’t use the ‘mount_dir’ option.
+The 1-Wire bus can be connected directly to the IO pins of Raspberry Pi or using dedicated interface adapter (e.g DS9490R).
+In order ot setup 1-Wire support on Raspberry Pi, you’ll need to edit /boot/config.txt
following this documentation. Don’t use the mount_dir
option.
When an interface adapter is used, sensors can be accessed on Linux hosts via owfs 1-Wire file system. When using an interface adapter and the owfs, the mount_dir
option must be configured to correspond a directory, where owfs device tree has been mounted.
This component has been modified to work with devices with multiple sensors which will cause a discontinuity in recorded values. Existing devices will receive a new ID and therefore show up as new devices.
If you wish to maintain continuity it can be resolved in the database by renaming the old devices to the new names.
-Connect to your database using the instructions from https://home-assistant.io/docs/backend/database/
-Check the names of sensors:
+Connect to your database using the instructions from home-assistant.io/docs/backend/database/. Check the names of sensors:
+sql
SELECT entity_id, COUNT(*) as count FROM states GROUP BY entity_id ORDER BY count DESC LIMIT 10;
+
Alter the names of sensors using the following examples:
-UPDATE states SET entity_id=’sensor.
sql
+UPDATE states SET entity_id='sensor.<sensor_name>_temperature' WHERE entity_id LIKE 'sensor.<sensor_name>%' AND attributes LIKE '%\u00b0C%';
+UPDATE states SET entity_id='sensor.<sensor_name>_pressure' WHERE entity_id LIKE 'sensor.<sensor_name>%' AND attributes LIKE '%mb%';
+UPDATE states SET entity_id='sensor.<sensor_name>_humidity' WHERE entity_id LIKE 'sensor.<sensor_name>%' AND attributes LIKE '%%%' ESCAPE '';
+
+Remember to replace <sensor_name>
with the actual name of the sensor as seen in the SELECT
query.
+
+To enable One wire sensors in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
sensor:
diff --git a/sitemap.xml b/sitemap.xml
index fc3ff88b2a..98ffc08ded 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -3442,7 +3442,7 @@
https://home-assistant.io/components/switch.hook/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/cookbook/automation_for_rainy_days/
@@ -4078,99 +4078,99 @@
https://home-assistant.io/docs/autostart/init.d/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/api/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/configuration/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/example_apps/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/installation/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/operation/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/reboot/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/running/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/tutorial/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/updating/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/appdaemon/windows/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/certificates/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/hadashboard/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/hass-configurator/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/ios/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/nginx/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/notebooks/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/scenegen/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/ecosystem/synology/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/tools/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/tools/dev-tools/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/tools/hass/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/docs/tools/scripts/
-2017-10-17T19:12:22+00:00
+2017-10-17T19:23:07+00:00
https://home-assistant.io/faq/after-upgrading/
@@ -5230,62 +5230,62 @@
https://home-assistant.io/demo/frontend.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/index.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-event.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-info.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-service.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-state.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-template.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/panels/ha-panel-history.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/panels/ha-panel-iframe.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/panels/ha-panel-logbook.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/demo/panels/ha-panel-map.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/googlef4f3693c209fe788.html
-2017-10-17T19:11:25+00:00
+2017-10-17T19:22:26+00:00
https://home-assistant.io/static/fonts/roboto/DESCRIPTION.en_us.html
-2017-10-17T19:11:26+00:00
+2017-10-17T19:22:27+00:00
https://home-assistant.io/static/fonts/robotomono/DESCRIPTION.en_us.html
-2017-10-17T19:11:26+00:00
+2017-10-17T19:22:27+00:00
https://home-assistant.io/static/mdi-demo.html
-2017-10-17T19:11:26+00:00
+2017-10-17T19:22:27+00:00