ESP8266 NONOS SDK – Read SpiFlash size of nested data during runtime

So today I ran into a little bit of a snag, I was trying to copy an unknown amount of data into a buffer and then strcat That into another buffer. However during this I had a slight issue where the unknown data coming in the first buffer even though it fits into the destination …

Powering the ESP8266 with a LM3671

So after hunting around for a little bit, I stumbled upon these as a solution. http://www.ti.com/lit/ds/symlink/lm3671.pdf The device seemed very efficient and a perfect solution for a 3.7V Lipo to Power a 3.3V ESP and DHT11/22 Thermostat. One thing to note is this also has an EN pin, I may need to jump it to …

Evolving Train of Thought for C/C++ Library's and Header Files

So, In the last few weeks’s I have been converting my Large ESP8266 project to multiple .h Module files so I can carry functions over from project to project and at the same time have them centrally managed to update code / fix bugs so they carry over to all of my projects. One important …