Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

my.openHAB Persistence

Sigi edited this page Dec 31, 2016 · 8 revisions

Note: Service will be shut down on 31st Jan 2017. New openHAB cloud connector service: openHAB Cloud Connector

What is my.openHAB?

my.openHAB.org is a cloud service provided to you by openHAB and is well worth having a look at. After installing and registering, you can send Items and Events to the cloud where you can view them on the site. Whilst that is not the most exciting thing in the world, it does then allow you to have access to your openHAB installation outside of your network via the iOS and Android apps without having to open up your home network.

It also allows you to connect to IFTTT and all the hundreds of channels they offer. Including IFTTT's own very handy Maker Channel. Which essentially gives you a REST API through IFTTT into openHAB. Again without having to set up the network and port forwarding yourself.

Getting started

Registration and installation

First signup at my.openhab.org and follow the docs to install the binding, register and configure your setup.

Configuring the .persist file

Create a file called myopenhab.persist in your persistence folder, and define the policy to store your data.

This example policy on the my.openHAB site will persist every item, and every change made to that item:

Strategies {
    default = everyChange
}
Items {
    * : strategy = everyChange
}

Selective persistence

The above example taken from the my.openHAB docs will persist all your items, and log every change to my.openHAB cloud.

This means if you change the name of an item, the old "item" will still appear on my.openHAB cloud and also appear in your IFTTT dropdown. Also, if you set up my.openHAB with the demo configuration still setup, all of those items will also appear.

Any items such as a PIR or any type of sensor that sends constant updates to openHAB and will quickly clutter it up. So you probably don't need or want, the thousands of updates that will be logged to my.openHAB if you catchall.

People starting out should be aware of this due to the immense experimenting and testing that comes with learning openHAB. You will quickly find that the item list on my.openHAB and IFTTT will contain many items that you no longer need.

Selectively adding specific items to my.openHAB

Create a group to identify your items

Group    gMyOpenHAB

Then add items you know you need to log to that group. This will greatly help keep things under control.

e.g. Here only the on/off state of the switch is logged. There was no need to log every brightness state

Switch Light_GF_Lounge_All    "Lounge All" (GF_Lounge, gMyOpenHAB) {milight="bridge01;6"}
Dimmer Light_GF_Lounge_All_B  "Lounge All Brightness" (GF_Lounge) {milight="bridge01;6;brightness;27"}

Finally, configure your my.openHAB persistence file myopenhab.persist to only persist items in the group

Strategies {
    default = everyChange
}
Items {
    gMyOpenHAB* : strategy = everyChange
}

Removing data from my.openHAB

There is a method to remove all data and from the my.openHAB cloud but no way to do it selectively. You can remove it all at once, or not at all. To do so, log into http://my.openhab.org, mouseover your account email address (top right) and select account from the dropdown. The button you want is under Dangerous actions labeled Delete Items and Events

IFTTT and other cloud based services

Sending persistence data to my.openHAB is required if you use any data-driven cloud functions, IFTTT integration for example.

This means that if you want to control the brightness (or any item) using the openHAB IFTTT Channel, be sure that the item is in the gMyOpenHAB group, or it won't appear in the dropdown on IFTTT.

Please read the https://my.openhab.org/docs/ifttt for more details.

It is also required by the apps when used outside your local network.

Official documentation

REST through my.openHAB

You can also use REST through my.openHAB.org.

e.g.

To get the state of all items (remember my.openHAB will only display items that you have persisted to it)

https://my.openhab.org/rest/items

You can specify:

https://my.openhab.org/rest/items/Light_FF_Office_Desk

You can also send commands:

https://my.openhab.org/CMD?Light_FF_Office_Desk=TOGGLE
https://my.openhab.org/CMD?Light_FF_Office_Ceiling=ON

Installation


User Interfaces


Community

(link to openHAB forum)

Development



Misc


Samples

A good source of inspiration and tips from users gathered over the years. Be aware that things may have changed since they were written and some examples might not work correctly.

Please update the wiki if you do come across any out of date information.

Use case examples

Collections of Rules on a single page

Single Rules

Scripts


Release Notes

Clone this wiki locally