Generic Presence Detection

tl;dr: It is a 1.9 binding which means it works in OH 1.8 and OH 2.0. The above code is running in OH 2.0 but should work in 1.8 unchanged.

I agree, it is confusing. We are in a state of transition right now but OH 2 is rapidly maturing to the point where it will soon become the default assumed version talked about.

In this particular case, there will never be an update of the core of OH 1.8 to version 1.9. However, most of the bindings and add-ons have continued development. These bindings and add-ons are referred to as version 1.9. You can (and probably should in some cases) run 1.9 version bindings in OH 1.8.3.

In OH 2 there is a new architecture and a new way for bindings and add-ons to work. There is also a compatibility layer which allows one to run older 1.x style bindings inside OH 2. As it stands right now as of this writing, there are more 1.9 bindings that are part of the official distribution than 2.0 bindings, including some really essential bindings like MQTT and HTTP. Though that is going to change soon.

In the Migration Tutorial I actually used an approach that lets one first swap out the core to OH 2 but remain on 1.9 version bindings. And then gradually transition to the 2.0 version of the bindings.

So in short, if it says version 1.9 it will work in 1.8.3 and 2.0.

So here are a few rules of thumb I would use to determine if something posted is applicable to OH 1.8.3 if the:

  • binding/add-on is documented on the wiki as opposed to http://docs.openhab.org
  • version of the binding or add-on starts with a 1, e.g. 1.9
  • example rule imports things from org.openhab it was written for 1.x

It only applies to OH 2.0 if it:

  • talks about PaperUI
  • references Things and/or Channels
  • references BasicUI or ClassicUI
  • references Karaf or the Karaf Console

I hope this helps.

2 Likes

Thank you very much for this clarificationā€¦ I do appreciate it, and it makes the whole thing much clearer.

Looks interesting! How about also removing the Present_Timer item and adding the expire to the main Present switch?

The problem with that is most of my sensors only report when there is a change. Furthermore the groupā€™s state doesnā€™t change very frequently. Therefore there isnā€™t an event to keep rescheduling the timer. You could add a rule that triggers every few minutes to refresh the timer by sending an ON if the sensors are still on, but if you do that you may as well implement the timer in that rule.

In the end, you could use Present as the timer so long as ON keeps getting sent to it while you are present every <n minutes where n is the timer length. That isnā€™t the case with the code above.

1 Like

Hi rick,
Thanks for that great tutorial.
I was wondering what kind of presence sensors you are using.

I have been struggling to the iPhone as presence detector and using the network binding. But this did not work reliably.

Remember to use the search function first :wink:

Hi Tom,
Thanks for the hint. I am on Windows.

I use a combo of sensors none of which am I particularly happy about their performance for detecting iPhones.

I use the Network binding to ping devices (work like a champ for Android).

Iā€™ve recently implemented the hping3 sensor @ThomDietrich linked to which Iā€™m finding works no better than Network. Iā€™m not sure if I need to adjust the timing or something else but so far Iā€™ve never seen the hping3 detect the device present when Network did not and visa versa. Of course, the hping3 may be making Network work better.

Iā€™ve a Pi 3 running reelyActive. So far it it detects BTLE devices like a champ (my fitbit, wifeā€™s Dexcom and Pebble watch) but it detects the iPhone and my Android very poorly. But this may be caused more because I canā€™t figure out which device is which so I might not have identified the IDs of the devices I care about. I do notice that every time someone walks by the house reelyActive picks them up. Iā€™m going to watch it some more but this might be a secondary way to detect when someone comes to the door (package delivery). What would be great is if I could find some sort of way to map the BT address of a device, which I can discover on my own, with the reelyActive deviceID.

Iā€™ve also three Pis and my ā€œserverā€ (old laptop) each outfitted with BT and I run a custom script which does something similar to reelyActive, only at a more primitive level, to detect the phones. This works reasonably well though because it uses a sort of moving average to determine presence it isnā€™t super responsive. Sometimes it also gets stuck reporting a device as ON when it is no longer present,

Iā€™ve not spent a lot of time trying to figure out the problems I have with each of these. Iā€™ve recently had something major go wrong in my office which has really messed up my electronics in strange and inexplicable ways. My monitor died (probably a failed capacitor), the BT on my laptop server can no longer be found, I can no longer access port 443 on the laptop server despite there being no IP tables rules block that port and netstat clearly showing that nginx is listening on that port for all addresses. All my network gear had to be reset (thank goodness for dd-wrtā€™s backup feature) and I had to remount all of my drives. I donā€™t know if it was a power surge or an EMP but needless to say, I currently have some bigger problems to figure out right now so Iā€™ve all but disabled my presence detection.

Anyway, as for being on Windows, hping is available on Windows. It will probably require some powershell scripting to make it work but it is not impossible.

4 Likes

@Rick. Thanks and wonderful as always.

1 Like

I hope you can recover fully from it allā€¦ sounds weird. Good luck.

@rlkoshak Thanks for the mega tutorial, however i have a question, my phones (android, two different makes) keep being marked as ā€œnot connectedā€ by the network binding, despite still being on wifi (and visible on my router as connected), they do then come back but they drop in and out all the time. Does my Thing file look like a valid use case or do i need to tweak something.

Thing network:device:JamesPhone [ hostname=ā€œ192.168.1.19ā€, port=ā€œ0ā€, retry=ā€œ1ā€, timeout=ā€œ5000ā€, refresh_interval=ā€œ60000ā€, use_system_ping=ā€œfalseā€, dhcplisten=ā€œtrueā€ ]

Or is this just normal?

I had the same problem with Android phones running Android 6 and above. I think they stop responding to pings when in doze mode.

I use the arp-scan tool combined with the exec binding for detecting phones. For a Nexus 6p, Nexus 5x and Galaxy S5 this works perfectly and always detects the phones (I had to up the number of retries to get the Galaxy S5 to respond reliably)

I think this is normal. Hence the anti-flapping logic and the use of alternative sensors in my setup.

Yes itā€™s normal (from a technical stand point) but there are of course ways around that. @MikeJMajor refered to the following solution I suppose. Itā€™s reported to be quite reliable between many devices, including Androids and iPhones in doze/deepsleep mode:

Not convinced! ā€¦ or beg to differā€¦

I run this set-up and it does not switch to ā€˜not presentā€™, due to ARP retaining the IP.
ā€¦ even (two) days laterā€¦

Iā€™ve not done enough experiments to prove it, but I think hoping combined with Network binding might be a viable approach. I noticed when I was playing with it that periodically hpinging the iPhone made the Network Item linked to its ip work more reliably.

Also, if I remember correctly doesnā€™t the script first clear the arp table before doing the hping?

Very inspiring. Will try to imitate.
Thanks!

Based on this conversation, I decided to change my script to that from SeaSide, because it loops through multiple IPs. Tested this arvo, and it works; also, and yes, because of clearing the arp entry for the relevant IP. Nice.
Also adopted the MQTT publish approach, as this is what I will be using (Architecturally) whenever possible.

From a rights perspective I had to use sudo in front of the arp entry deletion, and add openhab to the sudoers without password.

No network binding used for this.
So basically, the shell script is triggered by a rule.
The script publishes to mosquitto topic;
OH subscribes to mosquitto topic

1 Like

@Max_G
Glad it could help someone. I prefer to not invoke the polling to see if a device is available from within openhab, since
I run it every two minutes for several devices, IMO itā€™s better suited to be run outside openhab in a crond-job or similar.
You donā€™t have to give openhab permissions to all commands in the sudoers table you can add

username ALL=(ALL) NOPASSWD: /sbin/ip

to allow allow username to be able to execute ip (for flushing that is). Iā€™m sure you are aware of this, but just writing it since it seems a lot of people allow openhab to execute just about anything.

Regards, S

2 Likes

Just because Iā€™m curious: With the two iPhones in my house, as soon as I integrate the arp flush, the script doesnā€™t work reliable. Without this line, itā€™s pretty solid and only misses a beat from time to time.

When you guys say it works for you, do you also use iPhones or only Android?