diff --git a/atom.xml b/atom.xml index 7061078c5b..0c22afa226 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 https://home-assistant.io/ @@ -13,6 +13,55 @@ Octopress + + <![CDATA[Looking at the past]]> + + 2015-02-08T09:01:23-08:00 + https://home-assistant.io/blog/2015/02/08/looking-at-the-past + Ever since the launch of Home Assistant you have been able to track the state of your house. But the view has always been limited to what the current state is. Not what it was. Today we are going to change that by introducing two brand new components:

+ +
    +
  • Recorder component that will record every event to a SQLite database
  • +
  • History component that will query and aggregate the recorded events
  • +
+ + +

By adding this view into the past, we are adding an extra dimension into the state of your house. This brings great new possibilities for future features. The focus of todays release is on getting the recording component to you to start recording and getting some data. To show what is being recorded a view has been added that shows the last 24 hours of your house. Expect more extensive tools to explore your history in the future.

+ +

Adding history to the UI was a challenge on itself because the old UI did not support easy navigation. So to add to the awesomeness of this release, Home Assistant also got a face lift.

+ +

The history component will be enabled for new users by default. For current users, run scripts/update to upgrade to the latest version and add [history] to your home-assistant.conf file.

+ +

+ + + +

+ + + + +

+Events are saved in a local database. Google Graphs is used to draw the graph. Drawing is happening 100% in your browser - no data is transfered to anyone at any time. +

+ + + + + + + +

Tracking history is an exciting next step for Home Assistant and will power the next generation of features. Here a list of some of the cool things that can now be build:

+ +
    +
  • Time Machine: explore the state of your house at any point in the past
  • +
  • Smart Home: analyze behavior and use it to automate your house
  • +
  • Summarize usage of the different components of your house
  • +
+ +]]>
+
+ <![CDATA[Release notes for January 24, 2015]]> diff --git a/blog/2014/12/18/website-launched/index.html b/blog/2014/12/18/website-launched/index.html index 7a950032a3..946f1226ad 100644 --- a/blog/2014/12/18/website-launched/index.html +++ b/blog/2014/12/18/website-launched/index.html @@ -203,6 +203,12 @@ diff --git a/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html b/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html index 003d66c046..e815c4c5df 100644 --- a/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html +++ b/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html @@ -265,6 +265,12 @@ This article will try to explain how they all relate.

diff --git a/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html b/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html index 08d75c3aaa..648961f6ef 100644 --- a/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html +++ b/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html @@ -247,6 +247,12 @@ diff --git a/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html b/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html index aa96d4c839..1d8a7c2643 100644 --- a/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html +++ b/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html @@ -215,6 +215,12 @@ diff --git a/blog/2015/01/13/nest-in-da-house/index.html b/blog/2015/01/13/nest-in-da-house/index.html index c3c6203c08..ef6f4e3a44 100644 --- a/blog/2015/01/13/nest-in-da-house/index.html +++ b/blog/2015/01/13/nest-in-da-house/index.html @@ -222,6 +222,12 @@ diff --git a/blog/2015/01/24/release-notes/index.html b/blog/2015/01/24/release-notes/index.html index 414ddfce24..f1bf65c9fe 100644 --- a/blog/2015/01/24/release-notes/index.html +++ b/blog/2015/01/24/release-notes/index.html @@ -227,6 +227,12 @@ Home Assistant now supports --open-ui and --demo-mode diff --git a/blog/2015/02/08/looking-at-the-past/index.html b/blog/2015/02/08/looking-at-the-past/index.html new file mode 100644 index 0000000000..aa91ec89ac --- /dev/null +++ b/blog/2015/02/08/looking-at-the-past/index.html @@ -0,0 +1,338 @@ + + + + + + + + + + + + Looking at the past - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+ +
+ + +
+
+ +

Looking at the past

+ + + +
+ + + + + + + + + + + + + + + + + + + 1 minute reading time + + + + + + + + + Comments + +
+ +
+ + + + +

Ever since the launch of Home Assistant you have been able to track the state of your house. But the view has always been limited to what the current state is. Not what it was. Today we are going to change that by introducing two brand new components:

+ +
    +
  • Recorder component that will record every event to a SQLite database
  • +
  • History component that will query and aggregate the recorded events
  • +
+ + +

By adding this view into the past, we are adding an extra dimension into the state of your house. This brings great new possibilities for future features. The focus of todays release is on getting the recording component to you to start recording and getting some data. To show what is being recorded a view has been added that shows the last 24 hours of your house. Expect more extensive tools to explore your history in the future.

+ +

Adding history to the UI was a challenge on itself because the old UI did not support easy navigation. So to add to the awesomeness of this release, Home Assistant also got a face lift.

+ +

The history component will be enabled for new users by default. For current users, run scripts/update to upgrade to the latest version and add [history] to your home-assistant.conf file.

+ +

+ + + +

+ + + + +

+Events are saved in a local database. Google Graphs is used to draw the graph. Drawing is happening 100% in your browser - no data is transfered to anyone at any time. +

+ + + + + + + +

Tracking history is an exciting next step for Home Assistant and will power the next generation of features. Here a list of some of the cool things that can now be build:

+ +
    +
  • Time Machine: explore the state of your house at any point in the past
  • +
  • Smart Home: analyze behavior and use it to automate your house
  • +
  • Summarize usage of the different components of your house
  • +
+ + + +
+ + +
+

Comments

+
+
+
+ + +
+ + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/blog/archives/index.html b/blog/archives/index.html index 7110b6e451..57ea7637e1 100644 --- a/blog/archives/index.html +++ b/blog/archives/index.html @@ -22,7 +22,7 @@ - + @@ -105,6 +105,43 @@ + + + +
+ +
@@ -385,6 +422,12 @@ diff --git a/blog/categories/architecture/atom.xml b/blog/categories/architecture/atom.xml index 41d9e701c0..49aeaa9be0 100644 --- a/blog/categories/architecture/atom.xml +++ b/blog/categories/architecture/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: architecture | Home Assistant]]> - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 https://home-assistant.io/ diff --git a/blog/categories/architecture/index.html b/blog/categories/architecture/index.html index 57f5c70ee1..23c35804ab 100644 --- a/blog/categories/architecture/index.html +++ b/blog/categories/architecture/index.html @@ -197,6 +197,12 @@ diff --git a/blog/categories/component/atom.xml b/blog/categories/component/atom.xml index 827ff18c21..2b27c87238 100644 --- a/blog/categories/component/atom.xml +++ b/blog/categories/component/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: component | Home Assistant]]> - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 https://home-assistant.io/ @@ -13,6 +13,55 @@ Octopress + + <![CDATA[Looking at the past]]> + + 2015-02-08T09:01:23-08:00 + https://home-assistant.io/blog/2015/02/08/looking-at-the-past + Ever since the launch of Home Assistant you have been able to track the state of your house. But the view has always been limited to what the current state is. Not what it was. Today we are going to change that by introducing two brand new components:

+ +
    +
  • Recorder component that will record every event to a SQLite database
  • +
  • History component that will query and aggregate the recorded events
  • +
+ + +

By adding this view into the past, we are adding an extra dimension into the state of your house. This brings great new possibilities for future features. The focus of todays release is on getting the recording component to you to start recording and getting some data. To show what is being recorded a view has been added that shows the last 24 hours of your house. Expect more extensive tools to explore your history in the future.

+ +

Adding history to the UI was a challenge on itself because the old UI did not support easy navigation. So to add to the awesomeness of this release, Home Assistant also got a face lift.

+ +

The history component will be enabled for new users by default. For current users, run scripts/update to upgrade to the latest version and add [history] to your home-assistant.conf file.

+ +

+ + + +

+ + + + +

+Events are saved in a local database. Google Graphs is used to draw the graph. Drawing is happening 100% in your browser - no data is transfered to anyone at any time. +

+ + + + + + + +

Tracking history is an exciting next step for Home Assistant and will power the next generation of features. Here a list of some of the cool things that can now be build:

+ +
    +
  • Time Machine: explore the state of your house at any point in the past
  • +
  • Smart Home: analyze behavior and use it to automate your house
  • +
  • Summarize usage of the different components of your house
  • +
+ +]]>
+
+ <![CDATA[Nest in the house!]]> diff --git a/blog/categories/component/index.html b/blog/categories/component/index.html index bed2eee084..00e99da4d5 100644 --- a/blog/categories/component/index.html +++ b/blog/categories/component/index.html @@ -105,6 +105,43 @@ + + + +
+ +
@@ -271,6 +308,12 @@ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index 84875d730d..db934df321 100644 --- a/blog/categories/release-notes/atom.xml +++ b/blog/categories/release-notes/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: release-notes | Home Assistant]]> - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 https://home-assistant.io/ diff --git a/blog/categories/release-notes/index.html b/blog/categories/release-notes/index.html index 0e018129aa..507b385e3b 100644 --- a/blog/categories/release-notes/index.html +++ b/blog/categories/release-notes/index.html @@ -197,6 +197,12 @@ diff --git a/blog/categories/website/atom.xml b/blog/categories/website/atom.xml index 5f385e3f04..1e9543f50b 100644 --- a/blog/categories/website/atom.xml +++ b/blog/categories/website/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: website | Home Assistant]]> - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 https://home-assistant.io/ diff --git a/blog/categories/website/index.html b/blog/categories/website/index.html index 4e53d57229..1224382b8c 100644 --- a/blog/categories/website/index.html +++ b/blog/categories/website/index.html @@ -197,6 +197,12 @@ diff --git a/blog/index.html b/blog/index.html index 6e82ccb94f..561410eb11 100644 --- a/blog/index.html +++ b/blog/index.html @@ -22,7 +22,7 @@ - + @@ -87,6 +87,99 @@ +
+
+ +

+ Looking at the past +

+ + + +
+ + + + + + + + + + + + + + + + + + + 1 minute reading time + + + + + + + + + Comments + +
+ +
+ + + + +
+

Ever since the launch of Home Assistant you have been able to track the state of your house. But the view has always been limited to what the current state is. Not what it was. Today we are going to change that by introducing two brand new components:

+ +
    +
  • Recorder component that will record every event to a SQLite database
  • +
  • History component that will query and aggregate the recorded events
  • +
+ + +

By adding this view into the past, we are adding an extra dimension into the state of your house. This brings great new possibilities for future features. The focus of todays release is on getting the recording component to you to start recording and getting some data. To show what is being recorded a view has been added that shows the last 24 hours of your house. Expect more extensive tools to explore your history in the future.

+ +

Adding history to the UI was a challenge on itself because the old UI did not support easy navigation. So to add to the awesomeness of this release, Home Assistant also got a face lift.

+ +

The history component will be enabled for new users by default. For current users, run scripts/update to upgrade to the latest version and add [history] to your home-assistant.conf file.

+ +

+ + + +

+ + + + +

+Events are saved in a local database. Google Graphs is used to draw the graph. Drawing is happening 100% in your browser - no data is transfered to anyone at any time. +

+ + + + + + Read on → +
+ +
+
+ +
diff --git a/images/screenshots/component_history_24h.png b/images/screenshots/component_history_24h.png new file mode 100644 index 0000000000..9fc800c08f Binary files /dev/null and b/images/screenshots/component_history_24h.png differ diff --git a/sitemap.xml b/sitemap.xml index 8e7a0c80a4..97417beda8 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,5 +1,10 @@ + + https://home-assistant.io/blog/2015/02/08/looking-at-the-past/ + 2015-02-08T09:01:23-08:00 + 0.8 + https://home-assistant.io/blog/2015/01/24/release-notes/ 2015-01-24T18:36:00-08:00 @@ -32,169 +37,169 @@ https://home-assistant.io/developers/add_new_platform.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/developers/api.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/developers/architecture.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/automation.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/browser.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/chromecast.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/developers/creating_components.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/device_sun_light_trigger.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/device_tracker.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/discovery.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/downloader.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/developers/frontend.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/blog/ - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/ - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 1.0 https://home-assistant.io/blog/archives/ - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/developers/ - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/getting-started/ - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/ - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/keyboard.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/light.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/notify.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/simple_alarm.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/sun.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/switch.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/tellstick_sensor.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/thermostat.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/getting-started/troubleshooting.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7 https://home-assistant.io/components/wink.html - 2015-02-03T23:38:57-08:00 + 2015-02-08T09:04:38-08:00 weekly 0.7