-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
alexa not discovering device #7
Comments
########## Responding to setup.xml ... ######## or ########## Responding to eventservice.xml ... ######## in the serial monitor? |
I have also tried to set up this device and do not get a response all devices are on the same network UDP seems to be working on the network as I am getting a request showing up from the router on the serial port However nothing from Alexa i'm using Alexa on the Amazon fire tv using a ESP-01 if I navigate to the ESP's homepage Aka index.htnl I get hello world so I know it is connected |
I am using the software on several nodemcu 8266 -12f modules and it works great. Changed the ssid and password and gave each one a new device name, reboot and Thanks for Super Piece of Software!! |
just looking back at the boards i ordered and realized that i ordered the d1 mini pro which looks like a different board. could this be causing the issue? |
not seeing anything when i make a request from alexa in the serial monitor. just pauses at http server started. |
I looked at the mini pro and it looks fine. It has more mem than most. On Wed, Nov 16, 2016, 8:39 PM parus21 notifications@github.com wrote:
|
It is beautiful code, and I am glad that someone has got it to work, but afraid I am not one of them. I know it is getting onto the router, as i can see it, I can also ping it. Just Alexa will not discover it. Granted that I have a professional meru wifi system, which has lots of settings that might stop the UDP etc... but also tried it on my back up router that EE provides and still nothing... You can't get the WeMo sockets for love or money (and a lot of money at that) to see if your network is the problem of if there is a bit of code that just doesnt like me! So close yet so far! |
Are you referring to the single device or multiple device version?
When you run the serial monitor and reset your esp do you see it attempting
to connect?
If so then tell Alexa to discover devices
You should see the requests ack coming from Alexa
and when you tell Alexa to turn on the device you should see it print
across your screen?
Joe
…On Sat, Dec 17, 2016 at 8:19 PM, AndrewsHappy ***@***.***> wrote:
It is beautiful code, and I am glad that someone has got it to work, but
afraid I am not one of them. I know it is getting onto the router, as i can
see it, I can also ping it. Just Alexa will not discover it. Granted that I
have a professional meru wifi system, which has lots of settings that might
stop the UDP etc... but also tried it on my back up router that EE provides
and still nothing... You can't get the WeMo sockets for love or money (and
a lot of money at that) to see if your network is the problem of if there
is a bit of code that just doesnt like me! So close yet so far!
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY8RfQ5ePEbPZPt0xFXEKl9DYUoaDks5rJHwZgaJpZM4KvPK8>
.
|
I must confess that I am not as clever as I might think I am and quite new to it all. I am programming the Sonoff and only got as far as looking at the single device. I do not know how to use the Serial Monitor to get anything useful out of it, so I do not even know if Alex is doing anythin....HOLY SMOKE!! Press the button.... I didn't even realise I needed to push the button.... DHO! OK, I now have a WeMo Switch showing up on my Alexa.... Joe, you are my hero!!! Thank you.... |
Glad I could help.. I have several sonoff modules setup up as singles
devices on Alexa - they work very well.
The serial monitor is an option located under one of the arduino ide tabs.
When you reset the module, it will display the actions (baud rate at
bottom should display 9600 or you will get weird character prints
If all is well you will see things like:
Such as connecting
Connected to wifi xxx
IP
It helps a lot when trying to see if all is working properly and where the
failure might be etc...
The muliple version is also very cool when you are using regular esp8266
modules as you can have one esp8266 control up 2 14 devices..
I have a few boxes with 1 esp8266 a 4 channel relay and Alexa displays it
as 4 devices each with their own name,,
Great piece of software....
Joe
…On Sat, Dec 17, 2016 at 8:41 PM, AndrewsHappy ***@***.***> wrote:
I must confess that I am not as clever as I might think I am and quite new
to it all. I am programming the Sonoff and only got as far as looking at
the single device. I do not know how to use the Serial Monitor to get
anything useful out of it, so I do not even know if Alex is doing
anythin....HOLY SMOKE!! Press the button.... I didn't even realise I needed
to push the button.... DHO!
OK, I now have a WeMo Switch showing up on my Alexa.... Joe, you are my
hero!!! Thank you....
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY6E_s8vswarKFXU6HgdHc5QrjNCIks5rJIFCgaJpZM4KvPK8>
.
|
Slow down! So with the Sonoff can you get the relay and green LED to work together, at the moment, it seems to only be "Alexa turn the light on" to turn on the light, then "Alexa turn the light on" to turn it off!! I think I need to study this code more... but at least I can now go to bed with some sense of achievement |
Yes,
You just need to make sure the declared pins are correct.
1. One for the relay.
2. One for the LED - which must be added.
Then you would need to add the same code for the led.
joe
…On Sat, Dec 17, 2016 at 8:56 PM, AndrewsHappy ***@***.***> wrote:
Slow down! So with the Sonoff can you get the relay and green LED to work
together, at the moment, it seems to only be "Alexa turn the light on" to
turn on the light, then "Alexa turn the light on" to turn it off!! I think
I need to study this code more... but at least I can now go to bed with
some sense of achievement
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY1GsZqScfyOBq2EokGHG9kchX3ORks5rJIS8gaJpZM4KvPK8>
.
|
Yes, it isn't as easy as I thought void turnOnRelay() { giving the value of 13 for the relay and 12 for the relay, but all it seems to do is to turn on the relay and not the LED. Oh, thanks again, got the serial monitor working.... having fun now,..... shame it is 1am |
const int relayPin = D1;
const int ledPin = D7;
void turnOnRelay() {
digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
digitalWrite(ledPin, LOW); //GREEN LED
}
void turnOffRelay() {
digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
digitalWrite(ledPin, HIGH); //GREEN LED OFF
}
This is what I have on my Sonoff.... to control led and relay
Ltr.
.
Joe- Canada
…On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy ***@***.***> wrote:
Yes, it isn't as easy as I thought
void turnOnRelay() {
digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
digitalWrite(ledPin, HIGH); // turn on the green LED
}
giving the value of 13 for the relay and 12 for the relay, but all it
seems to do is to turn on the relay and not the LED.
Oh, thanks again, got the serial monitor working.... having fun now,.....
shame it is 1am
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8>
.
|
One step behind you! Andrew (Hampshire, England) |
Hi Joe
do you find that you have to keep turning the sonoff off and then on after an hour to get it to register back onto the wifi ? Mine is falling asleep and Alexa says it is off line.
Andrew
________________________________
From: joeman2116 <notifications@github.com>
Sent: 18 December 2016 01:15
To: kakopappa/arduino-esp8266-alexa-wemo-switch
Cc: AndrewsHappy; Comment
Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not discovering device (#7)
const int relayPin = D1;
const int ledPin = D7;
void turnOnRelay() {
digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
digitalWrite(ledPin, LOW); //GREEN LED
}
void turnOffRelay() {
digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
digitalWrite(ledPin, HIGH); //GREEN LED OFF
}
This is what I have on my Sonoff.... to control led and relay
Ltr.
.
Joe- Canada
On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy ***@***.***> wrote:
Yes, it isn't as easy as I thought
void turnOnRelay() {
digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
digitalWrite(ledPin, HIGH); // turn on the green LED
}
giving the value of 13 for the relay and 12 for the relay, but all it
seems to do is to turn on the relay and not the LED.
Oh, thanks again, got the serial monitor working.... having fun now,.....
shame it is 1am
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8>
.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8>.
|
Nope
I have several sonof running 24/7 for more than a month so far they work
100 percent
…On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.***> wrote:
Hi Joe
do you find that you have to keep turning the sonoff off and then on after
an hour to get it to register back onto the wifi ? Mine is falling asleep
and Alexa says it is off line.
Andrew
________________________________
From: joeman2116 ***@***.***>
Sent: 18 December 2016 01:15
To: kakopappa/arduino-esp8266-alexa-wemo-switch
Cc: AndrewsHappy; Comment
Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
discovering device (#7)
const int relayPin = D1;
const int ledPin = D7;
void turnOnRelay() {
digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
digitalWrite(ledPin, LOW); //GREEN LED
}
void turnOffRelay() {
digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
digitalWrite(ledPin, HIGH); //GREEN LED OFF
}
This is what I have on my Sonoff.... to control led and relay
Ltr.
.
Joe- Canada
On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy ***@***.***>
wrote:
> Yes, it isn't as easy as I thought
>
> void turnOnRelay() {
> digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> digitalWrite(ledPin, HIGH); // turn on the green LED
> }
>
> giving the value of 13 for the relay and 12 for the relay, but all it
> seems to do is to turn on the relay and not the LED.
>
> Oh, thanks again, got the serial monitor working.... having fun now,.....
> shame it is 1am
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <
#7 (comment)
>,
> or mute the thread
> <
https://github.com/notifications/unsubscribe-auth/AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<
#7 (comment)>,
or mute the thread<
https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
>.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8>
.
|
Now I have given it a static in, seems to be behaving.
Have you had any experience programming the Linknode R4, seems kakopappa has written some code, and although it will flash, does not do anything according to the serial monitor, yet I can put the Sonoff onto it and get it to join the net...
Tomorrow I am getting a Broadlink RM Pro, which they say can also be made to talk to Alexa...
@ndrew
On 19 Dec 2016, at 23:05, joeman2116 <notifications@github.com<mailto:notifications@github.com>> wrote:
Nope
I have several sonof running 24/7 for more than a month so far they work
100 percent
On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.******@***.***>> wrote:
Hi Joe
do you find that you have to keep turning the sonoff off and then on after
an hour to get it to register back onto the wifi ? Mine is falling asleep
and Alexa says it is off line.
Andrew
________________________________
From: joeman2116 ***@***.******@***.***>>
Sent: 18 December 2016 01:15
To: kakopappa/arduino-esp8266-alexa-wemo-switch
Cc: AndrewsHappy; Comment
Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
discovering device (#7)
const int relayPin = D1;
const int ledPin = D7;
void turnOnRelay() {
digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
digitalWrite(ledPin, LOW); //GREEN LED
}
void turnOffRelay() {
digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
digitalWrite(ledPin, HIGH); //GREEN LED OFF
}
This is what I have on my Sonoff.... to control led and relay
Ltr.
.
Joe- Canada
On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy ***@***.******@***.***>>
wrote:
> Yes, it isn't as easy as I thought
>
> void turnOnRelay() {
> digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> digitalWrite(ledPin, HIGH); // turn on the green LED
> }
>
> giving the value of 13 for the relay and 12 for the relay, but all it
> seems to do is to turn on the relay and not the LED.
>
> Oh, thanks again, got the serial monitor working.... having fun now,.....
> shame it is 1am
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <
#7 (comment)
>,
> or mute the thread
> <
https://github.com/notifications/unsubscribe-auth/AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<
#7 (comment)>,
or mute the thread<
https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
>.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8>
.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ARQwPVHAiQz3hPrCtyRsRGCLRN_GWYfqks5rJw2_gaJpZM4KvPK8>.
|
Would be interesting to see what code you used for static ip.
Have not looked at the link node R4 to see what it is supposed to do.
Joe
…On Mon, Dec 19, 2016, 7:41 PM AndrewsHappy ***@***.***> wrote:
Now I have given it a static in, seems to be behaving.
Have you had any experience programming the Linknode R4, seems kakopappa
has written some code, and although it will flash, does not do anything
according to the serial monitor, yet I can put the Sonoff onto it and get
it to join the net...
Tomorrow I am getting a Broadlink RM Pro, which they say can also be made
to talk to Alexa...
@ndrew
On 19 Dec 2016, at 23:05, joeman2116 ***@***.***<mailto:
***@***.***>> wrote:
Nope
I have several sonof running 24/7 for more than a month so far they work
100 percent
On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.***
***@***.***>> wrote:
> Hi Joe
>
>
> do you find that you have to keep turning the sonoff off and then on
after
> an hour to get it to register back onto the wifi ? Mine is falling asleep
> and Alexa says it is off line.
>
>
> Andrew
>
>
> ________________________________
> From: joeman2116 ***@***.***<mailto:
***@***.***>>
> Sent: 18 December 2016 01:15
> To: kakopappa/arduino-esp8266-alexa-wemo-switch
> Cc: AndrewsHappy; Comment
> Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> discovering device (#7)
>
> const int relayPin = D1;
> const int ledPin = D7;
>
>
> void turnOnRelay() {
> digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> digitalWrite(ledPin, LOW); //GREEN LED
> }
>
> void turnOffRelay() {
> digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
> digitalWrite(ledPin, HIGH); //GREEN LED OFF
> }
>
>
> This is what I have on my Sonoff.... to control led and relay
>
> Ltr.
> .
> Joe- Canada
>
>
> On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy ***@***.***
***@***.***>>
> wrote:
>
> > Yes, it isn't as easy as I thought
> >
> > void turnOnRelay() {
> > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > digitalWrite(ledPin, HIGH); // turn on the green LED
> > }
> >
> > giving the value of 13 for the relay and 12 for the relay, but all it
> > seems to do is to turn on the relay and not the LED.
> >
> > Oh, thanks again, got the serial monitor working.... having fun
now,.....
> > shame it is 1am
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub
> > <
>
#7 (comment)
> >,
> > or mute the thread
> > <
>
https://github.com/notifications/unsubscribe-auth/AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
> >
> > .
> >
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub<
>
#7 (comment)
>,
> or mute the thread<
>
https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
> >.
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <
#7 (comment)
>,
> or mute the thread
> <
https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8
>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<
#7 (comment)>,
or mute the thread<
https://github.com/notifications/unsubscribe-auth/ARQwPVHAiQz3hPrCtyRsRGCLRN_GWYfqks5rJw2_gaJpZM4KvPK8
>.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY4eoOOj1HOvidUWFubmEIV40vjDrks5rJxYVgaJpZM4KvPK8>
.
|
I just went to the router and found the MAC code of the Sonoff and assigned it a static IP. I have lots of IP cameras, VoIP, AV's and now this lot... so I like to try and keep track of my ip addresses by giving them all static ip's
The Link Node is just a 8266 with 4 relays on it that you can control like the Sonoff, as well as flash code onto it...
________________________________
From: joeman2116 <notifications@github.com>
Sent: 19 December 2016 23:51
To: kakopappa/arduino-esp8266-alexa-wemo-switch
Cc: AndrewsHappy; Comment
Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not discovering device (#7)
Would be interesting to see what code you used for static ip.
Have not looked at the link node R4 to see what it is supposed to do.
Joe
On Mon, Dec 19, 2016, 7:41 PM AndrewsHappy ***@***.***> wrote:
Now I have given it a static in, seems to be behaving.
Have you had any experience programming the Linknode R4, seems kakopappa
has written some code, and although it will flash, does not do anything
according to the serial monitor, yet I can put the Sonoff onto it and get
it to join the net...
Tomorrow I am getting a Broadlink RM Pro, which they say can also be made
to talk to Alexa...
@ndrew
On 19 Dec 2016, at 23:05, joeman2116 ***@***.***<mailto:
***@***.***>> wrote:
Nope
I have several sonof running 24/7 for more than a month so far they work
100 percent
On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.***
***@***.***>> wrote:
> Hi Joe
>
>
> do you find that you have to keep turning the sonoff off and then on
after
> an hour to get it to register back onto the wifi ? Mine is falling asleep
> and Alexa says it is off line.
>
>
> Andrew
>
>
> ________________________________
> From: joeman2116 ***@***.***<mailto:
***@***.***>>
> Sent: 18 December 2016 01:15
> To: kakopappa/arduino-esp8266-alexa-wemo-switch
> Cc: AndrewsHappy; Comment
> Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> discovering device (#7)
>
> const int relayPin = D1;
> const int ledPin = D7;
>
>
> void turnOnRelay() {
> digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> digitalWrite(ledPin, LOW); //GREEN LED
> }
>
> void turnOffRelay() {
> digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
> digitalWrite(ledPin, HIGH); //GREEN LED OFF
> }
>
>
> This is what I have on my Sonoff.... to control led and relay
>
> Ltr.
> .
> Joe- Canada
>
>
> On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy ***@***.***
***@***.***>>
> wrote:
>
> > Yes, it isn't as easy as I thought
> >
> > void turnOnRelay() {
> > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > digitalWrite(ledPin, HIGH); // turn on the green LED
> > }
> >
> > giving the value of 13 for the relay and 12 for the relay, but all it
> > seems to do is to turn on the relay and not the LED.
> >
> > Oh, thanks again, got the serial monitor working.... having fun
now,.....
> > shame it is 1am
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub
> > <
>
#7 (comment)
> >,
> > or mute the thread
> > <
>
https://github.com/notifications/unsubscribe-auth/AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
> >
> > .
> >
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub<
>
#7 (comment)
>,
> or mute the thread<
>
https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
> >.
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <
#7 (comment)
>,
> or mute the thread
> <
https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8
>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<
#7 (comment)>,
or mute the thread<
https://github.com/notifications/unsubscribe-auth/ARQwPVHAiQz3hPrCtyRsRGCLRN_GWYfqks5rJw2_gaJpZM4KvPK8
>.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY4eoOOj1HOvidUWFubmEIV40vjDrks5rJxYVgaJpZM4KvPK8>
.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ARQwPdu3P40QurAlUHtfEbFsI5hpuzUtks5rJxhlgaJpZM4KvPK8>.
|
Thanks for info on the linknode - ordered 2
The broadlink rm pro looks interesting as well
joe
…On Mon, Dec 19, 2016 at 8:02 PM, Andrew ***@***.***> wrote:
I just went to the router and found the MAC code of the Sonoff and
assigned it a static IP. I have lots of IP cameras, VoIP, AV's and now this
lot... so I like to try and keep track of my ip addresses by giving them
all static ip's
The Link Node is just a 8266 with 4 relays on it that you can control like
the Sonoff, as well as flash code onto it...
________________________________
From: joeman2116 ***@***.***>
Sent: 19 December 2016 23:51
To: kakopappa/arduino-esp8266-alexa-wemo-switch
Cc: AndrewsHappy; Comment
Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
discovering device (#7)
Would be interesting to see what code you used for static ip.
Have not looked at the link node R4 to see what it is supposed to do.
Joe
On Mon, Dec 19, 2016, 7:41 PM AndrewsHappy ***@***.***>
wrote:
> Now I have given it a static in, seems to be behaving.
>
> Have you had any experience programming the Linknode R4, seems kakopappa
> has written some code, and although it will flash, does not do anything
> according to the serial monitor, yet I can put the Sonoff onto it and get
> it to join the net...
>
> Tomorrow I am getting a Broadlink RM Pro, which they say can also be made
> to talk to Alexa...
>
> @ndrew
>
> On 19 Dec 2016, at 23:05, joeman2116 ***@***.***<mailto:
> ***@***.***>> wrote:
>
> Nope
> I have several sonof running 24/7 for more than a month so far they work
> 100 percent
>
> On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.***
> ***@***.***>> wrote:
>
> > Hi Joe
> >
> >
> > do you find that you have to keep turning the sonoff off and then on
> after
> > an hour to get it to register back onto the wifi ? Mine is falling
asleep
> > and Alexa says it is off line.
> >
> >
> > Andrew
> >
> >
> > ________________________________
> > From: joeman2116 ***@***.***<mailto:
> ***@***.***>>
> > Sent: 18 December 2016 01:15
> > To: kakopappa/arduino-esp8266-alexa-wemo-switch
> > Cc: AndrewsHappy; Comment
> > Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> > discovering device (#7)
> >
> > const int relayPin = D1;
> > const int ledPin = D7;
> >
> >
> > void turnOnRelay() {
> > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > digitalWrite(ledPin, LOW); //GREEN LED
> > }
> >
> > void turnOffRelay() {
> > digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
> > digitalWrite(ledPin, HIGH); //GREEN LED OFF
> > }
> >
> >
> > This is what I have on my Sonoff.... to control led and relay
> >
> > Ltr.
> > .
> > Joe- Canada
> >
> >
> > On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy <
***@***.***
> ***@***.***>>
> > wrote:
> >
> > > Yes, it isn't as easy as I thought
> > >
> > > void turnOnRelay() {
> > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > digitalWrite(ledPin, HIGH); // turn on the green LED
> > > }
> > >
> > > giving the value of 13 for the relay and 12 for the relay, but all it
> > > seems to do is to turn on the relay and not the LED.
> > >
> > > Oh, thanks again, got the serial monitor working.... having fun
> now,.....
> > > shame it is 1am
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub
> > > <
> >
> https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-267797037
> > >,
> > > or mute the thread
> > > <
> >
> https://github.com/notifications/unsubscribe-auth/
AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
> > >
> > > .
> > >
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub<
> >
> https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-267797296
> >,
> > or mute the thread<
> >
> https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-
PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
> > >.
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub
> > <
> https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268047872
> >,
> > or mute the thread
> > <
> https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-
m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8
> >
> > .
> >
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub<
> https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268104804>,
> or mute the thread<
> https://github.com/notifications/unsubscribe-auth/
ARQwPVHAiQz3hPrCtyRsRGCLRN_GWYfqks5rJw2_gaJpZM4KvPK8
> >.
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268111322>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/
AWDpY4eoOOj1HOvidUWFubmEIV40vjDrks5rJxYVgaJpZM4KvPK8>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<https://github.com/
kakopappa/arduino-esp8266-alexa-wemo-switch#7#
issuecomment-268112850>, or mute the thread<https://github.com/
notifications/unsubscribe-auth/ARQwPdu3P40QurAlUHtfEbFsI5hpuz
Utks5rJxhlgaJpZM4KvPK8>.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY3S2yBphr0gH7bxZ7KnkfFIqza-4ks5rJxsJgaJpZM4KvPK8>
.
|
Let me know if you get either working with Alexa, seems only one person has so far.
@ndrew
On 20 Dec 2016, at 03:36, joeman2116 <notifications@github.com<mailto:notifications@github.com>> wrote:
Thanks for info on the linknode - ordered 2
The broadlink rm pro looks interesting as well
joe
On Mon, Dec 19, 2016 at 8:02 PM, Andrew ***@***.******@***.***>> wrote:
I just went to the router and found the MAC code of the Sonoff and
assigned it a static IP. I have lots of IP cameras, VoIP, AV's and now this
lot... so I like to try and keep track of my ip addresses by giving them
all static ip's
The Link Node is just a 8266 with 4 relays on it that you can control like
the Sonoff, as well as flash code onto it...
________________________________
From: joeman2116 ***@***.******@***.***>>
Sent: 19 December 2016 23:51
To: kakopappa/arduino-esp8266-alexa-wemo-switch
Cc: AndrewsHappy; Comment
Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
discovering device (#7)
Would be interesting to see what code you used for static ip.
Have not looked at the link node R4 to see what it is supposed to do.
Joe
On Mon, Dec 19, 2016, 7:41 PM AndrewsHappy ***@***.******@***.***>>
wrote:
> Now I have given it a static in, seems to be behaving.
>
> Have you had any experience programming the Linknode R4, seems kakopappa
> has written some code, and although it will flash, does not do anything
> according to the serial monitor, yet I can put the Sonoff onto it and get
> it to join the net...
>
> Tomorrow I am getting a Broadlink RM Pro, which they say can also be made
> to talk to Alexa...
>
> @ndrew
>
> On 19 Dec 2016, at 23:05, joeman2116 ***@***.******@***.***><mailto:
> ***@***.******@***.***>>> wrote:
>
> Nope
> I have several sonof running 24/7 for more than a month so far they work
> 100 percent
>
> On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.******@***.***>
> ***@***.***>> wrote:
>
> > Hi Joe
> >
> >
> > do you find that you have to keep turning the sonoff off and then on
> after
> > an hour to get it to register back onto the wifi ? Mine is falling
asleep
> > and Alexa says it is off line.
> >
> >
> > Andrew
> >
> >
> > ________________________________
> > From: joeman2116 ***@***.******@***.***><mailto:
> ***@***.******@***.***>>>
> > Sent: 18 December 2016 01:15
> > To: kakopappa/arduino-esp8266-alexa-wemo-switch
> > Cc: AndrewsHappy; Comment
> > Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> > discovering device (#7)
> >
> > const int relayPin = D1;
> > const int ledPin = D7;
> >
> >
> > void turnOnRelay() {
> > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > digitalWrite(ledPin, LOW); //GREEN LED
> > }
> >
> > void turnOffRelay() {
> > digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
> > digitalWrite(ledPin, HIGH); //GREEN LED OFF
> > }
> >
> >
> > This is what I have on my Sonoff.... to control led and relay
> >
> > Ltr.
> > .
> > Joe- Canada
> >
> >
> > On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy <
***@***.******@***.***>
> ***@***.***>>
> > wrote:
> >
> > > Yes, it isn't as easy as I thought
> > >
> > > void turnOnRelay() {
> > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > digitalWrite(ledPin, HIGH); // turn on the green LED
> > > }
> > >
> > > giving the value of 13 for the relay and 12 for the relay, but all it
> > > seems to do is to turn on the relay and not the LED.
> > >
> > > Oh, thanks again, got the serial monitor working.... having fun
> now,.....
> > > shame it is 1am
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub
> > > <
> >
> https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-267797037
> > >,
> > > or mute the thread
> > > <
> >
> https://github.com/notifications/unsubscribe-auth/
AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
> > >
> > > .
> > >
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub<
> >
> https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-267797296
> >,
> > or mute the thread<
> >
> https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-
PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
> > >.
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub
> > <
> https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268047872
> >,
> > or mute the thread
> > <
> https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-
m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8
> >
> > .
> >
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub<
> https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268104804>,
> or mute the thread<
> https://github.com/notifications/unsubscribe-auth/
ARQwPVHAiQz3hPrCtyRsRGCLRN_GWYfqks5rJw2_gaJpZM4KvPK8
> >.
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268111322>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/
AWDpY4eoOOj1HOvidUWFubmEIV40vjDrks5rJxYVgaJpZM4KvPK8>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<https://github.com/
kakopappa/arduino-esp8266-alexa-wemo-switch#7#
issuecomment-268112850>, or mute the thread<https://github.com/
notifications/unsubscribe-auth/ARQwPdu3P40QurAlUHtfEbFsI5hpuz
Utks5rJxhlgaJpZM4KvPK8>.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY3S2yBphr0gH7bxZ7KnkfFIqza-4ks5rJxsJgaJpZM4KvPK8>
.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ARQwPcreYxZBxOkCY_Q8nvIri3juf3t1ks5rJ00rgaJpZM4KvPK8>.
|
Got the linknodes r4 in today and 10 minutes later Alexa is working fine
with the nodes 4 relays.
I just added a 5v +center powersupply
Connected 3 wires from my uart (programmer) tx rx and gnd (3vmode)
Moved the jumper to the UART PROGRAM position
Then i ran esptool to write blank bins - clears memory - probably not
required but have found it clears any issues - so I do it first.
Then I ran the code found at " The makers workbench" How to use Amazon
Alexa to control the Linknode R4.
I changed the ssid and pw.
Compiled and uploaded use the Arduinio IDE software
Generic 8266
QIO
2meg /1 meg spfss
makersite
<https://themakersworkbench.com/tutorial/how-use-amazon-alexa-control-linknode-r4-esp8266-4-channel-relay-board>
is
here..
Ran the node thru its paces - on, off / combinations etc - works great.
Now will exercise it during the eve and overnight to see if there are any
issues.
So far ---- cool....
Joe
…On Tue, Dec 20, 2016 at 3:04 AM, Andrew ***@***.***> wrote:
Let me know if you get either working with Alexa, seems only one person
has so far.
@ndrew
On 20 Dec 2016, at 03:36, joeman2116 ***@***.***<mailto:
***@***.***>> wrote:
Thanks for info on the linknode - ordered 2
The broadlink rm pro looks interesting as well
joe
On Mon, Dec 19, 2016 at 8:02 PM, Andrew ***@***.***<mailto:
***@***.***>> wrote:
> I just went to the router and found the MAC code of the Sonoff and
> assigned it a static IP. I have lots of IP cameras, VoIP, AV's and now
this
> lot... so I like to try and keep track of my ip addresses by giving them
> all static ip's
>
>
> The Link Node is just a 8266 with 4 relays on it that you can control
like
> the Sonoff, as well as flash code onto it...
>
>
> ________________________________
> From: joeman2116 ***@***.******@***.***
com>>
> Sent: 19 December 2016 23:51
>
> To: kakopappa/arduino-esp8266-alexa-wemo-switch
> Cc: AndrewsHappy; Comment
> Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> discovering device (#7)
>
> Would be interesting to see what code you used for static ip.
>
> Have not looked at the link node R4 to see what it is supposed to do.
>
> Joe
>
> On Mon, Dec 19, 2016, 7:41 PM AndrewsHappy ***@***.***<
***@***.***>>
> wrote:
>
> > Now I have given it a static in, seems to be behaving.
> >
> > Have you had any experience programming the Linknode R4, seems
kakopappa
> > has written some code, and although it will flash, does not do anything
> > according to the serial monitor, yet I can put the Sonoff onto it and
get
> > it to join the net...
> >
> > Tomorrow I am getting a Broadlink RM Pro, which they say can also be
made
> > to talk to Alexa...
> >
> > @ndrew
> >
> > On 19 Dec 2016, at 23:05, joeman2116 ***@***.***<mailto:
***@***.***><mailto:
> > ***@***.******@***.***>>> wrote:
> >
> > Nope
> > I have several sonof running 24/7 for more than a month so far they
work
> > 100 percent
> >
> > On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.***<
***@***.***>
> > ***@***.***>> wrote:
> >
> > > Hi Joe
> > >
> > >
> > > do you find that you have to keep turning the sonoff off and then on
> > after
> > > an hour to get it to register back onto the wifi ? Mine is falling
> asleep
> > > and Alexa says it is off line.
> > >
> > >
> > > Andrew
> > >
> > >
> > > ________________________________
> > > From: joeman2116 ***@***.***<mailto:
***@***.***><mailto:
> > ***@***.******@***.***>>>
> > > Sent: 18 December 2016 01:15
> > > To: kakopappa/arduino-esp8266-alexa-wemo-switch
> > > Cc: AndrewsHappy; Comment
> > > Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> > > discovering device (#7)
> > >
> > > const int relayPin = D1;
> > > const int ledPin = D7;
> > >
> > >
> > > void turnOnRelay() {
> > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > digitalWrite(ledPin, LOW); //GREEN LED
> > > }
> > >
> > > void turnOffRelay() {
> > > digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
> > > digitalWrite(ledPin, HIGH); //GREEN LED OFF
> > > }
> > >
> > >
> > > This is what I have on my Sonoff.... to control led and relay
> > >
> > > Ltr.
> > > .
> > > Joe- Canada
> > >
> > >
> > > On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy <
> ***@***.******@***.***>
> > ***@***.***>>
> > > wrote:
> > >
> > > > Yes, it isn't as easy as I thought
> > > >
> > > > void turnOnRelay() {
> > > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > > digitalWrite(ledPin, HIGH); // turn on the green LED
> > > > }
> > > >
> > > > giving the value of 13 for the relay and 12 for the relay, but all
it
> > > > seems to do is to turn on the relay and not the LED.
> > > >
> > > > Oh, thanks again, got the serial monitor working.... having fun
> > now,.....
> > > > shame it is 1am
> > > >
> > > > -
> > > > You are receiving this because you commented.
> > > > Reply to this email directly, view it on GitHub
> > > > <
> > >
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-267797037
> > > >,
> > > > or mute the thread
> > > > <
> > >
> > https://github.com/notifications/unsubscribe-auth/
> AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
> > > >
> > > > .
> > > >
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub<
> > >
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-267797296
> > >,
> > > or mute the thread<
> > >
> > https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-
> PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
> > > >.
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub
> > > <
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268047872
> > >,
> > > or mute the thread
> > > <
> > https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-
> m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8
> > >
> > > .
> > >
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub<
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268104804>,
> > or mute the thread<
> > https://github.com/notifications/unsubscribe-auth/
> ARQwPVHAiQz3hPrCtyRsRGCLRN_GWYfqks5rJw2_gaJpZM4KvPK8
> > >.
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub
> > <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268111322>,
> > or mute the thread
> > <https://github.com/notifications/unsubscribe-auth/
> AWDpY4eoOOj1HOvidUWFubmEIV40vjDrks5rJxYVgaJpZM4KvPK8>
> > .
> >
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub<https://github.com/
> kakopappa/arduino-esp8266-alexa-wemo-switch#7#
> issuecomment-268112850>, or mute the thread<https://github.com/
> notifications/unsubscribe-auth/ARQwPdu3P40QurAlUHtfEbFsI5hpuz
> Utks5rJxhlgaJpZM4KvPK8>.
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268114707>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/
AWDpY3S2yBphr0gH7bxZ7KnkfFIqza-4ks5rJxsJgaJpZM4KvPK8>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<https://github.com/
kakopappa/arduino-esp8266-alexa-wemo-switch#7#
issuecomment-268146003>, or mute the thread<https://github.com/
notifications/unsubscribe-auth/ARQwPcreYxZBxOkCY_
Q8nvIri3juf3t1ks5rJ00rgaJpZM4KvPK8>.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY87Sk9jnq_A2CkarAi_xS7znlNkiks5rJ34TgaJpZM4KvPK8>
.
|
Wow, in 10 minutes! Took me a few days ! But now I know what I'm doing...
I got my broadlink rm pro, as I have a few infrared devices I'd like to get Alexa to control, but seems there is a better way using a Logitech Harmony hub.... but not keen on having to use the cloud to connect to Alexa...
@ndrew
On 21 Dec 2016, at 19:54, joeman2116 <notifications@github.com<mailto:notifications@github.com>> wrote:
Got the linknodes r4 in today and 10 minutes later Alexa is working fine
with the nodes 4 relays.
I just added a 5v +center powersupply
Connected 3 wires from my uart (programmer) tx rx and gnd (3vmode)
Moved the jumper to the UART PROGRAM position
Then i ran esptool to write blank bins - clears memory - probably not
required but have found it clears any issues - so I do it first.
Then I ran the code found at " The makers workbench" How to use Amazon
Alexa to control the Linknode R4.
I changed the ssid and pw.
Compiled and uploaded use the Arduinio IDE software
Generic 8266
QIO
2meg /1 meg spfss
makersite
<https://themakersworkbench.com/tutorial/how-use-amazon-alexa-control-linknode-r4-esp8266-4-channel-relay-board>
is
here..
Ran the node thru its paces - on, off / combinations etc - works great.
Now will exercise it during the eve and overnight to see if there are any
issues.
So far ---- cool....
Joe
On Tue, Dec 20, 2016 at 3:04 AM, Andrew ***@***.******@***.***>> wrote:
Let me know if you get either working with Alexa, seems only one person
has so far.
@ndrew
On 20 Dec 2016, at 03:36, joeman2116 ***@***.******@***.***><mailto:
***@***.******@***.***>>> wrote:
Thanks for info on the linknode - ordered 2
The broadlink rm pro looks interesting as well
joe
On Mon, Dec 19, 2016 at 8:02 PM, Andrew ***@***.******@***.***><mailto:
***@***.******@***.***>>> wrote:
> I just went to the router and found the MAC code of the Sonoff and
> assigned it a static IP. I have lots of IP cameras, VoIP, AV's and now
this
> lot... so I like to try and keep track of my ip addresses by giving them
> all static ip's
>
>
> The Link Node is just a 8266 with 4 relays on it that you can control
like
> the Sonoff, as well as flash code onto it...
>
>
> ________________________________
> From: joeman2116 ***@***.******@***.******@***.***
com>>
> Sent: 19 December 2016 23:51
>
> To: kakopappa/arduino-esp8266-alexa-wemo-switch
> Cc: AndrewsHappy; Comment
> Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> discovering device (#7)
>
> Would be interesting to see what code you used for static ip.
>
> Have not looked at the link node R4 to see what it is supposed to do.
>
> Joe
>
> On Mon, Dec 19, 2016, 7:41 PM AndrewsHappy ***@***.******@***.***><
***@***.***>>
> wrote:
>
> > Now I have given it a static in, seems to be behaving.
> >
> > Have you had any experience programming the Linknode R4, seems
kakopappa
> > has written some code, and although it will flash, does not do anything
> > according to the serial monitor, yet I can put the Sonoff onto it and
get
> > it to join the net...
> >
> > Tomorrow I am getting a Broadlink RM Pro, which they say can also be
made
> > to talk to Alexa...
> >
> > @ndrew
> >
> > On 19 Dec 2016, at 23:05, joeman2116 ***@***.******@***.***><mailto:
***@***.******@***.***>><mailto:
> > ***@***.******@***.******@***.***>>> wrote:
> >
> > Nope
> > I have several sonof running 24/7 for more than a month so far they
work
> > 100 percent
> >
> > On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.******@***.***><
***@***.***>
> > ***@***.***>> wrote:
> >
> > > Hi Joe
> > >
> > >
> > > do you find that you have to keep turning the sonoff off and then on
> > after
> > > an hour to get it to register back onto the wifi ? Mine is falling
> asleep
> > > and Alexa says it is off line.
> > >
> > >
> > > Andrew
> > >
> > >
> > > ________________________________
> > > From: joeman2116 ***@***.******@***.***><mailto:
***@***.******@***.***>><mailto:
> > ***@***.******@***.******@***.***>>>
> > > Sent: 18 December 2016 01:15
> > > To: kakopappa/arduino-esp8266-alexa-wemo-switch
> > > Cc: AndrewsHappy; Comment
> > > Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> > > discovering device (#7)
> > >
> > > const int relayPin = D1;
> > > const int ledPin = D7;
> > >
> > >
> > > void turnOnRelay() {
> > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > digitalWrite(ledPin, LOW); //GREEN LED
> > > }
> > >
> > > void turnOffRelay() {
> > > digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
> > > digitalWrite(ledPin, HIGH); //GREEN LED OFF
> > > }
> > >
> > >
> > > This is what I have on my Sonoff.... to control led and relay
> > >
> > > Ltr.
> > > .
> > > Joe- Canada
> > >
> > >
> > > On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy <
> ***@***.******@***.******@***.***>
> > ***@***.***>>
> > > wrote:
> > >
> > > > Yes, it isn't as easy as I thought
> > > >
> > > > void turnOnRelay() {
> > > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > > digitalWrite(ledPin, HIGH); // turn on the green LED
> > > > }
> > > >
> > > > giving the value of 13 for the relay and 12 for the relay, but all
it
> > > > seems to do is to turn on the relay and not the LED.
> > > >
> > > > Oh, thanks again, got the serial monitor working.... having fun
> > now,.....
> > > > shame it is 1am
> > > >
> > > > -
> > > > You are receiving this because you commented.
> > > > Reply to this email directly, view it on GitHub
> > > > <
> > >
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-267797037
> > > >,
> > > > or mute the thread
> > > > <
> > >
> > https://github.com/notifications/unsubscribe-auth/
> AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
> > > >
> > > > .
> > > >
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub<
> > >
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-267797296
> > >,
> > > or mute the thread<
> > >
> > https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-
> PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
> > > >.
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub
> > > <
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268047872
> > >,
> > > or mute the thread
> > > <
> > https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-
> m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8
> > >
> > > .
> > >
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub<
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268104804>,
> > or mute the thread<
> > https://github.com/notifications/unsubscribe-auth/
> ARQwPVHAiQz3hPrCtyRsRGCLRN_GWYfqks5rJw2_gaJpZM4KvPK8
> > >.
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub
> > <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268111322>,
> > or mute the thread
> > <https://github.com/notifications/unsubscribe-auth/
> AWDpY4eoOOj1HOvidUWFubmEIV40vjDrks5rJxYVgaJpZM4KvPK8>
> > .
> >
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub<https://github.com/
> kakopappa/arduino-esp8266-alexa-wemo-switch#7#
> issuecomment-268112850>, or mute the thread<https://github.com/
> notifications/unsubscribe-auth/ARQwPdu3P40QurAlUHtfEbFsI5hpuz
> Utks5rJxhlgaJpZM4KvPK8>.
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268114707>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/
AWDpY3S2yBphr0gH7bxZ7KnkfFIqza-4ks5rJxsJgaJpZM4KvPK8>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<https://github.com/
kakopappa/arduino-esp8266-alexa-wemo-switch#7#
issuecomment-268146003>, or mute the thread<https://github.com/
notifications/unsubscribe-auth/ARQwPcreYxZBxOkCY_
Q8nvIri3juf3t1ks5rJ00rgaJpZM4KvPK8>.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY87Sk9jnq_A2CkarAi_xS7znlNkiks5rJ34TgaJpZM4KvPK8>
.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ARQwPWjq-65yB9iP9stHSvEFhU3nfFX-ks5rKYPzgaJpZM4KvPK8>.
|
Hello everyone, i am having some isssues...I can flash the Sonoff and i get this in the serial monitor: Connecting to UDP but no matter what i do, i cannot get alexa to see it. I also do not see the request from Alexa on the serial monitor. I have tried diffrent UDP ports but nothing.... |
Are you pressing the button on the Sonoff once you have flashed it and the Sonoff has logged onto the network and asked Alexa to find new devices?
On 21 Dec 2016, at 23:45, solrac21 <notifications@github.com<mailto:notifications@github.com>> wrote:
Hello everyone, i am having some isssues...I can flash the Sonoff and i get this in the serial monitor:
.
Connected to HOME-1307-2.4
IP address: 10.0.0.229
Connecting to UDP
Connection successful
HTTP Server started ..
but no matter what i do, i cannot get alexa to see it. I also do not see the request from Alexa on the serial monitor. I have tried diffrent UDP ports but nothing....
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ARQwPZTt_Or79vh_xbf3xsEpqgueKL9Wks5rKbowgaJpZM4KvPK8>.
|
Curious how the Broadlink Rm Pro works out with Alexa. It has the most
device connectivity.
Cheaper than Harmony but Harmony more polished interface.
Thanks for the linknode info, I like them..
Joe
On Wed, Dec 21, 2016, 4:00 PM Andrew <notifications@github.com> wrote:
Wow, in 10 minutes! Took me a few days ! But now I know what I'm doing...
I got my broadlink rm pro, as I have a few infrared devices I'd like to get
Alexa to control, but seems there is a better way using a Logitech Harmony
hub.... but not keen on having to use the cloud to connect to Alexa...
@ndrew
On 21 Dec 2016, at 19:54, joeman2116 <notifications@github.com<mailto:
notifications@github.com>> wrote:
Got the linknodes r4 in today and 10 minutes later Alexa is working fine
with the nodes 4 relays.
I just added a 5v +center powersupply
Connected 3 wires from my uart (programmer) tx rx and gnd (3vmode)
Moved the jumper to the UART PROGRAM position
Then i ran esptool to write blank bins - clears memory - probably not
required but have found it clears any issues - so I do it first.
Then I ran the code found at " The makers workbench" How to use Amazon
Alexa to control the Linknode R4.
I changed the ssid and pw.
Compiled and uploaded use the Arduinio IDE software
Generic 8266
QIO
2meg /1 meg spfss
makersite
<
https://themakersworkbench.com/tutorial/how-use-amazon-alexa-control-linknode-r4-esp8266-4-channel-relay-board
is
here..
Ran the node thru its paces - on, off / combinations etc - works great.
Now will exercise it during the eve and overnight to see if there are any
issues.
So far ---- cool....
Joe
On Tue, Dec 20, 2016 at 3:04 AM, Andrew <notifications@github.com<mailto:
notifications@github.com>> wrote:
Let me know if you get either working with Alexa, seems only one person
has so far.
@ndrew
On 20 Dec 2016, at 03:36, joeman2116 ***@***.***<mailto:
notifications@github.com><mailto:
***@***.******@***.***>>> wrote:
Thanks for info on the linknode - ordered 2
The broadlink rm pro looks interesting as well
joe
On Mon, Dec 19, 2016 at 8:02 PM, Andrew ***@***.***<mailto:
notifications@github.com><mailto:
***@***.******@***.***>>> wrote:
> I just went to the router and found the MAC code of the Sonoff and
> assigned it a static IP. I have lots of IP cameras, VoIP, AV's and now
this
> lot... so I like to try and keep track of my ip addresses by giving them
> all static ip's
>
>
> The Link Node is just a 8266 with 4 relays on it that you can control
like
> the Sonoff, as well as flash code onto it...
>
>
> ________________________________
> From: joeman2116 ***@***.***<mailto:
notifications@github.com><mailto:notifications@github.
com>>
> Sent: 19 December 2016 23:51
>
> To: kakopappa/arduino-esp8266-alexa-wemo-switch
> Cc: AndrewsHappy; Comment
> Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> discovering device (#7)
>
> Would be interesting to see what code you used for static ip.
>
> Have not looked at the link node R4 to see what it is supposed to do.
>
> Joe
>
> On Mon, Dec 19, 2016, 7:41 PM AndrewsHappy ***@***.***
<mailto:notifications@github.com><
***@***.***>>
> wrote:
>
> > Now I have given it a static in, seems to be behaving.
> >
> > Have you had any experience programming the Linknode R4, seems
kakopappa
> > has written some code, and although it will flash, does not do
anything
> > according to the serial monitor, yet I can put the Sonoff onto it and
get
> > it to join the net...
> >
> > Tomorrow I am getting a Broadlink RM Pro, which they say can also be
made
> > to talk to Alexa...
> >
> > @ndrew
> >
> > On 19 Dec 2016, at 23:05, joeman2116 ***@***.***<mailto:
notifications@github.com><mailto:
***@***.******@***.***>><mailto:
> > ***@***.******@***.***><mailto:
notifications@github.com>>> wrote:
> >
> > Nope
> > I have several sonof running 24/7 for more than a month so far they
work
> > 100 percent
> >
> > On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.***
<mailto:notifications@github.com><
***@***.***>
> > ***@***.***>> wrote:
> >
> > > Hi Joe
> > >
> > >
> > > do you find that you have to keep turning the sonoff off and then on
> > after
> > > an hour to get it to register back onto the wifi ? Mine is falling
> asleep
> > > and Alexa says it is off line.
> > >
> > >
> > > Andrew
> > >
> > >
> > > ________________________________
> > > From: joeman2116 ***@***.***<mailto:
notifications@github.com><mailto:
***@***.******@***.***>><mailto:
> > ***@***.******@***.***><mailto:
notifications@github.com>>>
> > > Sent: 18 December 2016 01:15
> > > To: kakopappa/arduino-esp8266-alexa-wemo-switch
> > > Cc: AndrewsHappy; Comment
> > > Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> > > discovering device (#7)
> > >
> > > const int relayPin = D1;
> > > const int ledPin = D7;
> > >
> > >
> > > void turnOnRelay() {
> > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > digitalWrite(ledPin, LOW); //GREEN LED
> > > }
> > >
> > > void turnOffRelay() {
> > > digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
> > > digitalWrite(ledPin, HIGH); //GREEN LED OFF
> > > }
> > >
> > >
> > > This is what I have on my Sonoff.... to control led and relay
> > >
> > > Ltr.
> > > .
> > > Joe- Canada
> > >
> > >
> > > On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy <
> ***@***.******@***.***><mailto:
notifications@github.com>
> > ***@***.***>>
> > > wrote:
> > >
> > > > Yes, it isn't as easy as I thought
> > > >
> > > > void turnOnRelay() {
> > > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > > digitalWrite(ledPin, HIGH); // turn on the green LED
> > > > }
> > > >
> > > > giving the value of 13 for the relay and 12 for the relay, but all
it
> > > > seems to do is to turn on the relay and not the LED.
> > > >
> > > > Oh, thanks again, got the serial monitor working.... having fun
> > now,.....
> > > > shame it is 1am
> > > >
> > > > -
> > > > You are receiving this because you commented.
> > > > Reply to this email directly, view it on GitHub
> > > > <
> > >
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-267797037
> > > >,
> > > > or mute the thread
> > > > <
> > >
> > https://github.com/notifications/unsubscribe-auth/
> AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
> > > >
> > > > .
> > > >
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub<
> > >
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-267797296
> > >,
> > > or mute the thread<
> > >
> > https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-
> PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
> > > >.
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub
> > > <
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268047872
> > >,
> > > or mute the thread
> > > <
> > https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-
> m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8
> > >
> > > .
> > >
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub<
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268104804>,
> > or mute the thread<
> > https://github.com/notifications/unsubscribe-auth/
> ARQwPVHAiQz3hPrCtyRsRGCLRN_GWYfqks5rJw2_gaJpZM4KvPK8
> > >.
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub
> > <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268111322>,
> > or mute the thread
> > <https://github.com/notifications/unsubscribe-auth/
> AWDpY4eoOOj1HOvidUWFubmEIV40vjDrks5rJxYVgaJpZM4KvPK8>
> > .
> >
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub<https://github.com/
> kakopappa/arduino-esp8266-alexa-wemo-switch#7#
> issuecomment-268112850>, or mute the thread<https://github.com/
> notifications/unsubscribe-auth/ARQwPdu3P40QurAlUHtfEbFsI5hpuz
> Utks5rJxhlgaJpZM4KvPK8>.
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268114707>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/
AWDpY3S2yBphr0gH7bxZ7KnkfFIqza-4ks5rJxsJgaJpZM4KvPK8>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<https://github.com/
kakopappa/arduino-esp8266-alexa-wemo-switch#7#
issuecomment-268146003>, or mute the thread<https://github.com/
notifications/unsubscribe-auth/ARQwPcreYxZBxOkCY_
Q8nvIri3juf3t1ks5rJ00rgaJpZM4KvPK8>.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<
,
or mute the thread
<
.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<
#7 (comment)>,
or mute the thread<
https://github.com/notifications/unsubscribe-auth/ARQwPWjq-65yB9iP9stHSvEFhU3nfFX-ks5rKYPzgaJpZM4KvPK8
.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY8H7jXnxhTg6ga8LbBCuesBuA0Qcks5rKYVmgaJpZM4KvPK8>
.
|
Link nodes have suddenly gone up in price here and hard to get. I've had to order more from the USA.
Think I have to use an Android bridge as well. So far not impressed with the Broadlink, that might be down to poor instructions and I'm doing it wrong
On 21 Dec 2016, at 23:49, joeman2116 <notifications@github.com<mailto:notifications@github.com>> wrote:
Curious how the Broadlink Rm Pro works out with Alexa. It has the most
device connectivity.
Cheaper than Harmony but Harmony more polished interface.
Thanks for the linknode info, I like them..
Joe
On Wed, Dec 21, 2016, 4:00 PM Andrew <notifications@github.com<mailto:notifications@github.com>> wrote:
Wow, in 10 minutes! Took me a few days ! But now I know what I'm doing...
I got my broadlink rm pro, as I have a few infrared devices I'd like to get
Alexa to control, but seems there is a better way using a Logitech Harmony
hub.... but not keen on having to use the cloud to connect to Alexa...
@ndrew
On 21 Dec 2016, at 19:54, joeman2116 <notifications@github.com<mailto:notifications@github.com><mailto:
notifications@github.com<mailto:notifications@github.com>>> wrote:
Got the linknodes r4 in today and 10 minutes later Alexa is working fine
with the nodes 4 relays.
I just added a 5v +center powersupply
Connected 3 wires from my uart (programmer) tx rx and gnd (3vmode)
Moved the jumper to the UART PROGRAM position
Then i ran esptool to write blank bins - clears memory - probably not
required but have found it clears any issues - so I do it first.
Then I ran the code found at " The makers workbench" How to use Amazon
Alexa to control the Linknode R4.
I changed the ssid and pw.
Compiled and uploaded use the Arduinio IDE software
Generic 8266
QIO
2meg /1 meg spfss
makersite
<
https://themakersworkbench.com/tutorial/how-use-amazon-alexa-control-linknode-r4-esp8266-4-channel-relay-board
is
here..
Ran the node thru its paces - on, off / combinations etc - works great.
Now will exercise it during the eve and overnight to see if there are any
issues.
So far ---- cool....
Joe
On Tue, Dec 20, 2016 at 3:04 AM, Andrew <notifications@github.com<mailto:notifications@github.com><mailto:
notifications@github.com<mailto:notifications@github.com>>> wrote:
Let me know if you get either working with Alexa, seems only one person
has so far.
@ndrew
On 20 Dec 2016, at 03:36, joeman2116 ***@***.******@***.***><mailto:
notifications@github.com<mailto:notifications@github.com>><mailto:
***@***.******@***.******@***.***>>> wrote:
Thanks for info on the linknode - ordered 2
The broadlink rm pro looks interesting as well
joe
On Mon, Dec 19, 2016 at 8:02 PM, Andrew ***@***.******@***.***><mailto:
notifications@github.com<mailto:notifications@github.com>><mailto:
***@***.******@***.******@***.***>>> wrote:
> I just went to the router and found the MAC code of the Sonoff and
> assigned it a static IP. I have lots of IP cameras, VoIP, AV's and now
this
> lot... so I like to try and keep track of my ip addresses by giving them
> all static ip's
>
>
> The Link Node is just a 8266 with 4 relays on it that you can control
like
> the Sonoff, as well as flash code onto it...
>
>
> ________________________________
> From: joeman2116 ***@***.******@***.***><mailto:
notifications@github.com<mailto:notifications@github.com>><mailto:notifications@github.
com>>
> Sent: 19 December 2016 23:51
>
> To: kakopappa/arduino-esp8266-alexa-wemo-switch
> Cc: AndrewsHappy; Comment
> Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> discovering device (#7)
>
> Would be interesting to see what code you used for static ip.
>
> Have not looked at the link node R4 to see what it is supposed to do.
>
> Joe
>
> On Mon, Dec 19, 2016, 7:41 PM AndrewsHappy ***@***.******@***.***>
<mailto:notifications@github.com><
***@***.***>>
> wrote:
>
> > Now I have given it a static in, seems to be behaving.
> >
> > Have you had any experience programming the Linknode R4, seems
kakopappa
> > has written some code, and although it will flash, does not do
anything
> > according to the serial monitor, yet I can put the Sonoff onto it and
get
> > it to join the net...
> >
> > Tomorrow I am getting a Broadlink RM Pro, which they say can also be
made
> > to talk to Alexa...
> >
> > @ndrew
> >
> > On 19 Dec 2016, at 23:05, joeman2116 ***@***.******@***.***><mailto:
notifications@github.com<mailto:notifications@github.com>><mailto:
***@***.******@***.******@***.***>><mailto:
> > ***@***.******@***.******@***.***><mailto:
notifications@github.com<mailto:notifications@github.com>>>> wrote:
> >
> > Nope
> > I have several sonof running 24/7 for more than a month so far they
work
> > 100 percent
> >
> > On Mon, Dec 19, 2016, 2:59 PM AndrewsHappy ***@***.******@***.***>
<mailto:notifications@github.com><
***@***.***>
> > ***@***.***>> wrote:
> >
> > > Hi Joe
> > >
> > >
> > > do you find that you have to keep turning the sonoff off and then on
> > after
> > > an hour to get it to register back onto the wifi ? Mine is falling
> asleep
> > > and Alexa says it is off line.
> > >
> > >
> > > Andrew
> > >
> > >
> > > ________________________________
> > > From: joeman2116 ***@***.******@***.***><mailto:
notifications@github.com<mailto:notifications@github.com>><mailto:
***@***.******@***.******@***.***>><mailto:
> > ***@***.******@***.******@***.***><mailto:
notifications@github.com<mailto:notifications@github.com>>>>
> > > Sent: 18 December 2016 01:15
> > > To: kakopappa/arduino-esp8266-alexa-wemo-switch
> > > Cc: AndrewsHappy; Comment
> > > Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not
> > > discovering device (#7)
> > >
> > > const int relayPin = D1;
> > > const int ledPin = D7;
> > >
> > >
> > > void turnOnRelay() {
> > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > digitalWrite(ledPin, LOW); //GREEN LED
> > > }
> > >
> > > void turnOffRelay() {
> > > digitalWrite(relayPin, LOW); // turn off relay with voltage LOW
> > > digitalWrite(ledPin, HIGH); //GREEN LED OFF
> > > }
> > >
> > >
> > > This is what I have on my Sonoff.... to control led and relay
> > >
> > > Ltr.
> > > .
> > > Joe- Canada
> > >
> > >
> > > On Sat, Dec 17, 2016 at 9:07 PM, AndrewsHappy <
> ***@***.******@***.******@***.***><mailto:
notifications@github.com<mailto:notifications@github.com>>
> > ***@***.***>>
> > > wrote:
> > >
> > > > Yes, it isn't as easy as I thought
> > > >
> > > > void turnOnRelay() {
> > > > digitalWrite(relayPin, HIGH); // turn on relay with voltage HIGH
> > > > digitalWrite(ledPin, HIGH); // turn on the green LED
> > > > }
> > > >
> > > > giving the value of 13 for the relay and 12 for the relay, but all
it
> > > > seems to do is to turn on the relay and not the LED.
> > > >
> > > > Oh, thanks again, got the serial monitor working.... having fun
> > now,.....
> > > > shame it is 1am
> > > >
> > > > -
> > > > You are receiving this because you commented.
> > > > Reply to this email directly, view it on GitHub
> > > > <
> > >
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-267797037
> > > >,
> > > > or mute the thread
> > > > <
> > >
> > https://github.com/notifications/unsubscribe-auth/
> AWDpY25d4o3XYVF346stZ22g7Os3oWYlks5rJIdugaJpZM4KvPK8
> > > >
> > > > .
> > > >
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub<
> > >
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-267797296
> > >,
> > > or mute the thread<
> > >
> > https://github.com/notifications/unsubscribe-auth/ARQwPRrjHuiN-
> PhVcnbqIhnz7sSGKb2iks5rJIlEgaJpZM4KvPK8
> > > >.
> > >
> > > -
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub
> > > <
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268047872
> > >,
> > > or mute the thread
> > > <
> > https://github.com/notifications/unsubscribe-auth/AWDpY-rxm-
> m92CAmaijZICiOcnN2KXLcks5rJtQagaJpZM4KvPK8
> > >
> > > .
> > >
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub<
> > https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268104804>,
> > or mute the thread<
> > https://github.com/notifications/unsubscribe-auth/
> ARQwPVHAiQz3hPrCtyRsRGCLRN_GWYfqks5rJw2_gaJpZM4KvPK8
> > >.
> >
> > -
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub
> > <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
> switch/issues/7#issuecomment-268111322>,
> > or mute the thread
> > <https://github.com/notifications/unsubscribe-auth/
> AWDpY4eoOOj1HOvidUWFubmEIV40vjDrks5rJxYVgaJpZM4KvPK8>
> > .
> >
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub<https://github.com/
> kakopappa/arduino-esp8266-alexa-wemo-switch#7#
> issuecomment-268112850>, or mute the thread<https://github.com/
> notifications/unsubscribe-auth/ARQwPdu3P40QurAlUHtfEbFsI5hpuz
> Utks5rJxhlgaJpZM4KvPK8>.
>
> -
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <https://github.com/kakopappa/arduino-esp8266-alexa-wemo-
switch/issues/7#issuecomment-268114707>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/
AWDpY3S2yBphr0gH7bxZ7KnkfFIqza-4ks5rJxsJgaJpZM4KvPK8>
> .
>
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<https://github.com/
kakopappa/arduino-esp8266-alexa-wemo-switch#7#
issuecomment-268146003>, or mute the thread<https://github.com/
notifications/unsubscribe-auth/ARQwPcreYxZBxOkCY_
Q8nvIri3juf3t1ks5rJ00rgaJpZM4KvPK8>.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<
,
or mute the thread
<
.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<
#7 (comment)>,
or mute the thread<
https://github.com/notifications/unsubscribe-auth/ARQwPWjq-65yB9iP9stHSvEFhU3nfFX-ks5rKYPzgaJpZM4KvPK8
.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWDpY8H7jXnxhTg6ga8LbBCuesBuA0Qcks5rKYVmgaJpZM4KvPK8>
.
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ARQwPRbIiBFNLZz--8LHpUr4A0N8gayNks5rKbr3gaJpZM4KvPK8>.
|
No, i haven't tried the button. So do i hold the button down? press the button once and scan for devices? |
Press the Find devices (or ask her to) then press the button. It should then come up on the app
…________________________________
From: solrac21 <notifications@github.com>
Sent: 22 December 2016 00:32
To: kakopappa/arduino-esp8266-alexa-wemo-switch
Cc: Andrew; Comment
Subject: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not discovering device (#7)
No, i haven't tried the button. So do i hold the button down? press the button once and scan for devices?
-
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ARQwPR5MfhEtvZIS7R9fDfHGmcF9dMQqks5rKcUogaJpZM4KvPK8>.
|
@jerrishjacob I still have this issue where alexa cannot discover my wemos d1-mini device. I also using 2nd generation Echo. Maybe that is the reason, it could expect a different response or something. @kakopappa Yes, I have tried latest version with >= which improved things, Code now sends back a response to Alexa, but Alexa still does not recognise. I have not tried a version of the code for multiple devices, I will try to do that later today. |
Just tested with multi device version of the code and getting same issue: Got UDP Belkin Request.. Sending response to 192.168.0.1 Sending response to 192.168.0.1 Sending response to 192.168.0.1 But Alexa does not recognize device. Is it because I don't have any legit smart device connected, as Sascha suggested HUE light? |
IP address : 192.168.0.1
is this your router ip address or alexa ?
…On Sat, Dec 30, 2017 at 5:57 PM, mortoney ***@***.***> wrote:
Just tested with multi device version of the code and getting same issue:
Got UDP Belkin Request..
Sending response to 192.168.0.1
Port : 29352
Response sent !
Sending response to 192.168.0.1
Port : 29352
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.0.1
Port : 29352
Response sent !
But Alexa does not recognize device.
Is it because I don't have any legit smart device connected, as Sascha
suggested HUE light?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHIM5sbBNzcoukidz4JKpX-oiGwssBYOks5tFhcZgaJpZM4KvPK8>
.
|
192.168.0.1 is router IP address |
Amazon ehco ip: 192.168.0.10 Interesting that single device code sent repond to ip: 192.168.0.10 and multi device code sent repond to ip: 192.168.0.1 in both way alexa can't find device |
@kakopappa I tried with the updated code. Connecting to WiFi Connecting to UDP Sending response to 192.168.1.107 Sending response to 192.168.1.107 Sending response to 192.168.1.107 Sending response to 192.168.1.107 Sending response to 192.168.1.107 Sending response to 192.168.1.107 Sending response to 192.168.1.107 Sending response to 192.168.1.107 Sending response to 192.168.1.107 Sending response to 192.168.1.107 |
Hi When I press the rest switch I get the below output on console: ⸮Hl⸮⸮⸮hl$⸮�y2h⸮⸮ When I ask alexa to search the device, I get the following lines on the console: Got UDP Belkin Request.. Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.6 Sending response to 192.168.1.1 Sending response to 192.168.1.1 My modem details: DSL-2750U Firmware Version:IN_1.02 Firewall is disabled on the modem, and Echo Plus, Lolin NodeMcu V3, my mobile with alexa app is on the same network. I have two NodeMCU V3 module and I am getting the same result. Both devices are working as I have tried blink example on it. I am power the device through laptop usb port. I have not connected any relay or circult to nodemcu to remove the doubt of low power. I am using the exactly same device as shown in the below url: Now, every time I ask alexa to discover, it fail to find to find nodemcu. I have also tried the same through alexa app on android (on galaxy C9 pro). But alexa fail to detect the device. Am I missing any additional step required to let echo plus discover nodemcu? |
Use the App and do not ask Alexa. This does not work
Viele Grüße / Best regards
Sascha
Am 31.12.2017 um 16:22 schrieb sunilda <notifications@github.com<mailto:notifications@github.com>>:
Hi
When I press the rest switch I get the below output on console:
⸮Hl⸮⸮⸮hl$⸮�y2h⸮⸮
Connecting to WiFi
Connecting .........
Connected to CiscoD
IP address: 192.168.1.41
Begin multicast ..
Udp multicast server started at 239.255.255.250:1900
WebServer started on port:
80
WebServer started on port:
81
Adding switches upnp broadcast responder
Adding switch : office lights index : 0
Adding switch : kitchen lights index : 1
When I ask alexa to search the device, I get the following lines on the console:
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.6
Port : 50000
Response sent !
Sending response to 192.168.1.6
Port : 50000
Response sent !
Got UDP Belkin Request..
Sending response to 192.168.1.1
Port : 53967
Response sent !
Sending response to 192.168.1.1
Port : 53967
Response sent !
My modem details: DSL-2750U Firmware Version:IN_1.02
Firewall is disabled on the modem, and Echo Plus, Lolin NodeMcu V3, my mobile with alexa app is on the same network.
I have two NodeMCU V3 module and I am getting the same result. Both devices are working as I have tried blink example on it.
I am power the device through laptop usb port. I have not connected any relay or circult to nodemcu to remove the doubt of low power.
I am using the exactly same device as shown in the below url:
https://www.amazon.in/Centiot-ESP8266-NodeMCU-Development-Board/dp/B01M98LHT4
Now, every time I ask alexa to discover, it fail to find to find nodemcu. I have also tried the same through alexa app on android (on galaxy C9 pro). But alexa fail to detect the device.
Am I missing any additional step required to let echo plus discover nodemcu?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AKwM-0RYVJgRQfTgcse6xQpKUJ1wS535ks5tF6aigaJpZM4KvPK8>.
|
Hi Sascha, There are lot of videos out there on youtube which shows that this works with alexa. Below is the URL of one such video. So how this is working of them. When you say app do you mean alexa app or some other app? |
Hi
I mean Alexa App. With Alexa 2nd gen with hue included, additionally at least one real Hue device need to be already connected to Alexa. That is a fact for Alexa 2nd gen . The Hue inside Alexa works slicly different than Hue Bridge.
Best regards
Sascha
Am 31.12.2017 um 19:23 schrieb sunilda <notifications@github.com<mailto:notifications@github.com>>:
Hi Sascha,
You said "Use the App and do not ask Alexa. This does not work". So, I have two doubts.
1.
There are lot of videos out there on youtube which shows that this works with alexa. Below is the URL of one such video. So how this is working of them.
https://www.youtube.com/watch?v=Be36aL6smig&lc=z22fzxx42mztut2yu04t1aokgdoikabhjuk2xefailkmbk0h00410.1514700472803318
1.
When you say app do you mean alexa app or some other app?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AKwM--5ZiKtBt9rmLEpG6dsiMKupYOzbks5tF9EKgaJpZM4KvPK8>.
|
Hi Sascha, Thanks for clarifying. With app also its not working, though I can see the request received from mobile app on console and response send: In Switch.cpp I printed value of response: Serial.println("Response sent !"); and I got the output given below which states that my app and nodemcu is communicating. Even when I ask alexa, I get the same response with the same IP 192.168.1.6. I am still trying to figure out what is missing in the code. Sending response to 192.168.1.6 |
These codes enables esp8266 to simulate a Belkin Wemo switch. But somehow it is not working. The code reaches void Switch::respondToSearch(IPAddress& senderIP, unsigned int senderPort), but alexa doesn't respond to the response sent by nodemcu, so I believe Alexa is expecting a different response. Anyone who have something more to say/add? |
there is no request generated from alexa for /setup.xml :( |
Hi All, |
Hi sunilda, String response = this is working on my Echo Plus. |
Hello guys Past few weeks I have been working on a smart home skill and a website which allows you add development boards such as WEMOS D1 to Alexa eco system without emulating as a belkin switch. Mainly, because some people have issues in the UDP broadcast and different Alexa devices such as ECO, DOT has different XML formats and this is logic is quite difficult to code. So, I belive moving forward using the smart home skill is the right thing to do; So, I would like to invite everyone to give it a try.
4.1 Link, eneter you login details to sinric.com
You can turn on/off same like emulating a belkin device. No need to say like Alexa ask sinric to turn on bedroom lights. Simple as a Alexa turn on bedroom lights. If you have any issue or comments report it here; Thanks |
Hi Aruna
Thank you. But after looking from a security point of view, I prefer using the standalone version.
Nevertheless – many thanks!
All best
Sascha
Von: Aruna Tennakoon [mailto:notifications@github.com]
Gesendet: Freitag, 5. Januar 2018 12:30
An: kakopappa/arduino-esp8266-alexa-wemo-switch <arduino-esp8266-alexa-wemo-switch@noreply.github.com>
Cc: Magold, Sascha <sascha.magold@sap.com>; Mention <mention@noreply.github.com>
Betreff: Re: [kakopappa/arduino-esp8266-alexa-wemo-switch] alexa not discovering device (#7)
Hello guys
Past few weeks I have been working on a smart home skill and a website which allows you add development boards such as WEMOS D1 to Alexa eco system without emulating as a belkin switch. Mainly, because some people have issues in the UDP broadcast and different Alexa devices such as ECO, DOT has different XML formats and this is logic is quite difficult to code. So, I belive moving forward using the smart home skill is the right thing to do;
So, I would like to invite everyone to give it a try.
1. Goto
2. Create an account
3. Use the API key displayed on the home screen to connect your WEMOS D1 to sinric. Here is the code . Just replace the API KEY
https://github.com/kakopappa/sinric/blob/master/arduino_sinric_example.ino
4. Install smart home skill from
https://www.amazon.com/dp/B078RGYWQQ/ref=syps?s=digital-skills&ie=UTF8&qid=1515150398&sr=1-18&refinements=p_n_date%3A14284925011
4.1 Link, eneter you login details to sinric.com
1. Discover.
2. Rate the Skill so other people can easily find it!
You can turn on/off same like emulating a belkin device.
No need to say like Alexa ask sinric to turn on bedroom lights. Simple as a Alexa turn on bedroom lights.
If you have any issue or comments report it here;
https://github.com/kakopappa/sinric
Thanks
kakopappa
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AKwM-65lITMeKLXvMwD1fVdGy-2xu2nMks5tHgedgaJpZM4KvPK8>.
|
It would be a great shame if we needed to start relying on an external web site for things like this. Won’t it introduce extra latency, too? |
Great idea - do it and tell us!
Best regards
Sascha
Am 05.01.2018 um 23:50 schrieb SupraJames <notifications@github.com<mailto:notifications@github.com>>:
It would be a great shame if we needed to start relying on an external web site for things like this. Won’t it introduce extra latency, too?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AKwM-xc76Hw1K_WeZMlbalDeQb8_V1htks5tHqdMgaJpZM4KvPK8>.
|
@JanB97 There was a \ and ; missing in the code you gave and I applied, but it didn't worked. |
I believe Sascha can help creating a standalone version, I believe then SupraJames will have no security issue. |
@kakopappa dose the website communication with the device work on MQTT protocol ? if yes what broker are u using ? I am working on a similar website, using the alexa skill dose make it easy. what about the guys who dont have alexa and would like to emulate the device ? |
It's using WebSockets at the moment. If you guys want I can add MQTT
support as well.
Next goal of this project is to turn on/off the switchs using an Android
app. API is there already. I am working on the app now.
…On Sat, Jan 6, 2018 at 7:36 PM Ameengray ***@***.***> wrote:
@kakopappa <https://github.com/kakopappa> dose the website communication
with the device work on MQTT protocol ? if yes what broker are u using ?
I am working on a similar website, using the alexa skill dose make it easy.
what about the guys who dont have alexa and would like to emulate the
device ?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHIM5mYnvmsUZhHDaHEsoYAZEX_cjY5sks5tH2jBgaJpZM4KvPK8>
.
|
Hi
I already use a standalone Version running on my local synology... so there is no need to build the stuff again. Just a Broker and the available sketch 😉
BR
Sascha
Am 06.01.2018 um 13:31 schrieb sunilda <notifications@github.com<mailto:notifications@github.com>>:
I believe Sascha can help creating a standalone version, I believe then SupraJames will have no security issue.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AKwM-5eYHta-Nl-DK7cnNm6cDiOfAwOoks5tH2ePgaJpZM4KvPK8>.
|
@sunilda I am sorry, I did not copy the last two characters. This is the full response string I'm using, I did not change anything else. (this is a direct copy of my working sketch so it should be right). String response = |
@JanB97 Not sure how the above said code even got compiled as it missing the very first \ after OTP: "OPT: "http://schemas.upnp.org/upnp/1/0/\"; ns=01\r\n" anyways I added the \ and the code compiled, but still alexa (Echo Plus) fail to detect devices. |
thank for your project and now I would like to know how can I you mqtt to communicate with alexa..I use adafruit io mqtt connect esp8266 |
Google is your friend when you won‘t spend time on your own: https://create.arduino.cc/projecthub/2stacks/alexa-trigger-esp8266-181f0d
Am 24.02.2018 um 20:25 schrieb tinh8080 <notifications@github.com<mailto:notifications@github.com>>:
thank for your project and now I would like to know how can I you mqtt to communicate with alexa..I use adafruit io mqtt connect esp8266
Please help me
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#7 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AKwM-4wC4qy0PFRgGNfgsWkNGlxoYZHEks5tYGJBgaJpZM4KvPK8>.
|
Sorry but now I can't access the link (the new code) you provide, can you sent it again. Thank you so much! |
… On Wed, 3 Oct 2018 at 9:14 AM thesofial ***@***.***> wrote:
Sorry but now I can't access the link (the new code) you provide, can you
sent it again. Thank you so much!
Here is link:
https://github.com/kakopappa/sinric/blob/master/arduino_sinric_example.ino
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHIM5r1hC3-ZS9xarEQx-EWb-SgislQjks5uhB15gaJpZM4KvPK8>
.
|
thanks for making such a cool project searched all over for a way to control a relay through alexa. now if only i can get it to work. i run the code and open serial monitor. it says it connects to my wifi network and that http server started but when i try to discover new devices with alexa it doesnt show up? any help would be appreciated.
The text was updated successfully, but these errors were encountered: