C++

April 10, 2023
We all know the ESP8266 and its more recent sibling the ESP32. They’re used in just about everything under the sun, both hobbyist and commercial. Mostly this is because they’re cheap, but also because they’re …
January 13, 2019
Code verbosity is one of those topics that everyone has an opinion on – and mine will probably differ from yours. One of my particular quirks is that I like my code to fit in 80 columns wherever possible (or 132 on some …
July 4, 2017
The Z-Wave interface I’m working on is an inherently asynchronous beast. Callbacks abound, and the use of lambda functions makes that much easier to deal with. This fact led me to select C++11 as the language standard for the …