Espruino and Amazon Alexa integration (implementation completed) #2679
Replies: 68 comments
-
Posted at 2017-11-27 by PaddeK Well it seems to me you are trying to parse a XML response with JSON.parse. You will need a XML parser to get what you want. If you are just interested in the BinaryState Tag value you can get by with a regex if they are supported.
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-27 by @gfwilliams Basic Regex are supported in Espruino latest builds now, but they may not be supported in 512k ESP8266 builds because of the lack of flash |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-27 by Vasily Thank you both. I thought response looked as JSON string so I was wondering what I m doing wrong. BTW, Gordon, another issue was reported already.... still not resolved. onPageRequest(req, res) Txs. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-27 by @gfwilliams
I'm pretty sure this was covered in another post quite recently. If you do |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-27 by Vasily yep, understood. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-27 by Vasily I found a stand-alone package that could be very usefull for XMLtoJSON. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-27 by Wilberforce Here is your string you want to parse.. that lib will be too big to use.
You should be able to treat as a string and search on |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-27 by Vasily Thanks.... I will try tonight both solutions regexp and xmltojson class actually as there are 2 options only, the fastest way would be using 2 times I am wondering about the memory size... device itself has quite a big memory (divided by half due to boot-1 and boot-2). I was writing a small script and get already out-of-memory for a script less than 2 pages. If I understood correctly in case there is a module (incorporated into the firmware) than there is no issue with memory usage. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-27 by PaddeK Its String.includes and Espruino doesn't support it i guess, at least it is not listed in the reference. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-28 by Vasily Thanks for suggestions. works fine with string.indexof(). The script has been cleaned .... but big problem came - "out of memory" and even Minimization did not help. any hint how I can overcome it (apart from obvious code restructure)? complete code attached (change your wifi id first)Attachments: |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-28 by PaddeK Try minify yourself.. at least some parts.. first place i would start is console.log. You have quite a lot of them and multiple times in a row. In your setupId function for example:
Try to combine this to a single console.log
I am not aware of a minifier that does this for you without breaking everything. EditOffloading fixed strings etc. to a eeprom could help too. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-28 by Wilberforce Get rid of the comments. They are taking up a heap of space... |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-28 by Vasily You will not believe me.... I tried this way and the code got LONGER, surprisingly :) p.s. the thing is doing on-off works with Alexa, but after a while get nuts and give numbers due to memory leaks. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-28 by Vasily I use minification - comments should be removed. I tried all possible minification options. .... suprized that minification tells me "reduced to 7200" but still uploading 14508 to the board. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-28 by Wilberforce As I said, remove the comments. You are assuming they get stripped and may not be. You could also try minimising the code with an external tool and upload that. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-12-19 by PaddeK Well.. if found a thread regarding UDP multicast with AT firmware http://bbs.espressif.com/viewtopic.php?f=16&t=234&p=6382&hilit=multicast#p6382 . Thats it then.. or has someone another idea? |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-12-20 by @gfwilliams I assume that if you know the IP address of the Alexa device there's no need to multicast? You can just send everything directly to it? |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-12-20 by PaddeK I would have to try that.. but its a good idea. Other possibilities are maybe tcp broadcast in combination with a own skill thats using tcp broadcast for discovery or a solution with some kind of gateway and mqtt for example. But this is all far more work then necessary.. if espressif would just have included this feature in their AT firmware.. its in the SDK.. why not exposing it in the AT firmware grml I did read its possible to modify the AT firmware and add features to it.. this would be another solution.. but maybe the hardest route to go. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-12-26 by PaddeK So i tried a few things now.. and sadly i am can't get alexa to discover. I tried starting the scan and then manualy responding to the UPNP search from alexa with multicast du 239.255.255.250:1900 but alexa does not care about it. I sniffed the traffic with tcpdump to make sure i send after the search from alexa and that my espruino wifi is sending the right response. While looking at the traffic running in with tcpdump i saw some devices answer to alexa directly and port of 50000 but still UDP. I tried that too.. but it it does not even show up in the tcpdump log. I guess with so much else i want to do i leave it as it is. Maybe i use a ESP8266 or ESP32 myself and round up the module but for espruino boards i see no chance without complete UDP support. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-04 by opichals
The CIPSTATUS (implementation source link) seems to be the command returning the remote_port/ip information. Perhaps that could be send for every +IPD received? |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-04 by @gfwilliams Wow, thanks - good find! Yes, that sounds like it'd be perfect. It's never going to be super-fast so I don't think the extra overhead would be such a problem. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-04 by opichals There seems to be even better way which would be to use AT+CIPDINFO according to the docs PDF. On github I could only find the CIPDINFO in the docs for ESP32 though and the implementation seems to be in the libat_core.a which looks like a closed source thing probably shared across the ESPs. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-04 by PaddeK Even in a scenario where i do know the address of alexa it did not work. And if i understood the AT documentation right there is a mode (mode 2) in CIPSTART where you can answer to the message origin. And yes.. this is all just a lack of the AT firmware. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-04 by @gfwilliams Interesting about CIPDINFO - I'll have to give that a try. I guess it may not be in the 0.40 firmware that the Espruino WiFis ship with, but it's worth a try :) |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-04 by PaddeK Hm.. maybe in newer versions of the AT firmware UDP multicast is properly supported too. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-04 by opichals According to this the 1.5.0 version might be required http://bbs.espressif.com/viewtopic.php?f=66&t=1677&p=5517&hilit=CIPDINFO#p5517. So perhaps the CIPSTATUS workaround (could be problematic for multiple subsequent incoming +IPDs of different origins) and when the CIPDINFO works use rather that. But that gets complicated. Does EspruinoWifi support updating the ESP firmware? With that it could get integrated into the EspruinoWebIDE flasher which would be sufficient IMO. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-05 by @gfwilliams Theoretically you can update the ESP8266 firmware via the EspruinoWiFi, but it's not an easy process. I think I'd try and stick with the existing firmware if at all possible - I don't think many people would bother updating it if I added the option to do so... And actually I just tested and It's just as well, because @PaddeK I'm not sure multicast is supported in any firmwares? I could be wrong though |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-06 by PaddeK I think at the moment not.. but its really not easy to find solid information about the AT firmware and its capabilities. But i did find a statement that older versions are open source and therefore are extensible.. no idea how feasible that is though. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-31 by @gfwilliams Espruino WiFi now has UDP support: http://forum.espruino.com/conversations/316287/#comment14072238 There's no broadcast as far as I can tell but thanks to @opichals you can now get the UDP sender's IP and port, which I imagine will help a lot |
Beta Was this translation helpful? Give feedback.
-
Posted at 2018-01-31 by PaddeK As soon as i got some spare time i will pick up where i left and see if this brings the hoped solution. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-11-26 by Vasily
I finally got to Espruino speaking with Alexa (or viceversa indeed).
At the moment of writing, it is not working with official 1.94 version, but is working with the current build 2017/11/17 where a fix of UDP.send long message was fixed. (the fix will come into next Espruino firmware).
In short, I ported to Espruino my Arduino code which emulates Espruino device as a Belkin smart-switch.
Current stage:
2.a Alexa discover device, each device has it's own ID
2.b. Device receiving Alexa command and can switch itself ON/OFF each time.
TODO:
a. recognize Alexa "SetBinaryState" request ON or OFF the device
b. send Alexa device "GetBinaryState" status correctly (use Alexa Beta on Android to get those commands easily)
The code is still dirty work-in-progress (really dirty :) )
CURRENT STATUS:
I have major problem that I cann't parse the incoming Alexa.....
I am struggling with function doPost1() to parse Alexa's POST request where it actually sending if the Light must be ON or OFF.
I need to retrieve tag <BinaryState> value and make on/off accordingly.
The text that is stored in pdata is exactly below. Any help is greatly apresciated...
attached ALEXA_protocol.txt with POST data... not able to copy it here.
pdata= ..... u:SetBinaryState ... <BinaryState>0</BinaryState>...
pdata length= 299
a.pathname= /upnp/control/basicevent1
Uncaught SyntaxError: Expecting a valid value, got '<'
at line 1 col 300
......
^
Error reported when executing the line pobj=JSON.parse(pdata);
Attachments:
Beta Was this translation helpful? Give feedback.
All reactions