Search found 3 matches
- Saturday 03 June 2017 21:53
- Forum: Bash / PowerShell / Batch etc.
- Topic: script for presence detection of a phone
- Replies: 49
- Views: 27794
Re: script for presence detection of a phone
I created a script to detect all devices on the network. Installation instructions are here: https://github.com/thijsdebets/networkdetectz/wiki It uses a combination of arpscan, ping and even supports bluetooth detection. I use it very succesfull to detect who is at home and to set the lights to TV ...
- Monday 23 May 2016 13:18
- Forum: PHP and all others
- Topic: Help connecting Omnik PV converter to Domoticz
- Replies: 6
- Views: 2586
Re: Help connecting Omnik PV converter to Domoticz
You might need to disable MySQL in Config.cfg:
[mysql]
# Enable for exporting to a mysql database
mysql_enabled = false
# Host where the mysql server is active
mysql_host = 127.0.0.1
mysql_user =
mysql_pass =
mysql_db =
[pvout]
[mysql]
# Enable for exporting to a mysql database
mysql_enabled = false
# Host where the mysql server is active
mysql_host = 127.0.0.1
mysql_user =
mysql_pass =
mysql_db =
[pvout]
- Sunday 17 April 2016 0:18
- Forum: Suggestions
- Topic: [suggestion] ARP-Scan instead of ping as system alive checker.
- Replies: 9
- Views: 3456
Re: [suggestion] ARP-Scan instead of ping as system alive checker.
I wrote a shell script for my Raspberry Pi 2 to do this. It uses arp-scan and a table to match discovered mac-addresses to actual dynamic ip-addresses and switches devices off on Domoticz when they are not discovered any more for a couple of minutes. Install arp-scan: sudo apt-get install arp-scan ...