Search found 115 matches

by thebeetleuk
Tuesday 11 September 2018 0:45
Forum: Third party and supplementary tools
Topic: [MyDomoAtHome] Support thread
Replies: 1080
Views: 204749

Re: [MyDomoAtHome] Support thread

Running latest stable Domoticz 4.9700, suddenly today my http://IP_rpi:3002 works but my IP:3002/devices does not work. Any ideas? I'm getting this as well!! :( Feeling sad :( Not a solution but I have two RPIs at home, so ended up installing from fresh on one of them and pointing to the Domoticz ...
by thebeetleuk
Monday 10 September 2018 21:08
Forum: Third party and supplementary tools
Topic: [MyDomoAtHome] Support thread
Replies: 1080
Views: 204749

Re: [MyDomoAtHome] Support thread

EdddieN wrote: Tuesday 10 July 2018 23:11 Running latest stable Domoticz 4.9700, suddenly today my http://IP_rpi:3002 works but my IP:3002/devices does not work. Any ideas?
I'm getting this as well!! :( Feeling sad :(
by thebeetleuk
Tuesday 13 December 2016 13:40
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

all you really care about is the MAC address so should work fine even if its a rogue button :)
by thebeetleuk
Sunday 11 December 2016 22:39
Forum: iOS
Topic: homebridge-edomoticz Plugin
Replies: 1715
Views: 415118

Re: homebridge-edomoticz Plugin

Thanks. I'll start with a fresh image and try again. :)
by thebeetleuk
Sunday 11 December 2016 11:22
Forum: iOS
Topic: homebridge-edomoticz Plugin
Replies: 1715
Views: 415118

Re: homebridge-edomoticz Plugin

This is driving me mad :) Please help!! :) OK so I have installed a fresh image and recently got my amazon dash buttons up and running. All good :) Now on to Homebridge and I just cant get tings working correctly. I have npm and node installed as below. pi@raspberrypi:/ $ npm -v node4.0.3 pi ...
by thebeetleuk
Wednesday 07 December 2016 22:33
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

My code calling a bunch of dummy switches which in turn run a json command to perform the aciton I want. this way I know when its a dash button thats turned something on as it will show in the dummy switch log :) I used a case statement instead of a if else :) var dash_button = require('node-dash ...
by thebeetleuk
Wednesday 07 December 2016 22:31
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

Nice one on the battery. I wouldn't have thought it was a AAA inside even though I did think the device was a bit large. It will be interesting to see how long these last. I suspect this will very much depend on usage :)
by thebeetleuk
Wednesday 07 December 2016 22:29
Forum: Switches and Scenes
Topic: 2 gang 2 way switch - Where can I get one?
Replies: 2
Views: 1081

2 gang 2 way switch - Where can I get one?

Hi All, I have a 2 gang way hall switch with 10 LED's down stairs and 1 light up stairs. I want to convert this to a remote control switch and I'm looking for advice. I use the http://www.rfxcom.com/RFXtrx433E-USB-43392MHz-Transceiver/en and a Pi as my controller so would like something that would ...
by thebeetleuk
Tuesday 06 December 2016 15:13
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

Mike, I'll post my script later but I was thinking as an improvement to the script I am thinking about creating a dummy button for each dash button. so then when I have set it up initially I don't need to edit the file. From that I can just use the json queries in the on and off actions on that ...
by thebeetleuk
Monday 05 December 2016 23:01
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

go it... in the /etc/rc.local file I added the line. seems to have done the trick. sudo node /home/pi/node_modules/node-dash-button/node-dash.js & I did notice this created 2 processes: root 444 1 0 21:55 ? 00:00:00 sudo node /home/pi/node_modules/node-dash-button/node-dash.js root 465 444 3 21:55 ...
by thebeetleuk
Monday 05 December 2016 22:43
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

ok so next question.. I have set this up and is working... How do I get the program to launch on boot of the Pi? pi@raspberrypi:~/node_modules/node-dash-button $ sudo node node-dash.js I'm a bit of a noob when it comes to the pi :) I have checked rc.local but I cant see where Domoticz is stating on ...
by thebeetleuk
Saturday 03 December 2016 11:07
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

Just curious, what are the advantages of the API over Json calls?
by thebeetleuk
Saturday 03 December 2016 10:06
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

got it working!

had to install requestify. doh!

Code: Select all

npm install requestify
once done then it all works :)
by thebeetleuk
Friday 02 December 2016 18:05
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

ok so creating a test file "node-test.js" with the contents "console.log('hello world');" and running "sudo node node-test.js" returns the desired results :) so it must be the dependencies within the code thats throwing the error. Error: Cannot find module 'requestify' <---- Is this the issue? cant ...
by thebeetleuk
Thursday 01 December 2016 1:59
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

sudo npm update -g

This didn't work after a reboot. Now stuck again :(
by thebeetleuk
Thursday 01 December 2016 1:46
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

ok so I have read a bit more and have created a file called node-dash.js with some of the suggested code in this. Then I executed with sudo node node-dash.js Unfortunately I get an error :( module.js:442 throw err; ^ Error: Cannot find module 'requestify' at Function.Module._resolveFilename (module ...
by thebeetleuk
Thursday 01 December 2016 0:36
Forum: Other questions and discussions
Topic: New kind of Amazon Dash button to start tasks
Replies: 34
Views: 10343

Re: New kind of Amazon Dash button to start tasks

Hi All, I'm just trying to get my dash button setup and running. As usual I'm being a bit thick in terms of some of the unix setup. So far I have done the following: https://github.com/hortinstein/node-dash-button # Dependancy on libpcap for reading packets sudo apt-get install libpcap-dev # This ...