Author: Steve Spence

SainSmart Support Forum Back Online!

The SainSmart support forum is back online! SainSmart is one of my favorite sources for Arduino’s, Raspberry Pi’s, and related sensors and modules. I’ve posted some of my favorite projects there, and will be posting more soon. Come and learn

Read More »

Emulating An Arduino Sketch in a Spreadsheet

Many times I’ll mock up my Arduino formulas in a spreadsheet before I start building a sketch. One of the more complicated Arduino commands to emulate is the MAP command. The Arduino code: height = map(adc, 171, 512, 12, 0);

Read More »

The MQTT Connection

MQTT stands for MQ Telemetry Transport. It is a publish/subscribe, extremely simple and lightweight messaging protocol, designed for constrained devices and low-bandwidth, high-latency or unreliable networks. The design principles are to minimise network bandwidth and device resource requirements whilst also

Read More »

Arduino Networking

As much fun as it is connecting sensors to an Arduino, and displaying data on a LCD, lighting LED’s, or other local actions, the real power is when you connect to a network. Whether it’s a local network and you

Read More »

Making the Raspberry Pi Talk 5v

Coming from the Arduino world, most everything I do is 5v logic. It’s been a switch for me now that I’m integrating my Raspberry Pi’s into my Arduino solutions (they really are complementary). We have been following a great guy

Read More »