Search found 8 matches

by HarryDutch
Wednesday 12 April 2017 10:43
Forum: Speech & Voice Systems
Topic: Amazon Echo to Domoticz Bridge: switches, sensors & more
Replies: 715
Views: 139091

Re: Amazon Echo to Domoticz Bridge: switches, sensors & more

When signing up for an AWS account you need to enter your credit card information. To be honest I'm quite reluctant to leave my credit card information on the internet. I already know that a prepaid credit card is not accepted. Does anyone of you know another way to get an AWS account without a ...
by HarryDutch
Wednesday 12 April 2017 9:59
Forum: Speech & Voice Systems
Topic: Amazon Echo to Domoticz Bridge: switches, sensors & more
Replies: 715
Views: 139091

Re: Amazon Echo to Domoticz Bridge: switches, sensors & more

When signing up for an AWS account you need to enter your credit card information. To be honest I'm quite reluctant to leave my credit card information on the internet. I already know that a prepaid credit card is not accepted. Does anyone of you know another way to get an AWS account without a ...
by HarryDutch
Tuesday 09 February 2016 10:03
Forum: MySensors
Topic: 5-in-1 sketch corrupt after updates?
Replies: 4
Views: 1415

Re: 5-in-1 sketch corrupt after updates?

I see that you are now using the MySensors beta library. Things are handeled different when you are using the beta. For example, every reference to "gw" needs to be removed and so on (for example you now write "sleep" instead of "gw.sleep". You better have a look at one of the example sketches in ...
by HarryDutch
Saturday 23 January 2016 19:38
Forum: MySensors
Topic: 5-in-1 sketch corrupt after updates?
Replies: 4
Views: 1415

Re: 5-in-1 sketch corrupt after updates?

The value of CHILD_ID_TEMP and CHILD_ID_HUM is the same (2). Give one of the id's a another value.
by HarryDutch
Monday 18 January 2016 10:24
Forum: MySensors
Topic: MySensors gw.request()
Replies: 7
Views: 4191

Re: MySensors gw.request()

Ok, it's working now. Thanks.
by HarryDutch
Wednesday 06 January 2016 16:26
Forum: MySensors
Topic: Sometimes events are dropped
Replies: 1
Views: 663

Re: Sometimes events are dropped

Maybe you have to debounce your button first?
by HarryDutch
Monday 04 January 2016 9:43
Forum: MySensors
Topic: MySensors gw.request()
Replies: 7
Views: 4191

Re: MySensors gw.request()

Using latest beta Domoticz MySensors 1.5 I still have problems with gw.request(). Started all over again. Removed the MySensors serial gateway. Added a new one and runned this sketch: #include <SPI.h> #include <MySensor.h> #define ID_VAR1 1 #define ID_STATUS 2 MySensor gw; MyMessage msgvar1(ID_VAR1 ...
by HarryDutch
Sunday 03 January 2016 12:14
Forum: MySensors
Topic: MySensors gw.request()
Replies: 7
Views: 4191

MySensors gw.request()

I'm trying to find out what's possible and what's not with Domoticz and MySensors. I have a simple sketch that's writing a value to 2 sensors (S_BINARY and S_TEMP). So far so good. But when I want to read these values back by using gw.request() only gw.request(CHILD_ID_STATUS, V_STATUS,0) seems to ...