
I am running Domoticz v2.3456, and trying to make Siri work.
So far, i have done this :
Code: Select all
According to the wiki, i did everything, with no errors. But when trying to run, nothing happens ?
git clone https://github.com/nfarina/homebridge.git
cd homebridge
git submodule init
git submodule update
npm install
nano config.json, and pasted this into that file...
{
"description": "Configuration file for Domoticz platform.",
"platforms": [
{
"platform": "Domoticz",
"name": "Domoticz",
"server": "127.0.0.1",
"port": "8080",
"roomid": <IDX Value>,
"loadscenes": 0
}
],
"accessories": [
]
}
Changed the IDX value to 2 according to my "room"
So when executing npm run start, nothing happens... look at my console output :
pi@HomeBox ~/homebridge $ ls
bin config.json config-sample.json example-plugins lib LICENSE node_modules package.json README.md
pi@HomeBox ~/homebridge $ npm run start
pi@HomeBox ~/homebridge $ ps aux | grep avahi
avahi 12570 0.0 0.5 3388 2552 ? S 07:28 0:05 avahi-daemon: running [HomeBox.local]
avahi 12571 0.0 0.3 3388 1512 ? S 07:28 0:00 avahi-daemon: chroot helper
pi 23774 0.0 0.3 3548 1796 pts/1 S+ 10:28 0:00 grep --color=auto avahi
pi@HomeBox ~/homebridge $ ps aux | grep domoticz
root 2583 0.7 2.6 173852 12856 ? Ssl Dec26 34:06 /home/pi/domoticz/domoticz -daemon -www 8080 -sslwww 443
pi 23777 0.0 0.3 3548 1796 pts/1 S+ 10:28 0:00 grep --color=auto domoticz
pi@HomeBox ~/homebridge $
I am sure missing something... ?
Rgds; Jesper