ESP8622 New Year's sale - Perfect companion for any Propeller project
mindrobots
Posts: 6,506
ITEAD Studio is having a big sale on ESP8266 boards. - plus now through Jan 3rd, you get an extra 10% off.
These can be used in a number of different ways to give inexpensive WiFi access to your Propeller (or BASIC Stamp) project. They even have a board in an XBee footprint which I had never seen before.
I'm not affiliated with ITEAD, just passing along some savings. If it is wrong, please sink me.
These can be used in a number of different ways to give inexpensive WiFi access to your Propeller (or BASIC Stamp) project. They even have a board in an XBee footprint which I had never seen before.
I'm not affiliated with ITEAD, just passing along some savings. If it is wrong, please sink me.
Comments
From the Espruino forum (yes, they have Espruino running on these guys too!)
I thought that was a pretty solid environment too, and did do some coding with it. I've also been using the Sparkfun Thing Dev board because it seemed like a nice starter board and was available via Amazon Prime for last minute shopping. Did you find some method of not having to manually ground GPIO0 when working with the Arduino tools? The program esptool.py that I used to load NodeMCU knows what to do. I gave one of these boards to a neighbor as a stocking stuffer and he's an Arduino user, so I could pass along any advice.
I wish that Parallax could find a way to capitalize on some of these products. They are very nice to let us discuss them on these forums.
I'm about to switch to the NodeMCU Lua environment though, because even though it's built on the same underlying functions which are a bit flaky, it's a lot more reliable if you are flirting with buffer overrunts, for example if you want to serve a webpage to a regular browser you will probably get a big header with every request. With AT commands this entire header has to be transmitted to the controller; there's not really any way to discard it. In Lua, you can examine it to get the file being requested and then just discard it. It makes a lot less strain on the serial comms.