[1] http://memcpy.io/esp8266-apa102-bulb.html
[2] http://memcpy.io/user-friendly-setup-of-esp8266-gadgets.html
11–20 of 81 posts
[1] http://memcpy.io/esp8266-apa102-bulb.html
[2] http://memcpy.io/user-friendly-setup-of-esp8266-gadgets.html
While this is a very cool chip for hobbyists, it is quite hard to do real TLS with this chip making it basically useless for commercial applications. It CAN do TLS but it leaves very little left over if you have any kind of real business logic.
The way I worked around it is put all the processing in the cloud and basically the vpn passes straight through it. Interestingly, it actually is being used in a number of consumer products, but for very basic iot apps (I believe there is a wifi enable light socket and an automobile ODB link device things like that).
Fun device to mess with :)
http://makezine.com/2015/12/09/meet-esp32-new-big-brother-to...
FYI ESP8266 doesn't run Python, but it runs MicroPython: https://github.com/micropython/micropython
Earlier quoted context omitted.
64 KiB of instruction RAM, 96 KiB of data RAM https://en.wikipedia.org/wiki/ESP8266 For whatever reason the Make dead-tree-edition of the original article posted has a "Table of Boards" in it and they list the ESP8266 as having 1MB of "Memory". It's also a new article. It's recently run in the February/March 2016 edition of Make: Super (Cheap) Computers. Edit: While the OPs link is not the new article, it is in the c…
The 1MB is likely referring to the SPI flash device that the ESP-01 modules use. Many of the other boards feature larger SPI flash chips up to 4MB, and I believe it's possible in theory to boot of an SD card with them too if you remove the flash chip.
I have actually done a fair bit of dev work on this chip (a custom C++ IDE), it is a neat little device, with the emphasis on little. That is both a plus and a minus. Plus, it is cheap, minus, it is little, not a lot of processing power there. (forget Python if you are doing anything serious). The way I worked around it is put all the processing in the cloud and basically the vpn passes straight through it. Interesti…
The ESP also runs Lua (by way of NodeMCU), JavaScript (Smart.js, Espruino and JerryScript), Lisp ( https://github.com/yesco/esp-lisp ) and even a form of BASIC ( http://www.esp8266basic.com/language-reference.html ). I'm sure more are out there - seems like something new pops up every few days.
It's surprisingly easy connect to a WiFi and get a TCP server running